Added multiple difficulty settings to the quiz game and reorganized file structure.
After Width: | Height: | Size: 83 KiB |
After Width: | Height: | Size: 460 KiB |
After Width: | Height: | Size: 805 KiB |
After Width: | Height: | Size: 1.1 MiB |
After Width: | Height: | Size: 538 KiB |
After Width: | Height: | Size: 259 KiB |
After Width: | Height: | Size: 244 KiB |
After Width: | Height: | Size: 484 KiB |
After Width: | Height: | Size: 319 KiB |
After Width: | Height: | Size: 185 KiB |
After Width: | Height: | Size: 373 KiB |
After Width: | Height: | Size: 270 KiB |
After Width: | Height: | Size: 731 KiB |
After Width: | Height: | Size: 444 KiB |
After Width: | Height: | Size: 253 KiB |
After Width: | Height: | Size: 193 KiB |
After Width: | Height: | Size: 191 KiB |
After Width: | Height: | Size: 235 KiB |
After Width: | Height: | Size: 245 KiB |
After Width: | Height: | Size: 712 KiB |
Before Width: | Height: | Size: 608 KiB After Width: | Height: | Size: 608 KiB |
After Width: | Height: | Size: 1.1 MiB |
After Width: | Height: | Size: 236 KiB |
After Width: | Height: | Size: 521 KiB |
After Width: | Height: | Size: 446 KiB |
After Width: | Height: | Size: 447 KiB |
After Width: | Height: | Size: 168 KiB |
After Width: | Height: | Size: 496 KiB |
After Width: | Height: | Size: 226 KiB |
After Width: | Height: | Size: 492 KiB |
After Width: | Height: | Size: 164 KiB |
Before Width: | Height: | Size: 152 KiB After Width: | Height: | Size: 152 KiB |
After Width: | Height: | Size: 446 KiB |
Before Width: | Height: | Size: 252 KiB After Width: | Height: | Size: 252 KiB |
Before Width: | Height: | Size: 434 KiB After Width: | Height: | Size: 434 KiB |
Before Width: | Height: | Size: 782 KiB After Width: | Height: | Size: 782 KiB |
After Width: | Height: | Size: 1000 KiB |
After Width: | Height: | Size: 507 KiB |
After Width: | Height: | Size: 754 KiB |
After Width: | Height: | Size: 363 KiB |
After Width: | Height: | Size: 230 KiB |
After Width: | Height: | Size: 1.1 MiB |
After Width: | Height: | Size: 453 KiB |
After Width: | Height: | Size: 460 KiB |
After Width: | Height: | Size: 270 KiB |
After Width: | Height: | Size: 290 KiB |
After Width: | Height: | Size: 379 KiB |
After Width: | Height: | Size: 1012 KiB |
After Width: | Height: | Size: 247 KiB |
After Width: | Height: | Size: 246 KiB |
After Width: | Height: | Size: 806 KiB |
After Width: | Height: | Size: 504 KiB |
After Width: | Height: | Size: 378 KiB |
After Width: | Height: | Size: 413 KiB |
After Width: | Height: | Size: 722 KiB |
After Width: | Height: | Size: 252 KiB |
After Width: | Height: | Size: 380 KiB |
After Width: | Height: | Size: 380 KiB |
After Width: | Height: | Size: 773 KiB |
After Width: | Height: | Size: 694 KiB |
|
@ -128,11 +128,11 @@ class ResponsiveDrawer extends React.Component {
|
||||||
<ListItem button className={classes.nested} onClick={() => this.nav('Easy-Quiz')}>
|
<ListItem button className={classes.nested} onClick={() => this.nav('Easy-Quiz')}>
|
||||||
<ListItemText inset primary="Easy" />
|
<ListItemText inset primary="Easy" />
|
||||||
</ListItem>
|
</ListItem>
|
||||||
<ListItem button className={classes.nested} onClick={() => this.nav('Medium-Quiz')}>
|
<ListItem button className={classes.nested} onClick={() => this.nav('Intermediate-Quiz')}>
|
||||||
<ListItemText inset primary="Medium" />
|
<ListItemText inset primary="Intermediate" />
|
||||||
</ListItem>
|
</ListItem>
|
||||||
<ListItem button className={classes.nested} onClick={() => this.nav('Hard-Quiz')}>
|
<ListItem button className={classes.nested} onClick={() => this.nav('Advanced-Quiz')}>
|
||||||
<ListItemText inset primary="Hard" />
|
<ListItemText inset primary="Advanced" />
|
||||||
</ListItem>
|
</ListItem>
|
||||||
</List>
|
</List>
|
||||||
</Collapse>
|
</Collapse>
|
||||||
|
@ -197,8 +197,8 @@ class ResponsiveDrawer extends React.Component {
|
||||||
{this.state.key === 'List' && <SightingList />}
|
{this.state.key === 'List' && <SightingList />}
|
||||||
{this.state.key === 'About' && <Info />}
|
{this.state.key === 'About' && <Info />}
|
||||||
{this.state.key === 'Easy-Quiz' && <Quiz difficulty='Easy'/>}
|
{this.state.key === 'Easy-Quiz' && <Quiz difficulty='Easy'/>}
|
||||||
{this.state.key === 'Medium-Quiz' && <Quiz difficulty='Medium'/>}
|
{this.state.key === 'Intermediate-Quiz' && <Quiz difficulty='Intermediate'/>}
|
||||||
{this.state.key === 'Hard-Quiz' && <Quiz difficulty='Hard'/>}
|
{this.state.key === 'Advanced-Quiz' && <Quiz difficulty='Advanced'/>}
|
||||||
</main>
|
</main>
|
||||||
</div>
|
</div>
|
||||||
);
|
);
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
import React, { Fragment } from 'react';
|
import React from 'react';
|
||||||
import Grid from '@material-ui/core/Grid';
|
import Grid from '@material-ui/core/Grid';
|
||||||
import PropTypes from 'prop-types';
|
import PropTypes from 'prop-types';
|
||||||
import { withStyles } from '@material-ui/core/styles';
|
import { withStyles } from '@material-ui/core/styles';
|
||||||
|
@ -6,6 +6,9 @@ import Quiz from 'react-quiz-component';
|
||||||
import { Typography } from '@material-ui/core';
|
import { Typography } from '@material-ui/core';
|
||||||
import Button from '@material-ui/core/Button';
|
import Button from '@material-ui/core/Button';
|
||||||
import RefreshIcon from '@material-ui/icons/Refresh';
|
import RefreshIcon from '@material-ui/icons/Refresh';
|
||||||
|
import advancedQuiz from '../quiz/advancedQuiz.js'
|
||||||
|
import easyQuiz from '../quiz/easyQuiz.js'
|
||||||
|
import intermediateQuiz from '../quiz/intermediateQuiz.js'
|
||||||
|
|
||||||
// Style for the tabs.
|
// Style for the tabs.
|
||||||
const styles = theme => ({
|
const styles = theme => ({
|
||||||
|
@ -18,7 +21,7 @@ const styles = theme => ({
|
||||||
},
|
},
|
||||||
rightIcon: {
|
rightIcon: {
|
||||||
marginLeft: theme.spacing.unit,
|
marginLeft: theme.spacing.unit,
|
||||||
},
|
}
|
||||||
});
|
});
|
||||||
|
|
||||||
class QuizGame extends React.Component {
|
class QuizGame extends React.Component {
|
||||||
|
@ -49,189 +52,6 @@ class QuizGame extends React.Component {
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|
||||||
easy = {
|
|
||||||
"quizTitle": "Trail Cam Quiz: Easy",
|
|
||||||
"questions": [
|
|
||||||
{
|
|
||||||
"question": <Fragment>What animal is this?<br /><br /><img src="/quizimages/question1.jpg" alt=""></img></Fragment>,
|
|
||||||
"questionType": "text",
|
|
||||||
"answers": [
|
|
||||||
"Black bear",
|
|
||||||
"Common wombat",
|
|
||||||
"Raccoon",
|
|
||||||
"White-tailed deer"
|
|
||||||
],
|
|
||||||
"correctAnswer": "1"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"question": <Fragment>What animal is this?<br /><br /><img src="/quizimages/question2.jpg" alt=""></img></Fragment>,
|
|
||||||
"questionType": "text",
|
|
||||||
"answers": [
|
|
||||||
"American beaver",
|
|
||||||
"Muskrat",
|
|
||||||
"Porcupine",
|
|
||||||
"Woodchuck"
|
|
||||||
],
|
|
||||||
"correctAnswer": "3"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"question": <Fragment>What animal is this?<br /><br /><img src="/quizimages/question3.jpg" alt=""></img></Fragment>,
|
|
||||||
"questionType": "text",
|
|
||||||
"answers": [
|
|
||||||
"American badger",
|
|
||||||
"Raccoon",
|
|
||||||
"Striped skunk",
|
|
||||||
"Virginia opossum"
|
|
||||||
],
|
|
||||||
"correctAnswer": "2"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"question": <Fragment>What animal is this?<br /><br /><img src="/quizimages/question4.jpg" alt=""></img></Fragment>,
|
|
||||||
"questionType": "text",
|
|
||||||
"answers": [
|
|
||||||
"Eastern fox squirrel",
|
|
||||||
"Eastern gray squirrel",
|
|
||||||
"Red squirrel",
|
|
||||||
"Southern flying squirrel"
|
|
||||||
],
|
|
||||||
"correctAnswer": "3"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"question": <Fragment>What animal is this?<br /><br /><img src="/quizimages/question5.jpg" alt=""></img></Fragment>,
|
|
||||||
"questionType": "text",
|
|
||||||
"answers": [
|
|
||||||
"American Crow",
|
|
||||||
"Black Vulture",
|
|
||||||
"Turkey Vulture",
|
|
||||||
"Northern Raven"
|
|
||||||
],
|
|
||||||
"correctAnswer": "3"
|
|
||||||
},
|
|
||||||
]
|
|
||||||
}
|
|
||||||
|
|
||||||
medium = {
|
|
||||||
"quizTitle": "Trail Cam Quiz: Medium",
|
|
||||||
"questions": [
|
|
||||||
{
|
|
||||||
"question": <Fragment>What animal is this?<br /><br /><img src="/quizimages/question1.jpg" alt=""></img></Fragment>,
|
|
||||||
"questionType": "text",
|
|
||||||
"answers": [
|
|
||||||
"Black bear",
|
|
||||||
"Common wombat",
|
|
||||||
"Raccoon",
|
|
||||||
"White-tailed deer"
|
|
||||||
],
|
|
||||||
"correctAnswer": "1"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"question": <Fragment>What animal is this?<br /><br /><img src="/quizimages/question2.jpg" alt=""></img></Fragment>,
|
|
||||||
"questionType": "text",
|
|
||||||
"answers": [
|
|
||||||
"American beaver",
|
|
||||||
"Muskrat",
|
|
||||||
"Porcupine",
|
|
||||||
"Woodchuck"
|
|
||||||
],
|
|
||||||
"correctAnswer": "3"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"question": <Fragment>What animal is this?<br /><br /><img src="/quizimages/question3.jpg" alt=""></img></Fragment>,
|
|
||||||
"questionType": "text",
|
|
||||||
"answers": [
|
|
||||||
"American badger",
|
|
||||||
"Raccoon",
|
|
||||||
"Striped skunk",
|
|
||||||
"Virginia opossum"
|
|
||||||
],
|
|
||||||
"correctAnswer": "2"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"question": <Fragment>What animal is this?<br /><br /><img src="/quizimages/question4.jpg" alt=""></img></Fragment>,
|
|
||||||
"questionType": "text",
|
|
||||||
"answers": [
|
|
||||||
"Eastern fox squirrel",
|
|
||||||
"Eastern gray squirrel",
|
|
||||||
"Red squirrel",
|
|
||||||
"Southern flying squirrel"
|
|
||||||
],
|
|
||||||
"correctAnswer": "3"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"question": <Fragment>What animal is this?<br /><br /><img src="/quizimages/question5.jpg" alt=""></img></Fragment>,
|
|
||||||
"questionType": "text",
|
|
||||||
"answers": [
|
|
||||||
"American Crow",
|
|
||||||
"Black Vulture",
|
|
||||||
"Turkey Vulture",
|
|
||||||
"Northern Raven"
|
|
||||||
],
|
|
||||||
"correctAnswer": "3"
|
|
||||||
},
|
|
||||||
]
|
|
||||||
}
|
|
||||||
|
|
||||||
hard = {
|
|
||||||
"quizTitle": "Trail Cam Quiz: Hard",
|
|
||||||
"questions": [
|
|
||||||
{
|
|
||||||
"question": <Fragment>What animal is this?<br /><br /><img src="/quizimages/question1.jpg" alt=""></img></Fragment>,
|
|
||||||
"questionType": "text",
|
|
||||||
"answers": [
|
|
||||||
"Black bear",
|
|
||||||
"Common wombat",
|
|
||||||
"Raccoon",
|
|
||||||
"White-tailed deer"
|
|
||||||
],
|
|
||||||
"correctAnswer": "1"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"question": <Fragment>What animal is this?<br /><br /><img src="/quizimages/question2.jpg" alt=""></img></Fragment>,
|
|
||||||
"questionType": "text",
|
|
||||||
"answers": [
|
|
||||||
"American beaver",
|
|
||||||
"Muskrat",
|
|
||||||
"Porcupine",
|
|
||||||
"Woodchuck"
|
|
||||||
],
|
|
||||||
"correctAnswer": "3"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"question": <Fragment>What animal is this?<br /><br /><img src="/quizimages/question3.jpg" alt=""></img></Fragment>,
|
|
||||||
"questionType": "text",
|
|
||||||
"answers": [
|
|
||||||
"American badger",
|
|
||||||
"Raccoon",
|
|
||||||
"Striped skunk",
|
|
||||||
"Virginia opossum"
|
|
||||||
],
|
|
||||||
"correctAnswer": "2"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"question": <Fragment>What animal is this?<br /><br /><img src="/quizimages/question4.jpg" alt=""></img></Fragment>,
|
|
||||||
"questionType": "text",
|
|
||||||
"answers": [
|
|
||||||
"Eastern fox squirrel",
|
|
||||||
"Eastern gray squirrel",
|
|
||||||
"Red squirrel",
|
|
||||||
"Southern flying squirrel"
|
|
||||||
],
|
|
||||||
"correctAnswer": "3"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"question": <Fragment>What animal is this?<br /><br /><img src="/quizimages/question5.jpg" alt=""></img></Fragment>,
|
|
||||||
"questionType": "text",
|
|
||||||
"answers": [
|
|
||||||
"American Crow",
|
|
||||||
"Black Vulture",
|
|
||||||
"Turkey Vulture",
|
|
||||||
"Northern Raven"
|
|
||||||
],
|
|
||||||
"correctAnswer": "3"
|
|
||||||
},
|
|
||||||
]
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* This function returns the
|
* This function returns the
|
||||||
* quiz data based on the difficulty
|
* quiz data based on the difficulty
|
||||||
|
@ -243,16 +63,16 @@ class QuizGame extends React.Component {
|
||||||
|
|
||||||
switch (difficulty) {
|
switch (difficulty) {
|
||||||
case 'Easy':
|
case 'Easy':
|
||||||
this.easy.questions = this.shuffleArray(this.easy.questions);
|
easyQuiz.questions = this.shuffleArray(easyQuiz.questions);
|
||||||
level = this.easy;
|
level = easyQuiz;
|
||||||
break;
|
break;
|
||||||
case 'Medium':
|
case 'Intermediate':
|
||||||
this.medium.questions = this.shuffleArray(this.medium.questions);
|
intermediateQuiz.questions = this.shuffleArray(intermediateQuiz.questions);
|
||||||
level = this.medium;
|
level = intermediateQuiz;
|
||||||
break;
|
break;
|
||||||
case 'Hard':
|
case 'Advanced':
|
||||||
this.hard.questions = this.shuffleArray(this.hard.questions);
|
advancedQuiz.questions = this.shuffleArray(advancedQuiz.questions);
|
||||||
level = this.hard;
|
level = advancedQuiz;
|
||||||
break;
|
break;
|
||||||
default:
|
default:
|
||||||
break;
|
break;
|
||||||
|
@ -274,7 +94,7 @@ class QuizGame extends React.Component {
|
||||||
return (
|
return (
|
||||||
// Tabs
|
// Tabs
|
||||||
<div className={classes.root}>
|
<div className={classes.root}>
|
||||||
<Typography variant="headline" align="center">
|
<Typography variant="title" align="center">
|
||||||
<Grid container justify="center">
|
<Grid container justify="center">
|
||||||
<Quiz quiz={this.state.difficulty} key={this.state.key} />
|
<Quiz quiz={this.state.difficulty} key={this.state.key} />
|
||||||
</Grid>
|
</Grid>
|
||||||
|
|
|
@ -0,0 +1,229 @@
|
||||||
|
import React, {Fragment} from 'react';
|
||||||
|
|
||||||
|
const advancedQuiz = {
|
||||||
|
"quizTitle": "Trail Cam Quiz: Advanced",
|
||||||
|
"questions": [
|
||||||
|
{
|
||||||
|
"question": <Fragment>What animal is this?<br /><br /><img src="/quizimages/advanced/question1.jpg" alt=""></img></Fragment>,
|
||||||
|
"questionType": "text",
|
||||||
|
"answers": [
|
||||||
|
"American marten",
|
||||||
|
"Fisher",
|
||||||
|
"Long-tailed weasel",
|
||||||
|
"Mink"
|
||||||
|
],
|
||||||
|
"correctAnswer": "1"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"question": <Fragment>What animal is this?<br /><br /><img src="/quizimages/advanced/question2.jpg" alt=""></img></Fragment>,
|
||||||
|
"questionType": "text",
|
||||||
|
"answers": [
|
||||||
|
"American marten",
|
||||||
|
"Ermine",
|
||||||
|
"Long-tailed weasel",
|
||||||
|
"Mink"
|
||||||
|
],
|
||||||
|
"correctAnswer": "1"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"question": <Fragment>What animal is this?<br /><br /><img src="/quizimages/advanced/question3.jpg" alt=""></img></Fragment>,
|
||||||
|
"questionType": "text",
|
||||||
|
"answers": [
|
||||||
|
"American marten",
|
||||||
|
"Fisher",
|
||||||
|
"Long-tailed weasel",
|
||||||
|
"Mink"
|
||||||
|
],
|
||||||
|
"correctAnswer": "1"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"question": <Fragment>What animal is this?<br /><br /><img src="/quizimages/advanced/question4.jpg" alt=""></img></Fragment>,
|
||||||
|
"questionType": "text",
|
||||||
|
"answers": [
|
||||||
|
"American Robin",
|
||||||
|
"Hermit Thrush",
|
||||||
|
"Veery",
|
||||||
|
"Wood Thrush"
|
||||||
|
],
|
||||||
|
"correctAnswer": "1"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"question": <Fragment>What is in the marten's mouth?<br /><br /><img src="/quizimages/advanced/question5.jpg" alt=""></img></Fragment>,
|
||||||
|
"questionType": "text",
|
||||||
|
"answers": [
|
||||||
|
"American Woodcock",
|
||||||
|
"Mourning Dove",
|
||||||
|
"Rock Dove",
|
||||||
|
"Ruffed Grouse"
|
||||||
|
],
|
||||||
|
"correctAnswer": "1"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"question": <Fragment>What animal is this?<br /><br /><img src="/quizimages/advanced/question6.jpg" alt=""></img></Fragment>,
|
||||||
|
"questionType": "text",
|
||||||
|
"answers": [
|
||||||
|
"Black bear",
|
||||||
|
"Raccoon",
|
||||||
|
"Virginia opossum",
|
||||||
|
"Woodchuck"
|
||||||
|
],
|
||||||
|
"correctAnswer": "1"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"question": <Fragment>What animal is this?<br /><br /><img src="/quizimages/advanced/question7.jpg" alt=""></img></Fragment>,
|
||||||
|
"questionType": "text",
|
||||||
|
"answers": [
|
||||||
|
"Black bear",
|
||||||
|
"Raccoon",
|
||||||
|
"White-tailed deer",
|
||||||
|
"Woodchuck"
|
||||||
|
],
|
||||||
|
"correctAnswer": "1"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"question": <Fragment>What animal is this?<br /><br /><img src="/quizimages/advanced/question8.jpg" alt=""></img></Fragment>,
|
||||||
|
"questionType": "text",
|
||||||
|
"answers": [
|
||||||
|
"Coyote",
|
||||||
|
"Domestic dog",
|
||||||
|
"Gray fox",
|
||||||
|
"Red fox"
|
||||||
|
],
|
||||||
|
"correctAnswer": "1"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"question": <Fragment>What animal is this?<br /><br /><img src="/quizimages/advanced/question9.jpg" alt=""></img></Fragment>,
|
||||||
|
"questionType": "text",
|
||||||
|
"answers": [
|
||||||
|
"Eastern chipmunk",
|
||||||
|
"Least chipmunk",
|
||||||
|
"Red squirrel",
|
||||||
|
"Thirteen-lined ground squirrel"
|
||||||
|
],
|
||||||
|
"correctAnswer": "1"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"question": <Fragment>What animal is this?<br /><br /><img src="/quizimages/advanced/question10.jpg" alt=""></img></Fragment>,
|
||||||
|
"questionType": "text",
|
||||||
|
"answers": [
|
||||||
|
"Eastern chipmunk",
|
||||||
|
"Eastern fox squirrel",
|
||||||
|
"Eastern gray squirrel",
|
||||||
|
"Red squirrel"
|
||||||
|
],
|
||||||
|
"correctAnswer": "1"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"question": <Fragment>What animal is this?<br /><br /><img src="/quizimages/advanced/question11.jpg" alt=""></img></Fragment>,
|
||||||
|
"questionType": "text",
|
||||||
|
"answers": [
|
||||||
|
"American marten",
|
||||||
|
"Fisher",
|
||||||
|
"Long-tailed weasel",
|
||||||
|
"Mink"
|
||||||
|
],
|
||||||
|
"correctAnswer": "2"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"question": <Fragment>What animal is this?<br /><br /><img src="/quizimages/advanced/question12.jpg" alt=""></img></Fragment>,
|
||||||
|
"questionType": "text",
|
||||||
|
"answers": [
|
||||||
|
"American marten",
|
||||||
|
"Fisher",
|
||||||
|
"Long-tailed weasel",
|
||||||
|
"Mink"
|
||||||
|
],
|
||||||
|
"correctAnswer": "4"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"question": <Fragment>What animal is this?<br /><br /><img src="/quizimages/advanced/question13.jpg" alt=""></img></Fragment>,
|
||||||
|
"questionType": "text",
|
||||||
|
"answers": [
|
||||||
|
"Hermit Thrush",
|
||||||
|
"Louisiana Waterthrush",
|
||||||
|
"Ovenbird",
|
||||||
|
"Northern Waterthrush"
|
||||||
|
],
|
||||||
|
"correctAnswer": "3"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"question": <Fragment>What animal is this?<br /><br /><img src="/quizimages/advanced/question14.jpg" alt=""></img></Fragment>,
|
||||||
|
"questionType": "text",
|
||||||
|
"answers": [
|
||||||
|
"American beaver",
|
||||||
|
"Muskrat",
|
||||||
|
"Porcupine",
|
||||||
|
"Woodchuck"
|
||||||
|
],
|
||||||
|
"correctAnswer": "3"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"question": <Fragment>What animal is this?<br /><br /><img src="/quizimages/advanced/question15.jpg" alt=""></img></Fragment>,
|
||||||
|
"questionType": "text",
|
||||||
|
"answers": [
|
||||||
|
"American badger",
|
||||||
|
"Raccoon",
|
||||||
|
"Striped skunk",
|
||||||
|
"Virginia opossum"
|
||||||
|
],
|
||||||
|
"correctAnswer": "2"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"question": <Fragment>What animal is this?<br /><br /><img src="/quizimages/advanced/question16.jpg" alt=""></img></Fragment>,
|
||||||
|
"questionType": "text",
|
||||||
|
"answers": [
|
||||||
|
"Eastern fox squirrel",
|
||||||
|
"Eastern gray squirrel",
|
||||||
|
"Flying squirrel",
|
||||||
|
"Red squirrel"
|
||||||
|
],
|
||||||
|
"correctAnswer": "4"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"question": <Fragment>What animal is this?<br /><br /><img src="/quizimages/advanced/question17.jpg" alt=""></img></Fragment>,
|
||||||
|
"questionType": "text",
|
||||||
|
"answers": [
|
||||||
|
"American Woodcock",
|
||||||
|
"Mourning Dove",
|
||||||
|
"Rock Dove",
|
||||||
|
"Ruffed Grouse"
|
||||||
|
],
|
||||||
|
"correctAnswer": "4"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"question": <Fragment>What animal is this?<br /><br /><img src="/quizimages/advanced/question18.jpg" alt=""></img></Fragment>,
|
||||||
|
"questionType": "text",
|
||||||
|
"answers": [
|
||||||
|
"Eastern fox squirrel",
|
||||||
|
"Eastern gray squirrel",
|
||||||
|
"Flying squirrel",
|
||||||
|
"Red squirrel"
|
||||||
|
],
|
||||||
|
"correctAnswer": "3"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"question": <Fragment>What animal is this?<br /><br /><img src="/quizimages/advanced/question19.jpg" alt=""></img></Fragment>,
|
||||||
|
"questionType": "text",
|
||||||
|
"answers": [
|
||||||
|
"House mouse",
|
||||||
|
"Meadow jumping mouse",
|
||||||
|
"White-footed mouse",
|
||||||
|
"Woodland jumping mouse"
|
||||||
|
],
|
||||||
|
"correctAnswer": "3"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"question": <Fragment>What is in the marten's mouth?<br /><br /><img src="/quizimages/advanced/question20.jpg" alt=""></img></Fragment>,
|
||||||
|
"questionType": "text",
|
||||||
|
"answers": [
|
||||||
|
"Eastern chipmunk",
|
||||||
|
"Flying squirrel",
|
||||||
|
"White-footed mouse",
|
||||||
|
"Norway rat"
|
||||||
|
],
|
||||||
|
"correctAnswer": "2"
|
||||||
|
},
|
||||||
|
]
|
||||||
|
}
|
||||||
|
|
||||||
|
export default advancedQuiz;
|
|
@ -0,0 +1,229 @@
|
||||||
|
import React, {Fragment} from 'react';
|
||||||
|
|
||||||
|
const easyQuiz = {
|
||||||
|
"quizTitle": "Trail Cam Quiz: Easy",
|
||||||
|
"questions": [
|
||||||
|
{
|
||||||
|
"question": <Fragment>What animal is this?<br /><br /><img src="/quizimages/easy/question1.jpg" alt=""></img></Fragment>,
|
||||||
|
"questionType": "text",
|
||||||
|
"answers": [
|
||||||
|
"Black bear",
|
||||||
|
"Common wombat",
|
||||||
|
"Raccoon",
|
||||||
|
"White-tailed deer"
|
||||||
|
],
|
||||||
|
"correctAnswer": "1"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"question": <Fragment>What animal is this?<br /><br /><img src="/quizimages/easy/question2.jpg" alt=""></img></Fragment>,
|
||||||
|
"questionType": "text",
|
||||||
|
"answers": [
|
||||||
|
"American beaver",
|
||||||
|
"Muskrat",
|
||||||
|
"Porcupine",
|
||||||
|
"Woodchuck"
|
||||||
|
],
|
||||||
|
"correctAnswer": "3"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"question": <Fragment>What animal is this?<br /><br /><img src="/quizimages/easy/question3.jpg" alt=""></img></Fragment>,
|
||||||
|
"questionType": "text",
|
||||||
|
"answers": [
|
||||||
|
"American badger",
|
||||||
|
"Raccoon",
|
||||||
|
"Striped skunk",
|
||||||
|
"Virginia opossum"
|
||||||
|
],
|
||||||
|
"correctAnswer": "2"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"question": <Fragment>What animal is this?<br /><br /><img src="/quizimages/easy/question4.jpg" alt=""></img></Fragment>,
|
||||||
|
"questionType": "text",
|
||||||
|
"answers": [
|
||||||
|
"Eastern fox squirrel",
|
||||||
|
"Eastern gray squirrel",
|
||||||
|
"Red squirrel",
|
||||||
|
"Southern flying squirrel"
|
||||||
|
],
|
||||||
|
"correctAnswer": "3"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"question": <Fragment>What animal is this?<br /><br /><img src="/quizimages/easy/question5.jpg" alt=""></img></Fragment>,
|
||||||
|
"questionType": "text",
|
||||||
|
"answers": [
|
||||||
|
"American Crow",
|
||||||
|
"Black Vulture",
|
||||||
|
"Turkey Vulture",
|
||||||
|
"Northern Raven"
|
||||||
|
],
|
||||||
|
"correctAnswer": "3"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"question": <Fragment>What animal is this?<br /><br /><img src="/quizimages/easy/question6.jpg" alt=""></img></Fragment>,
|
||||||
|
"questionType": "text",
|
||||||
|
"answers": [
|
||||||
|
"American marten",
|
||||||
|
"Fisher",
|
||||||
|
"Long-tailed weasel",
|
||||||
|
"Mink"
|
||||||
|
],
|
||||||
|
"correctAnswer": "1"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"question": <Fragment>What animal is this?<br /><br /><img src="/quizimages/easy/question7.jpg" alt=""></img></Fragment>,
|
||||||
|
"questionType": "text",
|
||||||
|
"answers": [
|
||||||
|
"American marten",
|
||||||
|
"Fisher",
|
||||||
|
"Long-tailed weasel",
|
||||||
|
"Mink"
|
||||||
|
],
|
||||||
|
"correctAnswer": "1"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"question": <Fragment>What animal is this?<br /><br /><img src="/quizimages/easy/question8.jpg" alt=""></img></Fragment>,
|
||||||
|
"questionType": "text",
|
||||||
|
"answers": [
|
||||||
|
"American Robin",
|
||||||
|
"Hermit Thrush",
|
||||||
|
"Mourning Dove",
|
||||||
|
"Wood Thrush"
|
||||||
|
],
|
||||||
|
"correctAnswer": "1"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"question": <Fragment>What animal is this?<br /><br /><img src="/quizimages/easy/question9.jpg" alt=""></img></Fragment>,
|
||||||
|
"questionType": "text",
|
||||||
|
"answers": [
|
||||||
|
"Black bear",
|
||||||
|
"Common wombat",
|
||||||
|
"Raccoon",
|
||||||
|
"White-tailed deer"
|
||||||
|
],
|
||||||
|
"correctAnswer": "1"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"question": <Fragment>What animal is this?<br /><br /><img src="/quizimages/easy/question10.jpg" alt=""></img></Fragment>,
|
||||||
|
"questionType": "text",
|
||||||
|
"answers": [
|
||||||
|
"Bobcat",
|
||||||
|
"Domestic cat",
|
||||||
|
"Lynx",
|
||||||
|
"Serval"
|
||||||
|
],
|
||||||
|
"correctAnswer": "1"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"question": <Fragment>What animal is this?<br /><br /><img src="/quizimages/easy/question11.jpg" alt=""></img></Fragment>,
|
||||||
|
"questionType": "text",
|
||||||
|
"answers": [
|
||||||
|
"Coyote",
|
||||||
|
"Domestic dog",
|
||||||
|
"Gray fox",
|
||||||
|
"Red fox"
|
||||||
|
],
|
||||||
|
"correctAnswer": "1"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"question": <Fragment>What animal is this?<br /><br /><img src="/quizimages/easy/question12.jpg" alt=""></img></Fragment>,
|
||||||
|
"questionType": "text",
|
||||||
|
"answers": [
|
||||||
|
"Eastern chipmunk",
|
||||||
|
"Flying squirrel",
|
||||||
|
"Least chipmunk",
|
||||||
|
"Red squirrel"
|
||||||
|
],
|
||||||
|
"correctAnswer": "1"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"question": <Fragment>What animal is this?<br /><br /><img src="/quizimages/easy/question13.jpg" alt=""></img></Fragment>,
|
||||||
|
"questionType": "text",
|
||||||
|
"answers": [
|
||||||
|
"Eastern chipmunk",
|
||||||
|
"Flying squirrel",
|
||||||
|
"Least chipmunk",
|
||||||
|
"Red squirrel"
|
||||||
|
],
|
||||||
|
"correctAnswer": "1"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"question": <Fragment>What animal is this?<br /><br /><img src="/quizimages/easy/question14.jpg" alt=""></img></Fragment>,
|
||||||
|
"questionType": "text",
|
||||||
|
"answers": [
|
||||||
|
"Raccoon",
|
||||||
|
"Striped skunk",
|
||||||
|
"Virginia opossum",
|
||||||
|
"Woodchuck"
|
||||||
|
],
|
||||||
|
"correctAnswer": "1"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"question": <Fragment>What animal is this?<br /><br /><img src="/quizimages/easy/question15.jpg" alt=""></img></Fragment>,
|
||||||
|
"questionType": "text",
|
||||||
|
"answers": [
|
||||||
|
"American beaver",
|
||||||
|
"Muskrat",
|
||||||
|
"Porcupine",
|
||||||
|
"Woodchuck"
|
||||||
|
],
|
||||||
|
"correctAnswer": "3"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"question": <Fragment>What animal is this?<br /><br /><img src="/quizimages/easy/question16.jpg" alt=""></img></Fragment>,
|
||||||
|
"questionType": "text",
|
||||||
|
"answers": [
|
||||||
|
"American badger",
|
||||||
|
"Raccoon",
|
||||||
|
"Striped skunk",
|
||||||
|
"Virginia opossum"
|
||||||
|
],
|
||||||
|
"correctAnswer": "2"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"question": <Fragment>What animal is this?<br /><br /><img src="/quizimages/easy/question17.jpg" alt=""></img></Fragment>,
|
||||||
|
"questionType": "text",
|
||||||
|
"answers": [
|
||||||
|
"American badger",
|
||||||
|
"Raccoon",
|
||||||
|
"Striped skunk",
|
||||||
|
"Virginia opossum"
|
||||||
|
],
|
||||||
|
"correctAnswer": "3"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"question": <Fragment>What animal is this?<br /><br /><img src="/quizimages/easy/question18.jpg" alt=""></img></Fragment>,
|
||||||
|
"questionType": "text",
|
||||||
|
"answers": [
|
||||||
|
"Elk",
|
||||||
|
"Moose",
|
||||||
|
"Mule deer",
|
||||||
|
"White-tailed deer"
|
||||||
|
],
|
||||||
|
"correctAnswer": "4"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"question": <Fragment>What animal is this?<br /><br /><img src="/quizimages/easy/question19.jpg" alt=""></img></Fragment>,
|
||||||
|
"questionType": "text",
|
||||||
|
"answers": [
|
||||||
|
"Elk",
|
||||||
|
"Moose",
|
||||||
|
"Mule deer",
|
||||||
|
"White-tailed deer"
|
||||||
|
],
|
||||||
|
"correctAnswer": "4"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"question": <Fragment>What animal is this?<br /><br /><img src="/quizimages/easy/question20.jpg" alt=""></img></Fragment>,
|
||||||
|
"questionType": "text",
|
||||||
|
"answers": [
|
||||||
|
"Elk",
|
||||||
|
"Moose",
|
||||||
|
"Mule deer",
|
||||||
|
"White-tailed deer"
|
||||||
|
],
|
||||||
|
"correctAnswer": "4"
|
||||||
|
},
|
||||||
|
]
|
||||||
|
}
|
||||||
|
|
||||||
|
export default easyQuiz;
|
|
@ -0,0 +1,229 @@
|
||||||
|
import React, {Fragment} from 'react';
|
||||||
|
|
||||||
|
const intermediateQuiz = {
|
||||||
|
"quizTitle": "Trail Cam Quiz: Intermediate",
|
||||||
|
"questions": [
|
||||||
|
{
|
||||||
|
"question": <Fragment>What animal is this?<br /><br /><img src="/quizimages/intermediate/question1.jpg" alt=""></img></Fragment>,
|
||||||
|
"questionType": "text",
|
||||||
|
"answers": [
|
||||||
|
"American badger",
|
||||||
|
"Raccoon",
|
||||||
|
"Virginia opossum",
|
||||||
|
"Woodchuck"
|
||||||
|
],
|
||||||
|
"correctAnswer": "1"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"question": <Fragment>What animal is this?<br /><br /><img src="/quizimages/intermediate/question2.jpg" alt=""></img></Fragment>,
|
||||||
|
"questionType": "text",
|
||||||
|
"answers": [
|
||||||
|
"American marten",
|
||||||
|
"Fisher",
|
||||||
|
"Long-tailed weasel",
|
||||||
|
"Mink"
|
||||||
|
],
|
||||||
|
"correctAnswer": "1"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"question": <Fragment>What animal is this?<br /><br /><img src="/quizimages/intermediate/question3.jpg" alt=""></img></Fragment>,
|
||||||
|
"questionType": "text",
|
||||||
|
"answers": [
|
||||||
|
"American marten",
|
||||||
|
"Fisher",
|
||||||
|
"Long-tailed weasel",
|
||||||
|
"Mink"
|
||||||
|
],
|
||||||
|
"correctAnswer": "1"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"question": <Fragment>What animal is this?<br /><br /><img src="/quizimages/intermediate/question4.jpg" alt=""></img></Fragment>,
|
||||||
|
"questionType": "text",
|
||||||
|
"answers": [
|
||||||
|
"American marten",
|
||||||
|
"Fisher",
|
||||||
|
"Long-tailed weasel",
|
||||||
|
"Mink"
|
||||||
|
],
|
||||||
|
"correctAnswer": "1"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"question": <Fragment>What animal is this?<br /><br /><img src="/quizimages/intermediate/question5.jpg" alt=""></img></Fragment>,
|
||||||
|
"questionType": "text",
|
||||||
|
"answers": [
|
||||||
|
"American Robin",
|
||||||
|
"Hermit Thrush",
|
||||||
|
"Mourning Dove",
|
||||||
|
"Wood Thrush"
|
||||||
|
],
|
||||||
|
"correctAnswer": "1"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"question": <Fragment>What animal is this?<br /><br /><img src="/quizimages/intermediate/question6.jpg" alt=""></img></Fragment>,
|
||||||
|
"questionType": "text",
|
||||||
|
"answers": [
|
||||||
|
"Black bear",
|
||||||
|
"Raccoon",
|
||||||
|
"White-tailed deer",
|
||||||
|
"Woodchuck"
|
||||||
|
],
|
||||||
|
"correctAnswer": "1"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"question": <Fragment>What animal is this?<br /><br /><img src="/quizimages/intermediate/question7.jpg" alt=""></img></Fragment>,
|
||||||
|
"questionType": "text",
|
||||||
|
"answers": [
|
||||||
|
"Bobcat",
|
||||||
|
"Domestic cat",
|
||||||
|
"Lynx",
|
||||||
|
"Ocelot"
|
||||||
|
],
|
||||||
|
"correctAnswer": "1"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"question": <Fragment>What animal is this?<br /><br /><img src="/quizimages/intermediate/question8.jpg" alt=""></img></Fragment>,
|
||||||
|
"questionType": "text",
|
||||||
|
"answers": [
|
||||||
|
"Bobcat",
|
||||||
|
"Domestic cat",
|
||||||
|
"Lynx",
|
||||||
|
"Margay"
|
||||||
|
],
|
||||||
|
"correctAnswer": "1"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"question": <Fragment>What animal is this?<br /><br /><img src="/quizimages/intermediate/question9.jpg" alt=""></img></Fragment>,
|
||||||
|
"questionType": "text",
|
||||||
|
"answers": [
|
||||||
|
"American Crow",
|
||||||
|
"Blue Jay",
|
||||||
|
"Common Grackle",
|
||||||
|
"Common Raven"
|
||||||
|
],
|
||||||
|
"correctAnswer": "1"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"question": <Fragment>What animal is this?<br /><br /><img src="/quizimages/intermediate/question10.jpg" alt=""></img></Fragment>,
|
||||||
|
"questionType": "text",
|
||||||
|
"answers": [
|
||||||
|
"Coyote",
|
||||||
|
"Domestic dog",
|
||||||
|
"Gray fox",
|
||||||
|
"Red fox"
|
||||||
|
],
|
||||||
|
"correctAnswer": "1"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"question": <Fragment>What animal is this?<br /><br /><img src="/quizimages/intermediate/question11.jpg" alt=""></img></Fragment>,
|
||||||
|
"questionType": "text",
|
||||||
|
"answers": [
|
||||||
|
"Eastern chipmunk",
|
||||||
|
"Eastern fox squirrel",
|
||||||
|
"Eastern gray squirrel",
|
||||||
|
"Red squirrel"
|
||||||
|
],
|
||||||
|
"correctAnswer": "3"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"question": <Fragment>What animal is this?<br /><br /><img src="/quizimages/intermediate/question12.jpg" alt=""></img></Fragment>,
|
||||||
|
"questionType": "text",
|
||||||
|
"answers": [
|
||||||
|
"Eastern chipmunk",
|
||||||
|
"Eastern fox squirrel",
|
||||||
|
"Eastern gray squirrel",
|
||||||
|
"Red squirrel"
|
||||||
|
],
|
||||||
|
"correctAnswer": "3"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"question": <Fragment>What animal is this?<br /><br /><img src="/quizimages/intermediate/question13.jpg" alt=""></img></Fragment>,
|
||||||
|
"questionType": "text",
|
||||||
|
"answers": [
|
||||||
|
"American beaver",
|
||||||
|
"Muskrat",
|
||||||
|
"Porcupine",
|
||||||
|
"Woodchuck"
|
||||||
|
],
|
||||||
|
"correctAnswer": "3"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"question": <Fragment>What animal is this?<br /><br /><img src="/quizimages/intermediate/question14.jpg" alt=""></img></Fragment>,
|
||||||
|
"questionType": "text",
|
||||||
|
"answers": [
|
||||||
|
"American badger",
|
||||||
|
"Raccoon",
|
||||||
|
"Striped skunk",
|
||||||
|
"Virginia opossum"
|
||||||
|
],
|
||||||
|
"correctAnswer": "2"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"question": <Fragment>What animal is this?<br /><br /><img src="/quizimages/intermediate/question15.jpg" alt=""></img></Fragment>,
|
||||||
|
"questionType": "text",
|
||||||
|
"answers": [
|
||||||
|
"American badger",
|
||||||
|
"Raccoon",
|
||||||
|
"Striped skunk",
|
||||||
|
"Virginia opossum"
|
||||||
|
],
|
||||||
|
"correctAnswer": "2"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"question": <Fragment>What animal is this?<br /><br /><img src="/quizimages/intermediate/question16.jpg" alt=""></img></Fragment>,
|
||||||
|
"questionType": "text",
|
||||||
|
"answers": [
|
||||||
|
"Coyote",
|
||||||
|
"Domestic dog",
|
||||||
|
"Gray fox",
|
||||||
|
"Red fox"
|
||||||
|
],
|
||||||
|
"correctAnswer": "4"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"question": <Fragment>What animal is this?<br /><br /><img src="/quizimages/intermediate/question17.jpg" alt=""></img></Fragment>,
|
||||||
|
"questionType": "text",
|
||||||
|
"answers": [
|
||||||
|
"Eastern fox squirrel",
|
||||||
|
"Eastern gray squirrel",
|
||||||
|
"Flying squirrel",
|
||||||
|
"Red squirrel"
|
||||||
|
],
|
||||||
|
"correctAnswer": "4"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"question": <Fragment>What animal is this?<br /><br /><img src="/quizimages/intermediate/question18.jpg" alt=""></img></Fragment>,
|
||||||
|
"questionType": "text",
|
||||||
|
"answers": [
|
||||||
|
"Eastern chipmunk",
|
||||||
|
"Eastern fox squirrel",
|
||||||
|
"Eastern gray squirrel",
|
||||||
|
"Red squirrel"
|
||||||
|
],
|
||||||
|
"correctAnswer": "4"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"question": <Fragment>What animal is this?<br /><br /><img src="/quizimages/intermediate/question19.jpg" alt=""></img></Fragment>,
|
||||||
|
"questionType": "text",
|
||||||
|
"answers": [
|
||||||
|
"American Woodcock",
|
||||||
|
"Mourning Dove",
|
||||||
|
"Rock Dove",
|
||||||
|
"Ruffed Grouse"
|
||||||
|
],
|
||||||
|
"correctAnswer": "4"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"question": <Fragment>What animal is this?<br /><br /><img src="/quizimages/intermediate/question20.jpg" alt=""></img></Fragment>,
|
||||||
|
"questionType": "text",
|
||||||
|
"answers": [
|
||||||
|
"Elk",
|
||||||
|
"Moose",
|
||||||
|
"Mule deer",
|
||||||
|
"White-tailed deer"
|
||||||
|
],
|
||||||
|
"correctAnswer": "4"
|
||||||
|
},
|
||||||
|
]
|
||||||
|
}
|
||||||
|
|
||||||
|
export default intermediateQuiz;
|