Question: if (n > 10) { System.out.print(*****); } if (n > 7) { System.out.print(****); } if (n > 4) { System.out.print(***); } if (n > 1)

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

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

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

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

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!