AJAX Introduction Flashcards

1
Q

Why is AJAX a developer’s dream?

A

It reads data from a web server after the page has loaded. It updates a web page without reloading the page. It sends data to a web server in the background.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
2
Q

What is AJAX?

A

A technique for accessing web servers from a web page.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
3
Q

What does AJAX stand for?

A

Asynchronous JavaScript and XML

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
4
Q

T or F: AJAX is not a programming language.

A

True

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
5
Q

AJAX uses the combination of what two things?

A

A browser built-in XMLHttpRequest object, and JavaScript and HTML DOM.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
6
Q

AJAX uses XMLHttpRequest object to do what?

A

to request data from a web server.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
7
Q

AJAX uses JavaScript and HTML to do what?

A

to display or use the data

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
8
Q

AJAX allows web pages to be updated ________ by exchanging data with a web server. What does this do?

A

asynchronously. It updates part of a web page, without reloading the whole page.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly