Search Interview Questions | More than 3000 questions in repository. There are more than 900 unanswered questions. Click here and help us by providing the answer. Have a video suggestion. Click Correct / Improve and please let us know. |
|
| ||||
Operating System - Interview Questions and Answers for 'Yield' - 3 question(s) found - Order By Newest | ||||
Frequently asked to fresh graduates. | ||||
| ||||
Ans. When a object invokes yield() it returns to ready state. But when an object invokes sleep() method enters to not ready state. | ||||
Help us improve. Please let us know the company, where you were asked this question : | ||||
Like Discuss Correct / Improve  java   threads   multi threading   yield   sleep   scheduling   operating system Asked in 4 Companies basic   frequent | ||||
Related Questions | ||||
Which keyword is used to provide explicit access of a code block to single thread ? a. Transient b. Final c. Explicit d. Synchronized | ||||
Can constructors be synchronized in Java ? | ||||
Explain multithreading in Java ? | ||||
What is a Deadlock ? | ||||
Why Struts 1 Classes are not Thread Safe whereas Struts 2 classes are thread safe ? | ||||
Explain Thread States ? | ||||
Why do we need Thread class even in case we execute thread using runnable interface ? | ||||
What is the difference between time slicing and preemptive scheduling ? | ||||
Difference between Process and Thread ? | ||||
What is race condition ? | ||||
| ||||
Ans. When a task invokes yield(), it changes from running state to runnable state. When a task invokes sleep(), it changes from running state to waiting/sleeping state. | ||||
Help us improve. Please let us know the company, where you were asked this question : | ||||
Like Discuss Correct / Improve  java   threads   multi threading   scheduling   thread states   yield   sleeping | ||||
Related Questions | ||||
What is the difference between yield() and sleep()? | ||||
Difference between Yielding and Sleeping ? | ||||
| ||||
Ans. When a task invokes its yield method, it returns to the ready state. When a task invokes its sleep method, it returns to the waiting state. | ||||
Help us improve. Please let us know the company, where you were asked this question : | ||||
Like Discuss Correct / Improve  multithreading  threads  yielding  sleeping  thread states | ||||
Related Questions | ||||
Difference between yield() and sleeping()? | ||||