AJAX: Quiz

AJAX is a great tool to have under your belt! Let's test how much you know about it in this lesson.

We'll cover the following...
1

Consider the following code:

var xhttp = new XMLHttpRequest();
xhttp.open("GET", "results.txt", true);

Will the request be sent asynchronously?

A)

AJAX requests are always sent asynchronously.

B)

Yes, because of the true argument in open().

C)

No

Question 1 of 60 attempted