Answer:
A) i-false, ii-false
Explanation:
i)
init() method is only called once at the time of creation of servlet,it is not called for the client request.It is a one time initialization.The init() method is used creating and loading data that will be used throughout the life of the servlet.
Definition Init() method
public void init() throws ServletException {
// Initialization code...
}
ii)
Servlet is a java class that contains Java Api specification.Every Jsp is ultimately converted to Servlet, as in JSP you put Java inside HTML and for Servlet you put HTML inside JAVA.Both JSP and Servlet is used for server side scripting.