SERVLETCONFIG--- one per web Application.
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.