Solved

Which of the Following Loop Headers Will Arrange for the Loop

Question 47

Multiple Choice

Which of the following loop headers will arrange for the loop body to execute exactly 10 times?


A) for (int i = 1;i < 10;++i)
B) for (int i = 0;i <= 10;++i)
C) for (int i = -5;i < 5;++i)
D) for (int i = 2;i < 20;++i)

Correct Answer:

verifed

Verified

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

Related Questions