REGISTRATION FORM COMPREHENSIVE GUIDE
2026
◉ What types of input elements can an HTML form contain?
Answer: Text field, label, textarea, list, combobox, checkbox, radio
button, submit button, etc.
◉ What is the sample syntax for an HTML form that submits to
'process.jsp'? Answer: <FORM action='process.jsp' method='post'
name='myForm'></FORM>
◉ What are the two methods for submitting an HTML form? Answer:
GET and POST.
◉ How does the GET method submit form values? Answer: Form
values are appended to the URI as a query string.
◉ How does the POST method submit form values? Answer: Form
values are supplied in the input stream.
, ◉ What learning outcome involves sharing data between HTML
pages and JSP? Answer: Implementing the sharing of data between
HTML pages to JSP and JSP to JSP.
◉ What API is applied to access a database for manipulating records
in JSP? Answer: The JDBC API.
◉ What will students be able to explain by the end of the chapter?
Answer: HTML forms.
◉ Who is the lecturer for the WEB-BASED APPLICATION
DEVELOPMENT course? Answer: ASSOC. PROF. Ts. DR. WAN NURAL
JAWAHIR HJ WAN YUSSOF.
◉ What is the action attribute in an HTML form used for? Answer: It
specifies the URL to which the form data will be sent when the form
is submitted.
◉ What method is commonly used in forms to send data securely?
Answer: The POST method.
◉ What is the purpose of the placeholder attribute in an input field?
Answer: It provides a hint to the user about what to enter in the
field.