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 is the hashcode () and equals () used for?
What is jrmp?
These static constructors are correct ? class A { statc intA() { } static A(int x,int y) { } static A(int x) { } }
What does bitwise or mean?
How are destructors defined in java?
What is port number in java?
What is the difference between method overriding and overloading?
What is object data type?
How would you format a date in java? I.e. In the ddmmyyy format?
What is the difference between comparison done by equals method and == operator?
What do you mean by object?
Can we compare two strings in java?
How do you write a good declaration?
Can we override final method?
Explain naming conventions for packages?