InterviewSolution
Saved Bookmarks
| 1. |
Choose the statements which indicate the differences between the thread based multitasking and process based multitasking.(a) Process-based multitasking handles the concurrent execution of programs(b) Process-based multitasking handles the concurrent execution of pieces of the same program(c) Thread-based multitasking handles the concurrent execution of programs(d) Thread-based multitasking deals with the concurrent execution of pieces of the same program |
|
Answer» The correct answer is (a) Process-based multitasking handles the concurrent execution of programs Easy explanation - The differences between process-based and thread-based multitasking can be summarized like this:Process-based multitasking handles the concurrent execution of programs. Thread-based multitasking deals with the concurrent execution of pieces of the same program. |
|