01 02 03 04 05
for (long i = 4; i > 0; i = i-1) { for (long j = 0; j < 4; j = j+1) { result = result+1; } }
Choices: