Which type allows you to share servlet attributes across your entire web application?
Which type allows you to share servlet attributes across your entire web application?
To share servlet attributes across your entire web application, the ServletContext is used. ServletContext is a shared memory space that allows attributes (objects) to be shared among multiple servlets and other components of the web application, making them accessible across the entire scope of the application.
Answer A