Q52
What will be the value of sum after the following program is executed? void main() int sum=1, index = 9; do index = index – 1; sum *= 2; while( index > 9 );
A.
1
B.
2
AnswerC.
9
D.
0.5
E.
0.25
Answer: Option B
Solution
Answer: Option B
No explanation is given for this question Let's Discuss on Board