OD
(Choose 1 answer)
The following line of code exists in the doGet method of Servlet:
String sid = request.getParameter("jsessionid");
Which of the option is NOT a standard technique for retrieving the HttpSession associated v (Assume that the session has already been created.)
A. HttpSession session = request.getSession();
B. HttpSession session = request.getSession(true);
C. HttpSession session = request.getSession(false);
D. HttpSession session = request.getSession(sid);
(15)