Examveda
Examveda

When a class extends the Thread class ,it should override ............ method of Thread class to start that thread.

A. start()

B. run()

C. init()

D. go()

Answer: Option B


This Question Belongs to Java Program >> Threads

Join The Discussion

Comments ( 2 )

  1. Harish Devaraj
    Harish Devaraj :
    3 years ago

    49.import javax.swing.*;
    class Tst
    {
    public static void main(String ... a)
    {
    JFrame j1=new JFrame("My Frame");
    JFrame j2=j1;
    JFrame j3=j2;
    j1.setVisible(true);
    j2.setVisible(true);
    j3.setVisible(true);
    }
    }
    (2 Points)

  2. Hari Haran
    Hari Haran :
    4 years ago

    run method in thread used to perform actions. it must surely overrides in our program then only start method can able to access and start the thread execution

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