wahts is mean by thread?

Answers were Sorted based on User's Feedback



wahts is mean by thread?..

Answer / ravi

thread is the process of executng the program

Is This Answer Correct ?    52 Yes 15 No

wahts is mean by thread?..

Answer / madhuri reddy

thread is a light weight process.it divide the hole
programm into small groups.it is based on the kernal

Is This Answer Correct ?    33 Yes 3 No

wahts is mean by thread?..

Answer / kranti rajan singh

1.thread is an independent path of execution within ur java
program.that means thread can share the same memory space.
2. the sequence of code executed for each task defines a
separate path of execution is called thread.

Is This Answer Correct ?    34 Yes 10 No

wahts is mean by thread?..

Answer / zoheb

thread is the sub task in a program,thread is usually used
for purpose of serving the multiple client

Is This Answer Correct ?    14 Yes 4 No

wahts is mean by thread?..

Answer / lakshmi suresh

thread is programms path of execution

Is This Answer Correct ?    15 Yes 6 No

wahts is mean by thread?..

Answer / mukthiyar

Thread is a light weight process.
Thread is a single sequential execution flow of control.
Each thread has its own Stack memory.
Different Threads share the same memory(Heap Memory) and it
use some algorithm for implementing time slice like(Round
Robin).were as different Process take different memory space.

Is This Answer Correct ?    13 Yes 6 No

wahts is mean by thread?..

Answer / ravi jain

Thread is sequential path of execution which makes our program asynchronous.

Is This Answer Correct ?    6 Yes 1 No

wahts is mean by thread?..

Answer / venkat reddy

A thread is a single sequence stream within in a process

Is This Answer Correct ?    9 Yes 5 No

wahts is mean by thread?..

Answer / saravanan

line by line execution of our program code.

Is This Answer Correct ?    7 Yes 4 No

wahts is mean by thread?..

Answer / kiran

Thread is sequenctial flow of a control with in a program

Is This Answer Correct ?    13 Yes 12 No

Post New Answer

More Core Java Interview Questions

What is the use of hashmap in java?

0 Answers  


what is the use/perpose of having a method antive?

2 Answers  


wht is customised exception?

1 Answers   Logica CMG, Novell, Prudential,


Draw a UML class diagram for the code fragment given below: public class StringApplet extends Applet { private Label sampleString; private Button showTheString; private ButtonHandler bHandler; private FlowLayout layout; public StringApplet() { sampleString = new Label(" "); showTheString = new Button (" Show the String"); bHandler = new ButtonHandler(); layout = new FlowLayout(); showTheString.addActionListener(bHandler); setLayout(layout); add(sampleString); add(showTheString); } class ButtonHandler implements ActionListener { public void actionPerformed(ActionEvent e) { samplestring.setText("Good Morning"); } } } Note: The methods need not be indicated on the diagram.

0 Answers  


What is getkey () in java?

0 Answers  






How does compareto method work?

0 Answers  


Does java support function overloading, pointers, structures, unions or linked lists?

0 Answers  


Which package has light weight components?

0 Answers  


Why cant we define System.out.println() inside a class directly?

5 Answers  


What do you understand by looping in java? Explain the different types of loops.

0 Answers  


What is the difference between method overriding and overloading?

0 Answers  


Can we use string in switch case in java?

0 Answers  


Categories