1. Write the HTML text element for data named "aversion". 2. Write the HTML hidden element for data named "aversion". 3. Write the EL statement that will retrieve the value of "aversion" from the query string. 4. If there are two text elements in the edit page, how many hidden elements are needed in the confirm page? 5. Define what a Java bean property is. 6. Should the first letter of the name of an input element in an HTML page start with a lowercase letter or an uppercase letter? 7. Should the letter after "get" in an accessor be lowercase or uppercase? 8. Should the letter after "set" in a mutator be lowercase or uppercase? 9. Write the code for a Java bean property for an input element named "example". 10. If the edit page of an application has three input elements for data, how many properties should be defined in the bean? 11. Write the code for a Java bean that stores the data for an application that has input elements named first, middle and last. 12. Copy the data from the query string into a bean. The application has three input elements named first, middle, last. 13. Which object contains the method that returns the session? 14. What is the name of the method in the session that adds an object to the session? 15. Create an object for the bean class just created. Place the bean object so it can be accessed by the JSPs. 16. Write the XML that defines the data bean servlet and maps a URL for it. 17. List the five tasks that the data bean controller performs. 18. Write the code that creates a bean, adds it to the session and fills it with the data from the query string. 19. Write the EL statement that will retrieve the value of data named "example" from the bean in the session with the name "refData".