🎴 Flashcard Mode
Java I/O and Servlets
Card1 / 25
Mastered0
Review0
QuestionClick to flip
Classes Http Servlet and Generic Servlet implement the ________ interface.
AnswerClick to flip back
A
Servlet
💡 Explanation:
Both HttpServlet (for HTTP-specific web applications) and GenericServlet (for protocol-independent servlets) implement the Servlet interface, which defines the core servlet lifecycle methods like init(), service(), and destroy(). The Servlet interface is the foundation of all servlet technology.