Direction: Choose the correct option
Q1.
Which lifecycle hook is called after the component's constructor?
Direction: Choose the correct option
Q2.
When is `ngOnChanges` called?
Direction: Choose the correct option
Q3.
Which hook is called once after the component's view has been fully initialized?
Direction: Choose the correct option
Q4.
What is the purpose of `ngOnDestroy`?
Direction: Choose the correct option
Q5.
Which hook is called during every change detection run?
Direction: Choose the correct option
Q6.
What is the order of execution for these hooks: constructor, ngOnChanges, ngOnInit?
Direction: Choose the correct option
Q7.
When is `ngAfterContentInit` called?
Direction: Choose the correct option
Q8.
What is the difference between `ngAfterViewInit` and `ngAfterViewChecked`?
Direction: Choose the correct option
Q9.
What should you avoid doing in `ngOnInit`?
Direction: Choose the correct option
Q10.
Can you implement lifecycle hooks in directives?
