+91-85006-22255
What will be the output of the following program?
public class SandCement { public static void main(String[] args) { for (int i = 0; i < 10; i *= 3) { System.out.print(i + ":"); for (i = 6; i < 14; i += 2) { System.out.print(i + ":"); } } }}
Topic: Nested for Loop In Java
Read this topic Take test on this topic
Open In App