🎴 Flashcard Mode
HTML, CSS and Servlets Fundamentals
Card1 / 17
Mastered0
Review0
QuestionClick to flip
The Web server that executes the servlet creates an _________ object and passes this to the servlet's service method (which, in turn, passes it to doGet or doPost).
AnswerClick to flip back
A
HttpServletRequest
💡 Explanation:
The servlet container creates an HttpServletRequest object representing the client request and passes it to the service() method (which then delegates to doGet(), doPost(), etc.). This object contains request metadata, parameters, headers, and session info.