1. Can AJAX
be used with PHP?
Answers:
• yes
• no
2. Can you
call responseBody or responseText to get a partial result when the readyState
of an XMLHttpRequest is 3(receiving)?
Answers:
• Yes
• No
3. Consider
the following function: function foo () { return 5; }
What will
the following code do? var myVar = foo;
Answers:
• Assign the
integer 5 to the variable myVar
• Assign the pointer to function foo to myVar
• Do nothing
• Throw an
exception
• None of
the above
4. Which of
the following status codes denotes a server error?
Answers:
• 100
• 200
• 300
• 501
• 500
5. Can AJAX
be used to move files on the client-side?
Answers:
• Yes
• No
6.
Javascript uses static bindings.
Answers:
• true
• false
7. Can
WebDav methods like PROPFIND be used with XMLHttpRequest.open()?
Answers:
• Yes
• No
8. Can an
AJAX application communicate with other applications on the client computer?
Answers:
• Yes
• No