|
Answer» AJAX is an abbreviation of the initials of different technologies. They are: - HTML & CSS: HTML (the Hypertext Markup Language) and CSS (CASCADING STYLE Sheets) are two well-known & elementary technologies for creating web pages. Both works in tandem to provide the structure and visual styling to the web pages.
- XML: eXtensible Markup Language is a set of user-defined tags and codes that helps in describing the text in a digital document. It encodes the data in such a form that is both machine-readable and human-readable also.
- Document Object Model (DOM): It is a PROGRAMMING format and interfaces for HTML and XML. It acts as a logical structure to define the way developers access and manipulate the documents. It is not responsible for determining relationships between objects.
- JavaScript: It is the world's most well-known interpreted language. It is a high-level, lightweight language and has a just-in-time compiler. It supports multiple paradigms and is a core web development technology that works adjacent to HTML and CSS.
- XMLHttpRequest (XHR): It is an API as an object that asynchronously establishes communication between the CLIENT and the server. It transfers data between the web browser and a web server through the browser's JavaScript environment.
|