Q. What is the output of the below Java program?
Code:
int time=50;
do
{
System.out.print(time + ",");
time++;
}while(time < 53)
β
Correct Answer: (D)
Compiler error
int time=50;
do
{
System.out.print(time + ",");
time++;
}while(time < 53)
You must be Logged in to update hint/solution