You are on page 1of 1

____ is popular State Management Library.

@ngrx/stores

Dumb Component communicates events to Smart Component through


@Input

@ngrx is a utility toolkit built upon principles defined by


Redux

Which of the following is needed to add side-effect capabilities to your


application?
@ngrx/effects

ngrx leans heavily on Observable paradigm.


True

You install ngrx using which command?


npm install @ngrx/core @ngrx/store --save

___ is single immutable data structure


Store

Who handles async calls?


Effects

____ is similar to @ngrx/effects, as both are models for performing side-effects


redux-thunk

Which component is interacts with services?


Smart component

The state in which app gets loaded is called


Initial state

State can be only mutated through


reducer-

Reducers should be pure functions, meaning they should not generate -----
side-effects

Which type of application have "multiple stores"


flux

Reducers take the previous state and __________ to compute the new state
Action

You might also like