logo

CuriousTab

CuriousTab

Discussion


Home Java Programming Threads See What Others Are Saying!
  • Question
  • What is the name of the method used to start a thread execution?


  • Options
  • A. init();
  • B. start();
  • C. run();
  • D. resume();

  • Correct Answer
  • start(); 

    Explanation
    Option B is Correct. The start() method causes this thread to begin execution; the Java Virtual Machine calls the run method of this thread.

    Option A is wrong. There is no init() method in the Thread class.

    Option C is wrong. The run() method of a thread is like the main() method to an application. Starting the thread causes the object's run method to be called in that separately executing thread.

    Option D is wrong. The resume() method is deprecated. It resumes a suspended thread.


    More questions

    • 1. What will be the output of the program (in jdk1.6 or above)?
      public class BoolTest 
      {
          public static void main(String [] args) 
          {
              Boolean b1 = new Boolean("false");
              boolean b2;
              b2 = b1.booleanValue();
              if (!b2) 
              {
                  b2 = true;
                  System.out.print("x ");
              }
              if (b1 & b2) /* Line 13 */
              {
                  System.out.print("y ");
              }
              System.out.println("z");
          }
      }
      

    • Options
    • A. z
    • B. x z