Java and JSP Question
View this question.
Add this question to a group or test by clicking the appropriate button below.
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