1.
Q15: What is the output of the following loop?
for (int m = 0; m < 4; m++)
{
for (int n = 5; n >= 0; n--)
{
System.out.print("#");
}
System.out.println();
}
- 5 lines of ###
- 3 lines of #####
- 4 lines of ######
- 5 lines of ####
- Compilation error