what is the difference between multitasking and
multithreading?
Answer Posted / divya
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. Multitasking refers to the ability of
the OS to quickly switch between each computing task to give
the impression the different applications are executing
multiple actions simultaneously.
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 ? | 101 Yes | 21 No |
Post New Answer View All Answers
Where is jre installed?
Can you override a final method?
What is local declaration?
Can a method be static?
Why do we use predicate in java?
How dead lock situation occurs in java and how you can identify it?
How we can declare a static variable?
How to perform linear search in java?
How to sort list of list in java?
What is meant by javabeans?
What is lifetime variable?
Can we overload destructor in java?
what are three ways in which a thread can enter the waiting state? Or what are different ways in which a thread can enter the waiting state? : Java thread
What is a variable and constant?
Explain scope or life time of local variables in java?