AJAX Test
Can a client AJAX application be used to fetch and execute some JavaScript code?
Can AJAX be used to move files on the client-side?
Can AJAX be used with HTTPS (SSL)?
Can AJAX be used with offline pages?
Can AJAX be used with PHP?
Can an AJAX application communicate with other applications on the client computer?
Can an HTML form be sent with AJAX?
Can WebDav methods like PROPFIND be used with XMLHttpRequest.open()?
Can you call responseBody or responseText to get a partial result when the readyState of an XMLHttpRequest is 3(receiving)?
Can you start multiple threads with JavaScript?
Consider the following function: function foo () { return 5; } What will the following code do? var myVar = foo;
document.write ("Hello"); will pop a dialog box with "Hello" in it.
Does JavaScript 1.5 have exception handling?
How can you create an XMLHttpRequest under Internet Explorer 6?
In the following list, which ones are used to fetch the result data of an XMLHttpRequest?
In the following list, which states are valid? XMLHttpRequest.readyState
Is it always possible to make requests to multiple websites with different domain names from an AJAX client script?
Is it possible to access the browser cookies from a javascript application?
Is it possible to create and manipulate an image on the client with AJAX?
Is it possible to make a page "reload-safe" when using AJAX?
Is it possible to make some system calls on the client with AJAX?
Is JavaScript the same as Java?
Is the loading of an AJAX enabled web page any different from the loading of a normal page?
It might be needed to set the request content-type to XML explicitly. How can you do so for an XMLHttpRequest Object?
Javascript uses static bindings.
The format of an HTTP request is given below: <request-line> <headers> <blank line> [<request-body>] Which of the following is not passed in the request-line?
The server returns data to the client during an AJAX postback. Which of the following is correct about the returned data?
The X in AJAX refers to XML, but is it possible to make a request for plain text data by using AJAX?
What is NOSCRIPT tag for?
What is the common way to make a request with XMLHttpRequest?
What is the correct syntax to create an array in JavaScript?
What is the correct syntax to include a script named myScript.js into a page?
What is the correct way to execute the function "calc()" when an XMLHttpRequest is loaded?
What is the correct way to have the function checkState called after 10 seconds?
What is the standardized name of JavaScript?
What is the third (async) parameter of the XMLHttpRequest open method?
What is true regarding XMLHttpRequest.abort()?
What language does AJAX use on the client side?
What should be called before 'send ()' to prepare an XMLHttpRequest object?
When a user views a page with JavaScript in it, which machine executes the script?
When doing an AJAX request, will the page be scrolled back to top as with normal requests?
When may asynchronous requests be used?
Which HTTP server does AJAX require?
Which language does AJAX use on the server side?
Which of the following are drawbacks of AJAX?
Which of the following browsers provide XMLHttpRequest property?
Which of the following cannot be resolved by using AJAX?
Which of the following describes the term 'Asynchronous' correctly?
Which of the following is a block comment in JavaScript?
Which of the following is not a JavaScript operator?
Which of the following is not a valid variable name in JavaScript?
Which of the following is/are not addressed by AJAX?
Which of the following is/are true regarding AJAX?
Which of the following list is/are true regarding AJAX?
Which of the following request types should be used with AJAX?
Which of the following status codes denotes a server error?
You want to update the following element with the XMLHttpRequest status. Which of the following approaches is correct for the purpose? <div id="statusCode"></div>