Examveda
Examveda

Analyze the following code:
public class Test implements Runnable{
        public static void main(String[] args){
                Test t = new Test();
                t.start();
        }

        public void run() { }
}

A. The program does not compile because the start() method is not defined in the Test class.

B. The program compiles, but it does not run because the start() method is not defined.

C. The program compiles, but it does not run because the run() method is not implemented.

D. The program compiles and runs fine.

Answer: Option A


This Question Belongs to Java Program >> Threads

Join The Discussion

Comments ( 2 )

  1. Alok Anupam
    Alok Anupam :
    6 years ago

    No prachi ..code is implementing Runnable so start method can be called using
    new Thread(t).start();
    so (a) is correct

  2. Prachi Verma
    Prachi Verma :
    7 years ago

    why you have provided wrong options....correct option is option D

Related Questions on Threads

What is a thread in Java?

A. A lightweight process that runs independently within a program

B. A data structure to store variables

C. A type of loop

D. A synchronization mechanism