Computer Science, asked by surviver1, 9 months ago

What will be the output of the program?
public class Sample
public static void main(String I args)
int i = 10;
do while (i < 10)
System.out.print("The value ofiis" + i);
while (i > 10);​

Answers

Answered by drskannadevi
0

Answer:

int count = 0;

while (count < 100) {

// Point A

System.out.println("Welcome to Java!");

count++;

// Point B

}

// Point C

Similar questions