

MCQOPTIONS
Saved Bookmarks
1. |
What will be the output?class A extends Thread{public void run(){for(int i=0; i<2; i++){System.out.println(i);}}}public class Test{public static void main(String argv[]){Test t = new Test();t.check(new A(){});}public void check(A a){a.start();}} |
A. | 0 |
B. | ompilation error, class A has no start method |
C. | 1 |
D. | ompilation succeed but runtime exception |
E. | one of these |
Answer» D. ompilation succeed but runtime exception | |