View Question
View this question.
Add this question to a group or test by clicking the appropriate button below.
| Continuing Education :: Java and JSP by BacMan |
|
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"); } }
|
