1. What is the default type of request? 2. Where is the query string data placed in a GET request? 3. Where is the query string data placed in a POST request? 4. What is the Content-Type for a POST request? 5. What is the Content-Length for a POST request? 6. How can a form tag be modified so it sends a POST request instead of a GET request? 7. What are the three ways that a GET request can be made? 8. What is the only way that a POST request can be made? 9. What are some advantages to using a POST request? 10. Why do some sites still use GET requests? 11. What must a servlet do in order to handle a POST request? 12. What happens if a POST request is made to a servlet that does not define a doPost method? 13. If all the forms in an application use POST, then what does it mean when the application receives a GET request? What assumptions can be made for this type of GET request? 14. Now that the application uses POST, why does it make sense for the doGet method to ignore the old data in the session? 15. Now that the application uses POST, why does it make sense for the doGet method to ignore the button name in the query string and always go the the edit page?