Multiple Choice
What is the value of counter after the following statements execute? counter = 1; while (counter < 30) counter = 2 * counter;
A) 16
B) 32
C) 64
D) 53
Correct Answer:

Verified
Correct Answer:
Verified
Related Questions
Q25: A syntax error will result if the
Q26: Which of the following does not have
Q27: If a continue statement is placed in
Q28: What is the tenth Fibonacci number in
Q29: Suppose sum and num are int variables,
Q31: Which executes first in a do...while loop?<br>A)
Q32: How many times does the statement above
Q33: Control variables are automatically initialized in a
Q34: Which executes immediately after a continue statement
Q35: Which of the following loops is guaranteed