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
What are synchronized methods and synchronized statements in java programming?
In a container there are 5 components. I want to display the all the components names, how will you do that one?
What are the two types of streams offered by java 8?
when a request is generated from apache tomcat 5.5 and goes to oracle 10g or mysql,,, how the oracle or mysql reads the request as apache is a web server and oracle 10g is application server? when the oracle 10g provides response, how the apche tomcat reads it???
How to sort an array in java without using sort method?
What is difference between hashset and hashmap?
What is finalize()?
How does hashmap work in java ?
What is keyset in java?
Does java vector allow null?
Can you access non static variable in static context?
How does indexof work?
What is implicit object in java?
What is null in java?
When a thread is executing a synchronized method , then is it possible for the same thread to access other synchronized methods of an object ?