What is the purpose of event listeners in handling user input on the Canvas?
A). To clear the Canvas
B). To detect user actions
C). To draw shapes
D). To change Canvas size
Which event is commonly used to track mouse clicks on the Canvas?
A). mousemove
B). mousedown
C). mouseup
D). mouseover
How can developers handle keyboard input events such as key presses on the Canvas?
A). Using mouse events
B). Using touch events
C). Using event listeners
D). Using Canvas properties
Which event is triggered when a key is pressed and held down on the keyboard?
A). keypress
B). keyup
C). keydown
D). keyboard
How are mouse movement coordinates calculated on the Canvas?
A). Using mouseover event
B). Using mousemove event
C). Using mouseout event
D). Using mousedown event
What is the purpose of the mousedown event in Canvas interaction?
A). To detect key presses
B). To track mouse movement
C). To detect mouse button release
D). To detect mouse button press
What does the mouseup event signify on the Canvas?
A). Mouse button press
B). Mouse button release
C). Mouse movement
D). Mouse leaving Canvas
How can developers detect when a key is released on the keyboard?
A). Using keydown event
B). Using keyup event
C). Using keypress event
D). Using keyboard event
Which event is triggered when the mouse button is released on the Canvas?
A). mousemove
B). mousedown
C). mouseup
D). mouseout
How can developers track when the mouse pointer enters the Canvas area?
A). Using mousemove event
B). Using mouseclick event
C). Using mouseover event
D). Using mousedown event