-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathQuizData.js
17 lines (17 loc) · 864 Bytes
/
QuizData.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
export default data = [
{
question: "What should you do when approaching a yellow traffic light?",
options: ["Speed up and cross the intersection quickly","Come to a complete stop","Slow down and prepare to stop","Ignore the light and continue driving"],
correct_option: "Slow down and prepare to stop"
},
{
question: "What does a red octagonal sign indicate?",
options: ["Yield right of way","Stop and proceed when safe","Merge with traffic","No left turn allowed"],
correct_option: "Stop and proceed when safe"
},
{
question: "What is the purpose of a crosswalk?",
options: ["A designated area for parking","A place to stop and rest","A path for pedestrians to cross the road","A location for U-turns"],
correct_option: "A path for pedestrians to cross the road"
}
]