Question: What is the value of y after executing this Java code? int y = 0; for (int i = 0; i <10; ++i) { y
What is the value of y after executing this Java code? int y = 0; for (int i = 0; i<10; ++i) { y += i; } System.out.println(y);
Question 11 options:
| 44 | |
| 11 | |
| 13 | |
| 12 | |
| none of the above |
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
