Multiple choice technology

Every Custom Servlet extends javax.servlet.http.HttpServlet class

  1. True

  2. False

Reveal answer Fill a bubble to check yourself
A Correct answer
Explanation

In J2EE web applications, all custom servlets handling HTTP requests must extend javax.servlet.http.HttpServlet. This abstract class provides HTTP-specific functionality (doGet, doPost, etc.). While you could technically implement Servlet directly, HttpServlet is the standard base for all HTTP servlets in J2EE.