different types of threads?
Answers were Sorted based on User's Feedback
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 |
Answer / sakthivel(gceb)(n.p)pollachi
singlethread
multithread
| Is This Answer Correct ? | 69 Yes | 26 No |
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 |
Answer / venkatesh
Mainly two types threads only in java
ie, Single thread and Multi threading
| Is This Answer Correct ? | 6 Yes | 3 No |
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 |
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 |
Why is java architectural neutral?
What happens when heap memory is full?
Can we synchronize static methods in java?
What does the string method compareto () do?
What is final method?
How to print a statement without using semicolan in java
Why array is used in java?
What does flagged out mean?
What is the benefit of lambda expressions?
Why is java called the platform independent programming language?
explain copyonwritearraylist and when do we use copyonwritearraylist?
4.1 Supply contracts (in the form of comments specifying pre- and post conditions) for the enqueue() method of the LinkedQueue class given in the Appendix. (2) 4.2 Let Thing be a class which is capable of cloning objects, and consider the code fragment: Thing thing1 = new Thing(); //(1) Thing thing2 = thing1; //(2) Thing thing3 = (Thing) thing1.clone(); //(3) Explain how the objects thing2 and thing3 differ from each other after execution of the statements. (