cloey9312 cloey9312 29-04-2024 Computers and Technology Answered 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) 8b) 2c) 0d) 16