wahts is mean by thread?
Answers were Sorted based on User's Feedback
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 |
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 |
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 |
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 |
Answer / venkat reddy
A thread is a single sequence stream within in a process
| Is This Answer Correct ? | 9 Yes | 5 No |
Answer / kiran
Thread is sequenctial flow of a control with in a program
| Is This Answer Correct ? | 13 Yes | 12 No |
Do extraneous variables affect validity?
What is java algorithm?
int a=1,b=10; System.out.println(a+b--);
What's the base class in java from which all classes are derived?
write a program that list all permutations of ABCDEF in which A appears before B?
Difference between error and exception
Write a java program to find the route that connects between Red and Green Cells. General Rules for traversal 1. You can traverse from one cell to another vertically, horizontally or diagonally. 2. You cannot traverse through Black cells. 3. There should be only one Red and Green cell and at least one of each should be present. Otherwise the array is invalid. 4. You cannot revisit a cell that you have already traversed. 5. The maze need not be in the same as given in the above example
Can a class have an interface?
Implementations of set interface?
what is hashmap& hashtable with example?
What does escaping a character mean?
Explain the init method?