Online Struts quiz with 21 questions for Struts enthusiasts with some sample
questions. This online test helps you prepare for upcoming interviews,
certification tests and other entrance exams. The score displayed at the end of
Struts test helps you assess your level of preparation.
Online Practice
Test > Struts quiz
Here are few sample Struts quiz/test questions
Which of the following delegates the request handling to the
RequestProcessor instance?
ActionServlet
Action class
Deployment descriptor
None of the above
Application module selection is done by
Action class
ActionServlet
RequestProcessor
All of the above
Which of the following should always forwards or redirect to a resource
(view) after completed?
HttpResponse object
ActionServlet
Action class
Request Processor.
Click here to
start Struts quiz/test
More Links
Latest answer: The Action is part of the controller. Action
Class is used to translate the HttpServletRequest to the business logic. To do
this we need to overwrite the execute() method..............
Explain
directory structure for a struts folder.
Latest answer: META-INF: Contains meta information. Used by
utilities etc.
WEB-INF/classes: This is where you place you own Java classes.
WEB-INF/classes/ApplicationResources.properties: Contains the messages (fixed
texts) of the application. Error messages are also put here..............
|