Q. What is the difference between `@Input()` and `@Output()`?
β
Correct Answer: (A)
`@Input()` passes data to child, `@Output()` emits events to parent
Explanation: `@Input()` and `@Output()` are used for component interaction.