The following Java exercise(s) are designed for intermediate level programmers. If the level is too hard, then I recommend to select an easier one or you might consider reading my article about this topic, which offers a theoretical explanation including more exercises. Read More: Java Conditional Statements
Article: Java Conditional Statements Quizzes: Beginner Intermediate Advanced |
Quiz 1: if else statements.
What happens when the following program is compiled and run?
public class MyClass { int x; int y = 3; int n = y * y; boolean isLarger; void method(int z, int k){ if(n > z) { System.out.print("-p" + z); if(z < (x + 7)) { System.out.print("-x" + k); } if(y < (k - 5)) { System.out.print("-y" + n); }else { System.out.print("-z" + y); } }else { System.out.print("-h" + x); } } public static void main(String[] args){ MyClass mc = new MyClass(); mc.method(6,8); } }
Article: Java Conditional Statements Quizzes: Beginner Intermediate Advanced |
Suggested Articles
![]() ![]() ![]() |