82.
What will happen if two thread of the same priority are called to be processed simultaneously?

83.
What is the name of the thread in output in the following Java program?
class multithreaded_programing
{
    public static void main(String args[])
    {
        Thread t = Thread.currentThread();
        System.out.println(t.isAlive());        
    }
}

84.
What is the name of the thread in output in the following Java program?
class multithreaded_programing
{
    public static void main(String args[])
    {
        Thread t = Thread.currentThread();
        System.out.println(t.getPriority());        
    }
}

85.
What is multithreaded programming?

87.
What will be the output of the following Java program?
class newthread extends Thread
{
Thread t;
String name;
newthread(String threadname)
    {
  name = threadname;
  t = new Thread(this,name);
  t.start();
}
public void run()
    {
    }

}
class multithreaded_programing
{
    public static void main(String args[])
    {
  newthread obj1 = 	 new newthread("one");
  newthread obj2 =	 new newthread("two");
        try
        {
             System.out.print(obj1.t.equals(obj2.t));
        }
        catch(Exception e)
        {
  System.out.print("Main thread interrupted");
        }
    }
}

Read More Section(Threads)

Each Section contains maximum 100 MCQs question on Threads. To get more questions visit other sections.