Solved

In Analyzing the Solution to a Program, You Conclude That

Question 14

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:

verifed

Verified

Unlock this answer now
Get Access to more Verified Answers free of charge

Related Questions