Angular Interview Questions
============= Beginners: ============= Q. What is Angular? Q. Explain few main features of Angular? A. Offers clean code development Higher Performance Material Design-like Interface An angular framework can take care of routing which means moving from one view to another is easy Seamless Updates using Angular CLI Q. Flow of Angular application? Q. What is a life cycle hook and how many are there in Angular? A. Every component in Angular has a lifecycle, different phases it goes through from the time of creation to the time it's destroyed. Angular provides 8-hooks to tap into these phases and trigger changes at specific phases in a lifecycle: ngOnChanges ngOnInit ngDoCheck ngAfterContentInit ngAfterContentChecked ngAfterViewInit ngAfterViewChecked ngOnDestroy Q. Explain the differences between ngOnInit vs ngAfterContentInit vs ngAfterViewInit? Q. Explain data-binding concept in Angular and how many types does Angular supports? A. Q. Difference between angular.json and package...