Question: Question 5 Given the following code, what is the resulting value of sum after the for-loop terminates? int sum=0; for (int i=1; i <4; i+=2)
Question 5
Given the following code, what is the resulting value of sum after the for-loop terminates?
int sum=0;
for (int i=1; i<4; i+=2)
sum=sum+i;
|
| A. | 12 |
|
| B. | 2 |
|
| C. | 4 |
|
| D. | 6 |
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
