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?