different types of threads?

Answers were Sorted based on User's Feedback



different types of threads?..

Answer / sivasubramanian.k

Thread is the path of execution of a program..Types of
threads are Single-threaded and Multi-threaded...This is
mainly differentiated on the basis of synchronisation..A
synchronised thread means a single thread executed only
once at a time..Multithread means threads are executed
simultaneously...

Is This Answer Correct ?    166 Yes 34 No

different types of threads?..

Answer / sakthivel(gceb)(n.p)pollachi

singlethread
multithread

Is This Answer Correct ?    69 Yes 26 No

different types of threads?..

Answer / anoop singh

2 type are

1.kernel thread
2.user thread

Is This Answer Correct ?    68 Yes 37 No

different types of threads?..

Answer / partha

1.User Thread

and 2.Daemon Thread

Is This Answer Correct ?    46 Yes 22 No

different types of threads?..

Answer / alok kumar

threads are of mainly of two types
1- user level threads
2- kernel level threads

Is This Answer Correct ?    30 Yes 19 No

different types of threads?..

Answer / venkatesh

Mainly two types threads only in java
ie, Single thread and Multi threading

Is This Answer Correct ?    6 Yes 3 No

different types of threads?..

Answer / satish sharma

LEFT HANDED THREAD
RIGHT HANDED THREAD

Is This Answer Correct ?    4 Yes 2 No

different types of threads?..

Answer / umesh chandra pandey

Many types of Threads---
[1] Single Thread
[2]Multi Thread
[3]User Thread
[4]Kernal Thread
[5]Daemon Thread
[6]Non-daemon Thread
[7]GUI Thread
[8]Hyper Thread

Is This Answer Correct ?    4 Yes 2 No

different types of threads?..

Answer / sunil verma

Thread is the path of execution of a program..Types of
threads are Single-threaded and Multi-threaded...This is
mainly differentiated on the basis of synchronisation..A
synchronised thread means a single thread executed only
once at a time..Multithread means threads are executed
simultaneously...

Is This Answer Correct ?    18 Yes 17 No

different types of threads?..

Answer / chaitra.m

single Thread
multithread

Is This Answer Correct ?    4 Yes 3 No

Post New Answer

More Core Java Interview Questions

What are streams?

0 Answers  


Can a class declared as private be accessed outside it’s package?

0 Answers  


What are the various access specifiers for java classes?

0 Answers  


How will you override default serialization mechanism in java

2 Answers  


Explain access specifiers?

0 Answers   Thomson Reuters, Virtusa,






How to call static method?

4 Answers   Epoch,


Can we inherit inner class?

0 Answers  


Hi ,i convert contrller as jSp And presentation as servlet ...will it do? if so what are advantage and idsadvantages

2 Answers   IBM,


what is inner class in java?

0 Answers   IBS,


Given: 10. interface A { void x(); } 11. class B implements A { public void x() { } public voidy() { } } 12. class C extends B { public void x() {} } And: 20. java.util.List list = new java.util.ArrayList(); 21. list.add(new B()); 22. list.add(new C()); 23. for (A a:list) { 24. a.x(); 25. a.y();; 26. } What is the result? 1 Compilation fails because of an error in line 25. 2 The code runs with no output. 3 An exception is thrown at runtime. 4 Compilation fails because of an error in line 20.

3 Answers  


What is the difference between heap and stack memory?

0 Answers  


What carriage return means?

0 Answers  


Categories