517). Which property helps to initiate the HTTP requests?

[A]request
[B]location
[C]send
[D]write

Show Answer

518). Which method is an alternative of the property location of a window object?

[A]submit()
[B]locate()
[C]load()
[D]write()

Show Answer

519). Which of the following uses scripted HTTP?

[A]XML
[B]HTML
[C]Ajax
[D]CSS

Show Answer

520). Which of the below is a liberal reverse of Ajax?

[A]HTTP
[B]HTML
[C]XML
[D]Comet

Show Answer

521). The other name for Comet is _____________

[A]Server Push
[B]Ajax Push
[C] HTTP Streaming
[D]All of the mentioned

Show Answer

522). Which is the element that has a src property to initiate HTTP GET request?

[A]img
[B]iframe
[C]script
[D]both img and script

Show Answer

523). XMLHttpRequest is a ____________

[A]Object
[B]Class
[C]Both Object and Class
[D]Array

Show Answer

524). Which of the following are the features of an HTTP request?

[A]URL being requested
[B]Optional request body
[C] Optional set of request headers
[D]All of the mentioned

Show Answer

525). Which of the following is a feature of the HTTP response?

[A]Mandatory response body
[B]Optional response body
[C]URL being released
[D]Optional set of response headers

Show Answer

526). Which is the appropriate code to begin a HTTP GET request?

[A]request.open(“GET”,”data”);
[B] request.open(GET,”data.csv”);
[C]request.open(“GET”,”data.csv”);
[D] request.open(“GET”);

Show Answer