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

1 Expert Approved Answer
Step: 1 Unlock

b... View full answer

blur-text-image
Question Has Been Solved by an Expert!

Get step-by-step solutions from verified subject matter experts

Step: 2 Unlock
Step: 3 Unlock

Students Have Also Explored These Related Java Programming Questions!