Question - What is Capturing Groups?
Answer -
Capturing Groups are used for treating multiple characters as a single unit, it is created by placing the characters to be grouped inside a set of parentheses.
There are 4 types of such groups:
((A)(B(C)))
(A)
(B(C))
(C)