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


Please Help Members By Posting Answers For Below Questions

What are synchronized methods and synchronized statements in java programming?

812


In a container there are 5 components. I want to display the all the components names, how will you do that one?

816


What are the two types of streams offered by java 8?

698


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???

1918


How to sort an array in java without using sort method?

726


What is difference between hashset and hashmap?

803


What is finalize()?

879


How does hashmap work in java ?

753


What is keyset in java?

845


Does java vector allow null?

730


Can you access non static variable in static context?

790


How does indexof work?

728


What is implicit object in java?

819


What is null in java?

709


When a thread is executing a synchronized method , then is it possible for the same thread to access other synchronized methods of an object ?

826