How many times will the computer process the cout statement in the following code? for (int numTimes

Question:

How many times will the computer process the cout statement in the following code? 

for (int numTimes = 1; numTimes < 10; numTimes += 2) 

cout << numTimes << endl; 

//end for 

a. 0 

b. 5 

c. 6 

d. 9

Fantastic news! We've Found the answer you've been seeking!

Step by Step Answer:

Question Posted: