Computer Science, asked by babu4416, 6 months ago

FOR I = 1 TO 5
FOR J = 1TO 3 PRINT I + " " + J ;
NEXT I
PRINT
NEXT J

Answers

Answered by hardik3332
0

Answer:

Explanation: For i = 1 and j = 1, Excel VBA enters the value 100 into the cell at the intersection of row 1 and column 1. When Excel VBA reaches Next j, it increases j with 1 and jumps back to the For j statement.

Similar questions