if (5 > 6) {
System.out.println(“C. Senor”);
} else if (6 < 5) {
System.out.println(“Sue Yu”);
} else {
System.out.println(“Jim Sox”);
}
What will the following code print?
- Sue Yu
- Blank Line
- Senor
- Jim Sox
Answer is Jim Sox
I dont understand why number 4 though, can someone please help to explain? Quiz did not give any explanation either