InterviewSolution
| 1. |
What is AJAX? |
|
Answer» AJAX, which is Asynchronous JavaScript and XML, is a CLUSTER of related TECHNOLOGIES that helps in creating asynchronous web applications. It helps in fetching data asynchronously for sending and retrieving them without a page reload. With the use of AJAX, web developers can build faster and interactive web applications. With the help of AJAX, developers can send and retrieve data asynchronously without disturbing the behavior and appearance of the page. It runs in the background and decouples the data interchange layer from its PRESENTATION layer. It allows the web pages to change their CONTENT dynamically without reloading the complete page. |
|