Question: What is y after the following for loop statement is executed? int y = 0; for (int i=0; i < 10; i ++) { y
What is y after the following for loop statement is executed?
int y = 0;
for (int i=0; i < 10; i ++)
{
y ++;
}
| 9 |
| 10 |
| 11 |
| 12 |
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
