1234567891011121314151617181920



Question 1: You want to create a filter for your web application and your filter will implement
javax.servlet.Filter. Which two statements are true?

1. Your filter class must implement an init method and a destroy method.
2. Your filter class must also implement javax.servlet.FilterChain.
3. When your filter chains to the next filter, it should pass the same arguments it
received in its doFilter method.
4. Your filter class must implement a doFilter method that takes, among other
things, an HTTPServletRequest object and an HTTPServletResponse object.