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
Get step-by-step solutions from verified subject matter experts
