- ATrue
- BFalse
Time Taken:
Correct Answer:
Wrong Answer:
Percentage: %
Answer: a) Magnetic field
Explanation: The magnetic field is the region around a magnet where its magnetic force can be detected.
Answer: d) Magnetometer
Explanation: A magnetometer is a device used to measure the strength and direction of a magnetic field.
Answer: b) Paramagnetism
Explanation: Paramagnetism is a type of magnetism that is only temporary and occurs when a material is placed in an external magnetic field. This type of magnetism is caused by the alignment of magnetic moments in the material with the external magnetic field, but it disappears once the external field is removed.
AJAX stands for Asynchronous JavaScript and XML. It is a web development technique used to create asynchronous web applications by exchanging data with a server behind the scenes, without requiring a full page reload.
The onreadystatechange event in AJAX is used to define a callback function that will be executed when the state of the XMLHttpRequest object changes, indicating different stages of the request-response cycle.
The Same-Origin Policy in AJAX restricts cross-origin requests by preventing web pages from making requests to a different domain than the one that served the web page, enhancing security.
JSON, in the context of AJAX, stands for JavaScript Object Notation. It is a lightweight data interchange format used to transmit data between a client and a server.
In jQuery, the $.ajax() method is used to send AJAX requests. It provides a flexible and powerful way to make asynchronous requests to the server and handle responses.
The $.getJSON() method in jQuery is used to retrieve JSON data from the server using a GET request. It simplifies the process of making asynchronous requests and handling JSON responses.