Multiple choice technology programming languages The purpose of ?: in this is /(?: [a-z]+/ is? To enclose a subpattern in parenthesis without storing it in memory. To define a boundary condition To enclose a pattern within pattern None of the above Reveal answer Fill a bubble to check yourself A Correct answer Explanation (?: ...) in regex is a non-capturing group. It groups the subpattern (one or more letters) without storing the matched text in memory (unlike ordinary parentheses which create capture groups). This saves memory when you don't need backreferences.