What number will the following code display on the computer screen? int sum = 0; int y

Question:

What number will the following code display on the computer screen? 

int sum = 0; 

int y = 0; 

do 

for (int x = 1; x <= 5; x += 1) 

sum += x; 

//end for 

y += 1; 

} while (y < 2); 

cout << sum << endl; 

a. 5 

b. 8 

c. 15 

d. 30

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

Step by Step Answer:

Question Posted: