A
Q. What is the output of the below Java program?
Code:
int time=50;
do
{
System.out.print(time + ",");
time++;
}while(time < 53)
do
{
System.out.print(time + ",");
time++;
}while(time < 53)
- Correct Answer - Option(D)
- Views: 7
- Filed under category Java
- Hashtags:
Discusssion
Login to discuss.