0 votes
in AJAX by
How do Synchronous and Asynchronous Requests differ?

1 Answer

0 votes
by

In a Synchronous request, the request sent from the client receives the response in the same HTTP connection. Examples being responses from Internet gateway, phone calls, and video meetings.

Whereas for Asynchronous requests, multiple requests can be sent from clients and their responses can be received in subsequent connections. Examples are collaborative documents like assessments, online queries, emails, and online forums.

...