Skip to content
Related Articles
Get the best out of our app
GeeksforGeeks App
Open App
geeksforgeeks
Browser
Continue

Related Articles

Difference between Multiprocessing and Multiprogramming

Improve Article
Save Article
Like Article
Improve Article
Save Article
Like Article

Multiprocessing is a system that has two or more than one processors. In this, CPUs are added for increasing the computing speed of the system. Because of Multiprocessing, there are many processes that are executed simultaneously. Multiprocessing is further classified into two categories: Symmetric Multiprocessing, Asymmetric Multiprocessing.

 

Multi-programming is more than one process running at a time, it increases CPU utilization by organizing jobs (code and data) so that the CPU always has one to execute. The motive is to keep multiple jobs in the main memory. If one job gets occupied with Input/output, the CPU can be assigned to other jobs.

Difference between Multiprocessing and Multiprogramming:

MultiprocessingMultiprogramming
The availability of more than one processor per system, that can execute several set of instructions in parallel is known as multiprocessing.The concurrent application of more than one program in the main memory is known as multiprogramming.
The number of CPU is more than one.The number of CPUs is one.
It takes less time for job processing.It takes more time to process the jobs.
In this, more than one process can be executed at a time.In this, one process can be executed at a time.
It is not economical.It is economical.
The number of users is can be one or more than one.The number of users is one at a time.
Throughput is maximum.Throughput is less.
Its efficiency is maximum.Its efficiency is Less.
My Personal Notes arrow_drop_up
Last Updated : 13 Mar, 2023
Like Article
Save Article
Similar Reads