Question: What is the output of the following code? b = 1; while(b < 4) { System.out.print(b + ); b = b + 1; }
What is the output of the following code?
b = 1;
while(b < 4)
{
System.out.print(b + " ");
b = b + 1;
}
a. 1
b. 1 2 3
c. 1 2 3 4
d. 1 1 1 1 1...
Step by Step Solution
3.42 Rating (165 Votes )
There are 3 Steps involved in it
b 1 2 3 When b is 1 the comparison in the while statemen... View full answer
Get step-by-step solutions from verified subject matter experts
