Multiple Choice
In analyzing the solution to a program, you conclude that you want to construct a loop so that the loop terminates either when (a < 12) or when (b = 16) . Using a Do loop, the test condition should be
A) Do While (a > 12) Or (b <> 16)
B) Do While (a >= 12) Or (b <> 16)
C) Do While (a < 12) Or (b <> 16)
D) Do While (a >= 12) And (b <> 16)
E) Do While (a < 12) And (b = 16)
Correct Answer:

Verified
Correct Answer:
Verified
Q9: The value of the counter variable should
Q10: When one For...Next loop is contained within
Q11: Assuming the following statement, what is the
Q12: Which While statement is equivalent to Until
Q13: The sorted property can only be set
Q15: If the terminating value of a For...Next
Q16: A list box named lstBox has its
Q17: What is wrong with the following simple
Q18: If the loop is to be executed
Q19: Which of the following are valid for