InterviewSolution
This section includes InterviewSolutions, each offering curated multiple-choice questions to sharpen your knowledge and support exam preparation. Choose a topic below to get started.
| 1. |
The resultant requisite data is available without a time lag |
|
Answer» The resultant requisite data is available without a time lag in ___________. |
|
| 2. |
Middleware is _________. |
|
Answer» Middleware is _________. |
|
| 3. |
The custom argument in thunk can be injected using __________. |
|
Answer» The custom ARGUMENT in THUNK can be INJECTED USING __________. |
|
| 4. |
Once the Redux Thunk middleware is enabled, ___________. |
|
Answer» Once the REDUX Thunk middleware is enabled, ___________. |
|
| 5. |
setTimeout method is used for ___________. |
|
Answer» setTimeout method is USED for ___________. |
|
| 6. |
Thunk installation is performed using the command ___________. |
|
Answer» Thunk installation is PERFORMED USING the command ___________. |
|
| 7. |
Middleware is responsible for making API calls. |
|
Answer» Middleware is RESPONSIBLE for making API calls. |
|
| 8. |
Middleware is primarily ____________. |
|
Answer» Middleware is primarily ____________. |
|
| 9. |
For complex asynchronous actions, which of the following would work? |
|
Answer» For complex asynchronous actions, which of the FOLLOWING would work? |
|
| 10. |
Asynchronous actions can define _________. |
|
Answer» ASYNCHRONOUS actions can define _________. Choose the correct OPTION from below list (1)Both the OPTIONS (2)How an action will be DISPATCHED (3)When an action will be dispatched Answer:-(1)Both the options |
|
| 11. |
Redux promise middleware is used to dispatch _________. |
|
Answer» REDUX promise middleware is used to DISPATCH _________. Choose the correct option from below list (1)FUNCTIONS (2)Both the OPTIONS (3)Promises Answer:-(3)Promises |
|
| 12. |
To dispatch promise-based asynchronous actions, which of the following can be used? |
|
Answer» To dispatch promise-based asynchronous actions, which of the FOLLOWING can be used? |
|
| 13. |
When an asynchronous API is called, it requires a change in the state of the application. |
|
Answer» When an asynchronous API is called, it requires a CHANGE in the state of the application. |
|
| 14. |
For an API request, which of the following actions is dispatched first? |
|
Answer» For an API request, which of the following actions is DISPATCHED FIRST? |
|
| 15. |
General action creators are functions which return __________. |
|
Answer» General action CREATORS are FUNCTIONS which return __________. |
|
| 16. |
Asynchronous API calls ______________. |
|
Answer» ASYNCHRONOUS API calls ______________. Choose the correct option from below LIST (1)WAIT for server response (2)Do not wait for server response Answer:-(2)Do not wait for server response |
|
| 17. |
Redux thunk is used to make _________. |
|
Answer» Redux thunk is used to MAKE _________. |
|
| 18. |
Thunk middleware is the only way to implement asynchronous actions in Redux. |
|
Answer» Thunk middleware is the only WAY to implement asynchronous ACTIONS in Redux. |
|
| 19. |
While making an API call, which of the following is preferred? |
|
Answer» While making an API call, which of the following is preferred? |
|
| 20. |
const store = createStore( rootReducer, applyMiddleware(thunk)); is used for _________. |
|
Answer» CONST STORE = createStore( rootReducer, applyMiddleware(thunk)); is used for _________. Choose the correct option from below LIST (1)INSTALLING thunk (2)Removing thunk (3)Enabling thunk (4)Disabling thunk temporarily Answer:-(3)Enabling thunk |
|
| 21. |
Thunk is a ___________. |
|
Answer» THUNK is a ___________. Choose the correct option from below list (1)Sequence of program INSTRUCTIONS packaged as a UNIT (2)Library (3)All the OPTIONS (4)Middleware Answer:-(3)All the options |
|
| 22. |
Asynchronicity is all about __________. |
|
Answer» Asynchronicity is all about __________. |
|
| 23. |
Only functions can be dispatched in asynchronous middleware. |
|
Answer» Only functions can be dispatched in ASYNCHRONOUS middleware. |
|
| 24. |
Action creators which have asynchronous behavior dispatch actions _________. |
|
Answer» ACTION CREATORS which have asynchronous behavior dispatch actions _________. CHOOSE the correct OPTION from below LIST (1)After they receive a result (2)After 3000 ms (3)Immediately (4)None of the options Answer:-(1)After they receive a result |
|
| 25. |
Redux middleware is responsible for mainly handling ___________. |
|
Answer» REDUX middleware is RESPONSIBLE for MAINLY handling ___________. Choose the correct option from below list (1)Synchronous environment (2)Asynchronous environment (3)Both the options Answer:-(2)Asynchronous environment |
|