MCQOPTIONS
Saved Bookmarks
| 1. |
What is the output of the thread in output of this program?public class Output { public static void main(String args[]) { Thread thread = Thread.currentThread(); System.out.println(thread.isAlive()); } } |
| A. | True |
| B. | 0 |
| C. | 1 |
| D. | False |
| E. | None of these |
| Answer» B. 0 | |