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