+91-85006-22255
What will be the output of the following program?
public class MastiBrother { public static void main(String[] args) { int i = 5; while (i < 7) { for (int k = 0; k < 2; k++) { System.out.print(i); } i++; } }}
Topic: Nested Loops in Java
Read this topic Take test on this topic
Open In App