InterviewSolution
Saved Bookmarks
| 1. |
AJAX stands for Asynchronous JavaScript and XML. What does the asynchronous term mean? |
|
Answer» The term "Asynchronous" means that a wide variety of events can OCCUR independently of one another using AJAX. As soon as the client-side INITIALIZES an AJAX-based callback to the server, the client won't have to wait for any response. The APPLICATION will continue to use the WEB application while processing the request. |
|