//data/questions.js
const questions = [
{
question: "What is the capital of France?",
options: ["Paris", "London", "Berlin", "Rome"],
answer: "Paris",
},
{
question: "What does HTML stand for?",
options: [
"Hyper Text Markup Language",
"Hyperlinks and Text Markup Language",
"Home Tool Markup Language",
"Hyperlinks and Text Management Language",
],
answer: "Hyper Text Markup Language",
},
{
question:
'Which programming language is known as "the mother of all languages"?',
options: ["C++", "Java", "Python", "Assembly Language"],
answer: "Assembly Language",
},
{
question: "What does CSS stand for?",
options: [
"Cascading Style Sheets",
"Creative Style Sheets",
"Computer Style Sheets",
"Colorful Style Sheets",
],
answer: "Cascading Style Sheets",
},
{
question: "What year was JavaScript created?",
options: ["1995", "1999", "2001", "2005"],
answer: "1995",
},
];
export default questions;