Exam 200-710 All QuestionsBrowse all questions from this exam
Question 15

Consider 3 PHP files that are called asynchronously via XmlHttpRequest:

Which of the following statements is true? (Choose two.)

    Correct Answer: B, D

    When PHP session handling is involved, concurrent requests to session-started scripts will block each other until the session write is complete. This means that even though the requests are initiated asynchronously, they will be processed one at a time because the session file is locked during each session. Therefore, while the total execution time will be the cumulative time of each script's sleep call (1+2+3=6 seconds), the statements that the requests may be processed out of order and that concurrent requests will be blocked until the session lock is released, are both true.

Discussion
JeffryOptions: AB

Should be A,B

Andres_Espinosa1

quieres explicarlo a detalle...la respuesta es B casi que por descarte

Andres_Espinosa1Option: A

corrijo la respuesta es A