Given the code fragment: int b = 3; if ( !(b > 3)) { System.out.println("square "); }{ System.out.println("circle

By | January 1, 2023

Given the code fragment:
int b = 3;
if ( !(b > 3)) {
System.out.println(“square “);
}{
System.out.println(“circle “);
}
System.out.println(“…”);
What is the result?

Correct Answer: D