← Back to Subject
Web Designing • MCQ • HTML Forms and Multimedia Integration
HTML Forms and Multimedia Integration
Q1. Which tag is used to create a form in HTML?

A)
B)

C)
D)


Answer: B

Explanation:
The tag is used to create a form for collecting user input.

Q2. Which attribute specifies where form data is sent?

A) method
B) action
C) target
D) name

Answer: B

Explanation:
The action attribute defines the URL where the form data will be submitted.

Q3. Which attribute defines how form data is sent?

A) submit
B) type
C) method
D) value

Answer: C

Explanation:
The method attribute specifies whether data is sent using GET or POST.

Q4. Which method is commonly used for secure form submission?

A) GET
B) POST
C) LINK
D) SEND

Answer: B

Explanation:
POST is more secure because data is not shown in the URL.

Q5. Which input type is used for password fields?

A) text
B) pass
C) password
D) secure

Answer: C

Explanation:
type="password" hides the entered characters for security.

Q6. Which input type creates a button to submit form data?

A) button
B) submit
C) send
D) click

Answer: B

Explanation:
type="submit" sends the form data to the server.

Q7. Which input type is used to reset form values?

A) clear
B) delete
C) reset
D) remove

Answer: C

Explanation:
type="reset" clears all entered values and restores default values.

Q8. Which tag is used to create a text area?

A)
B)