MCQ
What is the correct HTML for a button that is not a submit?
A <button type="button">
B <button>
C <input type="button">
D Both A and C
Explanation

Both <button type="button"> and <input type="button"> create buttons that do not submit forms.