what is the use of thread?Justify it by project point of view
Answers were Sorted based on User's Feedback
Answer / meena
Thread is a part of single program.
When user want to execute a large program in very less time
then user can destribute that program into number of users
using multithreading.
| Is This Answer Correct ? | 14 Yes | 4 No |
Answer / meena
Thread is a part of single program.
When user want to execute a large program in very less time
then user can destribute that program into number of users
using multithreading.
| Is This Answer Correct ? | 8 Yes | 2 No |
Answer / haresh prajapati
using thread you can handle multiple client on a single program.
| Is This Answer Correct ? | 4 Yes | 0 No |
Answer / mathe arun kumar
Thread is a part of program. If associates wants to develop
a large project then small partd(thresds) can be
implemented by programmers. After completing the project
every single part can be intigrated for execution inorder
to work that as a single project.
| Is This Answer Correct ? | 2 Yes | 0 No |
Answer / pratiksha
Thread is a lightweight process and we are using it for
doing multiple task at the same time.
| Is This Answer Correct ? | 1 Yes | 1 No |
Answer / lucky
Thread is a program and it is used to improve the program
execution as well as the process time that is the program is
executes in effective manner.
| Is This Answer Correct ? | 0 Yes | 0 No |
Answer / ramya
A thread is a light weight process which is used to execute multiple operations at same time
| Is This Answer Correct ? | 0 Yes | 0 No |
why are wait(), notify() and notifyall() methods defined in the object class? : Java thread
What is a classloader in java?
Print Vertical traversal of a Binary Tree.
Are arrays static in java?
There are 2 different ways to create an object. a)By using keyword "new" b)By using Class.forName ("className").newInstance(); What is the difference between these 2 methods.
Distinguish between a predicate and a function?
Is java platform independent?
What are the benefits of java?
Can you access the private method from outside the class?
is there a separate stack for each thread in java? : Java thread
How use .contains in java?
How is it possible for two string objects with identical values not to be equal under the == operator?