MCQOPTIONS
Saved Bookmarks
| 1. |
Analyze the following code:public abstract class Test implements Runnable{public void doSomething() { };} |
| A. | he program will not compile because it does not implement the run() method. |
| B. | he program will not compile because it does not contain abstract methods. |
| C. | he program compiles fine. |
| D. | one of the above |
| Answer» D. one of the above | |