Angular 2 Game Of States MCQs Solution | TCS Fresco Play | FrescoPlay | TCS
Make an effort to understand these solutions and apply them to your Hands-On difficulties. (It is not advisable that copy and paste these solutions).
All Question of the MCQs Present Below for Ease Use Ctrl + F with the question name to find the Question. All the Best!
1. The state in which app gets loaded is called
initial state
2. Which type of application have "multiple stores"?
redux
3. ____ is popular State Management Library.
@ngrx/store
4. ____ is similar to @ngrx/effects, as both are models for performing side-effects
redux-saga
5. @ngrx is a utility toolkit built upon principles defined by
redux
6. Which component is interacts with services?
Smart components
7. Which of the following is needed to add side-effect capabilities to your application?
@ngrx/effects
8. Who handles async calls?
Effects
9. Reducers should be pure functions, meaning they should not generate -----
side effects
10. ___ is single immutable data structure
store
11. Reducers take the previous state and __________ to compute the new state
action
12. You install ngrx using which command?
npm install @ngrx/core @ngrx/store --save
13. Dumb Component communicates events to Smart Component through
@Output
14. State can be only mutated through
reducers
15. ngrx leans heavily on Observable paradigm.
True
Post a Comment