Friday Quiz - learn-struts-fast/struts-tutorials GitHub Wiki

  1. To customize how Struts tags render HTML, which two template technologies come standard with Struts?
  • Thymeleaf
  • Velocity
  • Groovy
  • FreeMarker
  1. Which of the following is correct way to declare an i18n resource bundle?
  • ApplicationResources_en_US_TX
  • ApplicationResources_TX_US_en
  • ApplicationResources_US_TX_en
  • ApplicationResources_TX_en_US
  1. What is the preferred approach for including Ajax calls in your code?
  • jQuery template
  • Ajax template
  • Ajax plugin
  • jQuery plugin
  1. For the following tag to display the discount code,

<s: property value="discountCode"/>

the action class must have:

  • A public property named discountCode
  • A public getter named getDiscountCode()
  • A public setter named setDiscountCode()
  • A property named discountCode and corresponding setters and getters
  1. The Struts framework for helping to create page layouts is known as:
  • Faces
  • Tiles
  • MVC
  • Portal