What Is The Priority Of The Thread In Output In The Following #894
What is the priority 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(); t.setName("New Thread"); System.out.println(t.getName()); } }</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.