Multiple choice technology programming languages

Sequence of Event Propagation

  1. bubbling-target-capturing

  2. target-bubbling-capturing

  3. capturing-target-bubbling

  4. Can't say

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

Standard DOM event propagation flows through three distinct phases in order: capturing (propagating down from the window to the target), target (reaching the target element), and bubbling (propagating back up to the window). The other options incorrectly reorder or omit these phases.