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
Can we clone singleton object in java?
Is it necessary that each try block must be followed by a catch block?
What is the difference between JDK and JVM?
What is the advantage of OOP in java?
How many times finalize method will be invoked? Who invokes finalize() method in java?
What is bom encoding?
What is java in detail?
Why are constructors used?
What’s the difference between unit, integration and functional testing?
What is the main method java?
What is the major drawback of internal iteration over external iteration?
How do you add spaces in java?
how would you implement a thread pool? : Java thread
How can you avoid serialization in child class if the base class is implementing the serializable interface?
What is the difference between heap memory and stack memory?