Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

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

Step: 1

blur-text-image

Get Instant Access with AI-Powered Solutions

See step-by-step solutions with expert insights and AI powered tools for academic success

Step: 2

blur-text-image

Step: 3

blur-text-image

Ace Your Homework with AI

Get the answers you need in no time with our AI-driven, step-by-step assistance

Get Started

Students also viewed these Databases questions