Question: Description Consider the following code: if (n > 10) { System.out.print(*****); } else if (n > 7) { System.out.print(****); } else if (n > 4)

Description

Consider the following code:

if (n > 10) { System.out.print("*****"); } else if (n > 7) {

System.out.print("****"); } else if (n > 4) {

System.out.print("***"); } else if (n > 1) {

System.out.print("**"); }

System.out.println("*");

How many * will be printed when the code is executed with

A) n = 6 B) n = 20 C) n = 2 D) n = 1 E) n = 7

Hint - plug the code into Eclipse and actually verify your results. When you know the answers, complete this quiz to fill in the answers with the correct numbers.

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!