what is the difference between multitasking and
multithreading?
Answer Posted / ashok kumar
multitasking :multitasking is a method by which multiple
tasks, also known as processes, share common processing
resources such as a CPU. With a multitasking OS, you can
simultaneously run multiple applications.
Multithreading : extends the idea of multitasking into
applications, so you can subdivide specific operations
within a single application into individual threads. Each of
the threads can run in parallel. The OS divides processing
time not only among different applications, but also among
each thread within an application
| Is This Answer Correct ? | 21 Yes | 9 No |
Post New Answer View All Answers
Does collectionutils isempty check for null?
How can we pass argument to a function by reference instead of pass by value?
What is the difference between instanceof and isinstance?
Why string is not a wrapper class?
Is Constructor possible in abstract class in java ?
what is difference between equals and ==?
What are the three best choices for a development environment?
Why a dead thread occurs?
Explain Basics of OOP Language in java
What is mysql driver class name?
String class is defined under which package in java?
Why is core java important?
Can substring create new object?
What is the parse method in java?
What is passing by reference in java?