Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save toreylittlefield/9a267a75aa8193abd339c20191a137ad to your computer and use it in GitHub Desktop.
Save toreylittlefield/9a267a75aa8193abd339c20191a137ad to your computer and use it in GitHub Desktop.
React Quiz Questions
[
{
"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