Tag Archives: 1.class

1.class StaticMethods { 2.static void one() { 3.two(); 4.StaticMethods.two(); 5.three(); 6.StaticMethods.four();

1.class StaticMethods {2.static void one() {3.two();4.StaticMethods.two();5.three();6.StaticMethods.four();7.}8.static void two() { }9.void three() {10.one();11.StaticMethods.two();12.four();13.StaticMethods.four();14.}15.void four() { }16.}Which three lines are illegal? A. line 10 B. line 11 C. line 3 D. line 13 E. line 4 F. line 12 G. line 5 H. line 6 Correct Answer: D,G,H