Question:Which of the following is the correct syntax for creating a Session object?
A HttpSession ses=request.getSession(true);
B HttpSession ses=getSession(true);
C HttpSession ses=request.getSession();
D HttpSession ses=request.getSessionObject(true);
E HttpSession ses=response.getSession(true);
+ AnswerC
+ Report