Solved

Assume That IntCounter Is an Int Variable Initialized to 5

Question 1

Multiple Choice

Assume that intCounter is an int variable initialized to 5. Which of the following loop continuation conditions can be used in a do while statement to print the values 5 through 15, inclusive?


A) intCounter > 5
B) intCounter < 15
C) intCounter <= 15
D) intCounter < 16
E) Both c and d.

Correct Answer:

verifed

Verified

Related Questions