Sequential vs Concurrent vs Parallel
Ali Nour Al Din

Ali Nour Al Din @aliadelnour

About: Software Eng

Location:
Alexandria,Egypt
Joined:
Dec 24, 2023

Sequential vs Concurrent vs Parallel

Publish Date: Jan 5 '24
4 0

Image descriptionSequential programming involves executing instructions one after the other in a linear fashion, with each instruction completing before the next one starts.

Concurrent programming allows multiple tasks to make progress together, often by interleaving their execution. It doesn't necessarily mean they run simultaneously but rather share CPU time.

Parallel programming involves simultaneously executing multiple tasks or instructions on multiple processors or cores, truly running in parallel, aiming to improve overall processing speed.

Comments 0 total

    Add comment