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 a function return a function?
what is the difference between yielding and sleeping? : Java thread
How many bits are used to represent unicode, ascii, utf-16, and utf-8 characters?
What do you mean by order of precedence and associativity?
What are the types of java languages?
What is the default size of arraylist in java?
What is difference between string and stringbuffer?
What is a programming object?
How do you compare two objects?
What is classes in java?
What does function identity () do?
How many types of memory areas are allocated by JVM in java?
What are drawbacks of singleton class?
What are pass by reference and pass by value?
Difference between Linked list and Queue?