Multiple choice technology programming languages

SERVLETCONFIG--- one per web Application.

  1. True

  2. False

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

ServletConfig is one per servlet, not per web application. Each servlet gets its own ServletConfig object during initialization containing its specific initialization parameters. For web application-wide configuration, you use ServletContext, which is shared across all servlets in the application.