Multiple choice technology programming languages

/de{3,}/ matches

  1. deeef

  2. def

  3. deef

  4. deeeef

  5. AandD

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

The regex /de{3,}/ matches 'd' followed by 3 or more 'e' characters. 'deeef' has exactly 3 e's, and 'deeeef' has 4 e's - both satisfy the {3,} quantifier (minimum 3).