// Pool of Questions
const questionPool = [
{
question: “Solve \\(\\sqrt{16}\\):”,
options: [“2 \\(X^2\\)”, “3”, “4”, “5”],
correct: 2
},
{
question: “Find the cube of \3\:”,
options: [“9”, “18”, “27”, “81”],
correct: 2
},
{
question: “Evaluate \\\sum_{n=1}^5 n\:”,
options: [“10”, “15”, “20”, “25”],
correct: 1
},
{
question: “Simplify \\\frac{1}{2} + \\frac{1}{3}\:”,
options: [“\\\frac{2}{5}\”, “\\\frac{5}{6}\”, “\\\frac{6}{5}\”, “\\\frac{3}{4}\”],
correct: 1
},
{
question: “What is \\(5^2\\)?”,
options: [“10”, “15”, “20”, “25”],
correct: 3
},
{
question: “What is \3x + 5 = 17\? Find \x\.”,
options: [“2”, “4”, “5”, “6”],
correct: 1
}
];
Advanced Math MCQs Paper Generator