Given the following pseudo code, how many times will the "inner loop body" execute?
int row
int col
for(row = 0; row < 2; row row + 1) { for(col 0; col < 5; colcol + 1) {
// Inner loop body
}
}
A. 10
B. None of these
C. 4
D. 8

Q&A Education