i think C is definetely correct as:
<jsp:include>:
1.The <jsp:include> element allows you to include either a static or dynamic resource in a JSP page.
2.If the resource is static, its content is included in the calling JSP page.
3.If the resource is dynamic, it acts on a request and sends back a result that is included in the JSP page
comming to option D:
RequestDispatcher from request :
1.The pathname specified may be relative, although it cannot extend outside the current
servlet context.
2.If the path begins with a "/" it is interpreted as relative to the current context root.
3.If the path does not start with "/" its considered relative to original request.
4.The resource can be dynamic or static.
soo A,C and D are correct answers....
am i ryt?