How many concurrent http requests would you expect to be


Consider the following JavaScript code that is executed in a browser:

function startAjaxQueue(){
for (var i = 0; i < 50; i++){
executeAjaxCallAsync();
}
};

Assuming that executeAjaxCallAsync() uses a standard XmlHttpRequest asynchronously to retrieve data from server, how many concurrent HTTP requests would you expect to be created by this loop?

Solution Preview :

Prepared by a verified Expert
: How many concurrent http requests would you expect to be
Reference No:- TGS02594043

Now Priced at $10 (50% Discount)

Recommended (91%)

Rated (4.3/5)