Home > Java Programming > Declarations and Access Control > Questions and Answers
Exercise:
Q: |
Which two statements are true for any concrete class implementing the java.lang.Runnable interface? 1. You can extend the Runnable interface as long as you override the public run ( ) method. 2. The class must contain a method called run ( ) from which all code for that thread will be initiated. 3. The class must contain an empty public void method named run ( ). 4. The class must contain a public void method named runnable ( ). 5. The class definition must include the words implements Threads and contain a method called run ( ). 6. The mandatory method must be public, with a return type of void, must be called run ( ), and cannot take any arguments. | ||||||||||
|
Comment on this Question | |
Name: | |
|