Which JSP code would be used to include static content in jsp?
a. <%A include file="footer.html" %>
b. <jsp:forward page="footer.html" />
c. <jsp:include page = "footer.html" />
d. RequestDispatcher dispatcher = request.getRequestDispatcher("footer.html");
dispatcher.include(req,res)
ans: a,b
isn't b same as d. Why is this option D not an answer for this question?