Question - What do you mean by Servlet Manipulation?
Answer -
When one servlet accesses the loaded servlets on its server, it is called Servlet Manipulation. It also optionally performs some task on one or more of them. A servlet gets information about other servlets through the ServletContext object. We use getServlet() to get a particular servlet:
public Servlet ServletContext.getServlet(String name) throws ServletException