Apache Wicket Web Framework

Test your knowledge of the Apache Wicket Java web framework, its features, configuration, and comparison with other frameworks.

11 Questions Published

Questions

Question 1 Multiple Choice (Single Answer)

Wicket framework developed by ____.

  1. Sun Microsystems
  2. IBM
  3. Apache Software Foundation
  4. Oracle Corporation
Question 2 Multiple Choice (Multiple Answers)

Primary benefits of wicket framework are__.

  1. Clean separation of concerns between HTML and Java
  2. Automated state management
  3. conjunction with JSP and custom tag libraries
  4. Abstraction away from Servlet API and HTTP protocol details
Question 3 Multiple Choice (Multiple Answers)

Select appropriate reasons those make struts framework outdated.

  1. It is not particularly object-oriented.
  2. You work with hierarchies of components and design your application as such.
  3. Unless you output HTML directly from your Java code you still need to learn another major technology JSP plus custom tag libraries in order to produce output HTML pages.
  4. A very clean object-oriented and component based approach.
Question 4 Multiple Choice (Multiple Answers)

Select appropriate answers those solves the main problems with the struts philosophy.

  1. Each Action class defines an abstraction, but the abstraction is determined by the HTTP procotol request mechanism rather than by an object-oriented analysis
  2. Wicket is fully object-oriented. You work with hierarchies of components and design your application as such.
  3. Wicket markup files are as close to pure HTML as it is possible to get. Where Wicket does introduce content into the markup it is very clean and complies with all XHTML standards
  4. Wicket is based around intercepting each HTTP request to a web application and directing it to a specific Action class that handles the request
Question 5 True/False

Wicket does not hide the details of the Servlet API and the HTTP protocol.

  1. True
  2. False
Question 6 True/False

Wicket has NO CONFIGURATION FILES.

  1. True
  2. False
Question 7 True/False

Wicket components know how to handle their own events.

  1. True
  2. False
Question 8 Multiple Choice (Multiple Answers)

Select the main features of wicket framework.

  1. Component based
  2. All framework classes are based on interfaces
  3. Pure Java + Pure HTML
  4. State Management
Question 9 Multiple Choice (Single Answer)

Apache wicket graduated into an Apache top-level project in ___.

  1. June,2009
  2. July,2007
  3. June,2007
  4. July,2010
Question 10 Multiple Choice (Single Answer)

With wicket,we can get benefits of which technology even when you are using just java and just HTML.

  1. JSP
  2. Servlets
  3. Ajax
  4. Applet
Question 11 Multiple Choice (Single Answer)

A project on which you are working calls for you to store small amount of frequntly changing information about a page on the client. For this project, SECURITY is not worried. Which method is thebest method to use

  1. Cookies
  2. A query String
  3. A URL
  4. A javascript function
  5. A hidden form field