Explanation Note: * WEB-INF is the folder just under the root of a WAR that holds information that you don't want to be accessible to a client via a URL request. Specifically, it holds the web.xml, classes, and lib directories, but you can put anything you want to hide from the client there. * META-INF is what discriminates a JAR file from a plain ZIP file. It holds the manifest file and may hold other deployment information as needed.
81 When using Servlet asynchronous API if you want to dispatch the request back to a particular url -"/url" within the same Servlet Context which of the following API would you use?
(A) ASyncContext.dispatch();
(B) AsyncContext.dispatch("/url");
(C) AsyncContext.dispatch(servletContext, "/url");
(D) AsyncContext.start(runnable);
(E) RequestDispatcher.fotward("/url"); F. RequestDispatcher.forward(servletContext, "/url"); G. RequestDispatcher.include("/url");