Angular MCQ Quiz Question and Answer
Categories: Interview questions and answers Angular Angular JS MCQ
Angular MCQ Quiz Question and Answer
Q1 - Who is sometimes called as father of Angularjs?
- Brad Green
- Misko Hevery
- Brad Richardson
- Chuck Jazdzewski
Answer: B
Q2 - Which of the following is correct about TypeScript?
- Angular is based on TypeScript.
- This is a superset of JavaScript.
- TypeScript is maintained by Microsoft.
- All of the above.
Answer: D
Q3 - What is the decorator used for configuring your module class?
- @NgModule
- @NgApp
- Both
- None of above
Answer: A
Q4 - Which angular decorator allows us to define the pipe name that is globally available for use in any template in the across application?
- pipeName
- pipeDeco
- Pipe
- None of the above
Answer: C
Q5 - Which character is used for chaining multiple pipes?
- |
- :
- Both
- None of above
Answer: A
Q6 - RxJS can be used for?
- Browser
- Server Side
- Both
- None of above
Answer: C
Q7 - How Observables are Used?
- The Reactive Forms Module uses reactive programming and Observables for listening to user input
- The @output() decorator in a component takes an EventEmitter instance. EventEmitter is a subclass of the RxJS Observable
- Both
- None of above
Answer: C
Q8 - What is .subscribe?
- Streams data in asynchronously
- Streams data in synchronously
- Both
- None of above
Answer: C
Q9 - What does AOT stand for?
- ahead-of-time compilation
- Angular Object Templates
- Both
- None of above
Answer: A
Q10 - Which of the following is not a hook application life cycle?
- ngOnChanges
- ngViewStart
- ngOnInit
- None of above
Answer: B