What would be output at the end of the following code segment?
int num = 0:
for(int row = 0; row < 2; row ++ ) {
for(int col = 0; col < 8; col ++ ) {
num++;
}
}
System.out.printIn(num);
a) 8
b) 2
c) 0
d) 16

Respuesta :

RELAXING NOICE
Relax