InterviewSolution
Saved Bookmarks
| 1. |
What does the status code 200 indicate?(a) Error in request(b) Error in response(c) Error in server(d) SuccessfulThis question was addressed to me in a job interview.Question is from Performance Measures in JavaScript topic in section Performance Measures in JavaScript of JavaScript |
|
Answer» CORRECT choice is (d) Successful The explanation is: The status CODE 200 indicates a successful response from the server. A 400 status code REPRESENTS a bad request. |
|