What Is The Name Of The Thread In Output In The Following Java #896
What is the name of the thread in output in the following Java program?</p> <pre><code class="language-java" line="1"> class multithreaded_programing { public static void main(String args[]) { Thread t = Thread.currentThread(); System.out.println(t.isAlive()); } }</code></pre>
This multiple choice question (MCQ) is related to the book/course gs gs128 Java. It can also be found in gs gs128 Java Multithreading - Java Thread Class - Quiz No.1.