Tag Archives: System.out.printlnquotcircle

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

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? A. circle… B. square… C. Compilation fails. D. squarecircle… Correct Answer: D