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 class be private?
What is method overloading and method overriding?
Considering notepad/ie or any other thing as process, what will happen if you start notepad or ie 3 times? Where 3 processes are started or 3 threads are started?
What is size_t?
What is a super method?
What is the declaration statement?
Can we make a constructor final?
What is a static class in java?
Why can't you declare a class as protected?
what is encapsulation in java? Explain
Is static a keyword in java?
1.IN CASE OF DYNAMIC METHOD DISPATCH WHY WE USE REFERENCE VARIABLE,WE CAN USE THE DIFFERENT DEFINED OBJECT DIRECTLY TO ACCESS THE DATA MEMBER AND MEMBER FUNCTION OF THAT RESPECTIVE CLASS?WHAT IS THE MAIN FUNCTION OF "REFERENCE VARIABLE" HERE?
How do you define a method?
Can you make a constructor final?
Is the empty set a singleton?