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