CBSE Class 10 Computer Applications Question 42 of 48

HTML III — Audio, Video and Forms — Question 13

Back to all questions
13
Question

Question 13

<input type="submit" name="submit" id="submit" /> creates a reset button.

  1. True
  2. False
Answer

False

Reason<input type="submit" name="submit" id="submit" /> creates a SUBMIT button. RESET button is created by the following code:

<input type="reset" name="reset" id="reset" />