Last active
July 19, 2021 13:37
-
-
Save toreylittlefield/9a267a75aa8193abd339c20191a137ad to your computer and use it in GitHub Desktop.
React Quiz Questions
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
[ | |
{ | |
"id": 1, | |
"word": "What is React Js?", | |
"choices": [ | |
{ | |
"text": "Javascript framework" | |
}, | |
{ | |
"text": "Javascript library" | |
}, | |
{ | |
"text": "Javascript file" | |
}, | |
{ | |
"text": "None of the Above" | |
} | |
], | |
"correctChoiceIndex": 1 | |
}, | |
{ | |
"id": 2, | |
"word": "What does ReactJS cover?", | |
"choices": [ | |
{ | |
"text": "Data layer in an application" | |
}, | |
{ | |
"text": "User Interface layer in an application" | |
}, | |
{ | |
"text": "Both A & B" | |
}, | |
{ | |
"text": "None of the Above" | |
} | |
], | |
"correctChoiceIndex": 1 | |
}, | |
{ | |
"id": 3, | |
"word": "What does ReactJS use to increase performance?", | |
"choices": [ | |
{ | |
"text": "Virtual DOM" | |
}, | |
{ | |
"text": "Original DOM" | |
}, | |
{ | |
"text": "Local DOM" | |
}, | |
{ | |
"text": "None of the Above" | |
} | |
], | |
"correctChoiceIndex": 0 | |
}, | |
{ | |
"id": 4, | |
"word": "React is ______ Javascript library?", | |
"choices": [ | |
{ | |
"text": "Module Based" | |
}, | |
{ | |
"text": "Component Based" | |
}, | |
{ | |
"text": "System Based" | |
}, | |
{ | |
"text": "All are Correct" | |
} | |
], | |
"correctChoiceIndex": 1 | |
}, | |
{ | |
"id": 5, | |
"word": "A valid React component can return what number of (parent) elements?", | |
"choices": [ | |
{ | |
"text": "1" | |
}, | |
{ | |
"text": "2" | |
}, | |
{ | |
"text": "3" | |
}, | |
{ | |
"text": "None of the Above" | |
} | |
], | |
"correctChoiceIndex": 0 | |
} | |
] |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment