Back to quizzes

Conditional Statements Quiz

Java / Loops | Medium | 15 questions

Question 1 of 15

4 free questions left

What is the output of the following code: if (5 > 3) { System.out.println("True"); } else { System.out.println("False"); }