21.
In Java, what is the purpose of the "if-else if-else" statement?

25.
In Java, what does the "continue" statement do in a loop?

26.
What is the purpose of the "break" statement in a "switch" statement?

27.
In Java, what does the "default" case in a "switch" statement do?

28.
What is the output of the following code snippet?

int p = 3;
switch (p) {
case 1: System.out.print("One");
case 2: System.out.print("Two");
default: System.out.print("Default");
}