Question: public class WhileLoop { public static void method1() { int i = 0; int count = 3; while (i < count) { System.out.printf(%d is smaller

public class WhileLoop {

public static void method1() {

int i = 0;

int count = 3;

while (i < count) {

System.out.printf("%d is smaller than %d : %b ", i, count, i

< count);

// what is the statement?

}

System.out.println("Done");

System.out.printf("%d is **not** smaller than %d : %b ", i,

count, !(i < count));

}

public static void method2() {

int i = 1;

int count = 3;

while (i <= count) {

System.out.printf("%d is equal or smaller than %d : %b ", i,

count, i <= count);

}

System.out.println("Done");

System.out.printf("%d is **not** equal or smaller than %d : %b ",

i, count, !(i <= count));

}

public static void main(String[] args) {

System.out.println("0 to 3 (3 not included) - Preferred method");

method1();

// 2nd output

System.out.println(" 1 to 3 (3 included)");

method2();

}

}

/*

Output?

*/

Step by Step Solution

There are 3 Steps involved in it

1 Expert Approved Answer
Step: 1 Unlock 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 Databases Questions!