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 |
what is the J2EE BluPrints?
Is space a character in java?
What is Major and importance difference between for and foreach loop ?
Hi i am creating desktop application in that i want calling to mobile number. i have java telephone api (JTAPI) but i dont understand how it configure & use plese help me
What is the output of the following Java program? class Main { public static void main(String args[]){ final int i; i = 10; System.out.println(i); } } 10. What is the output of the following Java program? class Main { public static void main(String args[]){ final int i; i = 10; System.out.println(i); } }
How can I right-justify a string?
What is the difference between an if statement and a switch statement?
What is a deadlock ?
These static constructors are correct ? class A { statc intA() { } static A(int x,int y) { } static A(int x) { } }
what is nested class in java?
I have one Shopping cart application, i that i have selected some items, while clicking submit button by mistake i have clicked twice or trice, that time items are selected twice or trice. Actually i want only one copy of items but its selected twice or trice. So how can we avoid this problem?
What is the purpose of checked and unchecked exceptions in JAVA?