what is the use of thread?Justify it by project point of view
Answer Posted / 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 |
Post New Answer View All Answers
What environment variables are required to be set on a machine in order to run Java programs?
Can a class be declared as static?
Define nashorn in java8.
What are the types of java languages?
Can you access non static variable in static context?
Can we cast any other type to boolean type with type casting?
What is parsing in java?
What are the topics in core java?
What do you understand by java?
What is the flag in java?
Difference between throw and throws?
How can you set an applet’s height and width as a percentage?
What is preparedstatement in java?
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
How many times finalize method will be invoked? Who invokes finalize() method in java?