Multiple choice technology programming languages

Which of the following events would be used by an interactive object to indicate visually that it can or cannot accept a drop operation?

  1. nativeDragOver

  2. nativeDragEnter

  3. nativeDragDrop

  4. nativeDragStart

Reveal answer Fill a bubble to check yourself
B Correct answer
Explanation

The nativeDragEnter event fires when a dragged object enters the drop target's boundaries, allowing the target to visually indicate whether it can accept the drop. nativeDragOver tracks movement within the target, nativeDragDrop completes the action, and nativeDragStart initiates dragging.