Q224
What is the output of this program? #!/bin/bash a=1; b=2; c=3 d= (( ++a**b*c++ + a )) echo d exit 0
A.
14
AnswerB.
12
C.
program will generate an error message
D.
none of the mentioned
Answer: Option A
Solution
Answer: Option A
No explanation is given for this question Let's Discuss on Board