What Is The Priority Of The Thread In The Following Java #903
What is the priority of the thread 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); } }</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 Multithreading Basics - Quiz No.1.