Match the column JavaScript-Events with the column Descriptions .…
2023
Match the column JavaScript-Events with the column Descriptions . JavaScript-Events: a) onchange b) onmouseover c) onkeydown d) onload Descriptions: i) The browser has finished loading the page. ii) An HTML element has been changed. iii) The user moves the mouse over an HTML element. iv) The user pushes a keyboard key.
- A.
a-ii, b-iii, c-iv, d-i
- B.
a-iii, b-ii, c-iv, d-i
- C.
a-ii, b-iv, c-iii, d-i
- D.
a-iv, b-iii, c-i, d-ii
Attempted by 99 students.
Show answer & explanation
Correct answer: A
The correct matches are: onchange with element changes (a-ii), onmouseover with mouse hover (b-iii), onkeydown with key presses (c-iv), and onload with page finishing load (d-i). These pairings align with standard JavaScript event definitions.