91-9990449935 0120-4256464 |
AJAX Interview QuestionsA list of frequently asked AJAX interview questions and answers are given below. 1) What is AJAX?AJAX stands for Asynchronous JavaScript and XML. It is a group of related technologies to display data asynchronously. More details... 2) What are the advantages of AJAX?
3) What are the disadvantages of AJAX?
4) What are the real web applications of AJAX currently running in the market?
5) What are the security issues with AJAX?
6) What is the difference between synchronous and asynchronous requests?Synchronous request blocks the user until response is retrieved whereas asynchronous doesn't block the user. More details... 7) What are the technologies used by AJAX?
8) What does XMLHttpRequest?
9) What are the properties of XMLHttpRequest?The important properties of XMLHttpRequest object are given below.
10) What are the important methods of XMLHttpRequest?
11) What is JSON in AJAX?JSON stands for JavaScript Object Notation. It is easy to understand and data exchange is fast than XML. It supports array. 12) What are the tools for debugging AJAX applications?There are two most widely used tools for debugging AJAX applications.
13) What are the types of post back in AJAX?There are two types of post back in AJAX.
14) What are the different ready states of a request in AJAX?There are 5 ready states of a request in AJAX.
15) What are the common AJAX frameworks?
16) How can you test the AJAX code?JsUnit is the open source unit testing framework for client side JavaScript. It is a part of JUnit. 17) What is the difference between JavaScript and AJAX?JavaScript makes a request to the server and waits for the response. It consumes more bandwidth as it reloads the page. AJAX sends a request to the server and doesn't wait for the response. It doesn't reload the page so consumes less bandwidth. |