Given this code fragment:
What is the output?
The for loop prints each even value of ii that is less than jj (7). Starting at 0 and incrementing by 2 produces 0 2 4 6.
for
ii
jj
0 2 4 6
Community Discussion