DEV Community

namya
namya

Posted on

What is a Synchronous & Asynchronous Programming? 🚀

What is Synchronous Programming ?

Synchronous operations tasks performed one at a time
and as that task is completed, the following task is unlocked.
In other words, you would like to hold up for the task to be executed to move to the following one.

What is Asynchronous Programming ?

Asynchronous operations may execute the next following task before the previous one is completed ,
( its like multitasking ) . so it execute all tasks synchronously till it hitt something thats asynchronous and
it will complete that and the rest of the tasks simultaneously .

sync and async

learn more 🤓:



Thank you for reading, and let's connect!

Top comments (0)