Q. How do you emit an event from a child component to a parent component?
β
Correct Answer: (B)
Using @Output() and EventEmitter
Explanation: Child components use @Output and EventEmitter to send data/events to parents.