1.

What is the priority of the thread in output of this program?
public class multithreading_Priority 
{
public static void main(String args[])
{
Thread thread = Thread.currentThread();
System.out.println(thread);
}
}

A. 0
B. 1
C. 2
D. 4
E. 5
Answer» F.


Discussion

No Comment Found

Related MCQs