Loading

Quipoin Menu

Learn • Practice • Grow

Direction: Choose the correct option

Q1.

What does the <form> tag do in HTML?
A. Creates a link
B. Creates a list
C. Creates an HTML form for user input
D. Creates a table
Direction: Choose the correct option

Q2.

Which attribute specifies where to send the form data?
A. name
B. submit
C. method
D. action
Direction: Choose the correct option

Q3.

<form action="/submit" method="post">
<input type="text" name="username">
</form>
What happens when this form is submitted?
A. Sends data by email
B. Sends data to current page
C. Saves data locally
D. Sends data to /submit using POST
Direction: Choose the correct option

Q4.

What are the two main form methods?
A. INPUT and OUTPUT
B. GET and POST
C. PUT and DELETE
D. SEND and RECEIVE
Direction: Choose the correct option

Q5.

When should you use the POST method instead of GET?
A. For sensitive data like passwords
B. For bookmarkable results
C. For linking to pages
D. For simple searches