Multiple choice technology

Which statement below is true?

  1. ServletContext gives information about Container

  2. ServletContext gives information about Request

  3. ServletContext gives information about Session

  4. none

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

ServletContext provides information about the servlet container and allows servlets to communicate with it. It gives access to container-wide configuration parameters, resources, and attributes shared across all servlets in the application. It does not provide information about individual requests or sessions - those are handled by HttpServletRequest and HttpSession respectively.