You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
35 lines
820 B
35 lines
820 B
6 years ago
|
const questions = [
|
||
|
{
|
||
6 years ago
|
id: 1,
|
||
6 years ago
|
question: "What is localhost's IP address?",
|
||
|
answers: [
|
||
|
{ id: "1", text: "192.168.1.1" },
|
||
|
{ id: "2", text: "127.0.0.1", correct: true },
|
||
|
{ id: "3", text: "209.85.231.104" },
|
||
|
{ id: "4", text: "66.220.149.25" }
|
||
|
]
|
||
|
},
|
||
|
{
|
||
6 years ago
|
id: 2,
|
||
6 years ago
|
question: "What kind of fruit was used to name a computer in 1984?",
|
||
|
answers: [
|
||
|
{ id: "1", text: "Blackberry" },
|
||
|
{ id: "2", text: "Blueberry" },
|
||
|
{ id: "3", text: "Pear" },
|
||
|
{ id: "4", text: "Apple", correct: true }
|
||
|
]
|
||
6 years ago
|
},
|
||
|
{
|
||
|
id: 3,
|
||
|
question: "How many planets are in the Solar System?",
|
||
|
answers: [
|
||
|
{ id: "1", text: "6" },
|
||
|
{ id: "2", text: "7" },
|
||
|
{ id: "3", text: "8", correct: true },
|
||
|
{ id: "4", text: "9" }
|
||
|
]
|
||
6 years ago
|
}
|
||
6 years ago
|
]
|
||
6 years ago
|
|
||
6 years ago
|
export default questions
|