InterviewSolution
Saved Bookmarks
| 1. |
What does ‘3xx’ code denote?(a) Redirection(b) Server Error(c) Success(d) InformationalThe question was posed to me in class test.This interesting question is from HTTP Overview in division HTML Fundamentals of HTML |
|
Answer» CORRECT option is (a) Redirection To elaborate: ‘3xx’ means Redirection, any further action have to be taken for completing the request. ‘1xx’ is for Informational, it SIGNIFIES that the request was received and the process is going on. ‘2xx’ denotes Success, which signifies the action was SUCCESSFULLY UNDERSTOOD, received and accepted. |
|