Which of the following matches X occurs n or more times?
Answer options
A
X{n,}
B
X{n}
C
X{n,m}
D
X+
Correct answer: X{n,}
Explanation
Quick AnswerThe correct answer is X{n,} because it directly addresses the core logic of Java Programming.
X{n,} matches X repeated n or more times.