Multiple choice What is the output of the following code? int a=0; for(int I=1;I<=a;I++) cout<<I; 0 1 Nothing will get displayed Error Reveal answer Fill a bubble to check yourself C Correct answer Explanation The loop condition is I <= a. Since a is initialized to 0 and I is initialized to 1, the condition 1 <= 0 is false from the start. Therefore, the loop body never executes.