Q. How do you bind a method to a button click in Angular template?
β
Correct Answer: (A)
(click)="methodName()"
Explanation: `(click)` is the event binding syntax in Angular templates.