View Question
View this question.
Add this question to a group or test by clicking the appropriate button below.
add this question to a test add this question to a group
-
What number is printed by this program?
public class Order {
static { System.out.print("3"); }
public Order() {
System.out.print("2");
}
static { System.out.print("4"); }
public static void main(String args[]) {
System.out.print("5");
Order order = new Order();
System.out.print("1");
}
}- 32451
- 53241
- 52341
- 34521
- impossible to determine
- none of the above

