qobjects = [
{
question: "What is a correct NumPy syntax to perform log at base 2?",
options: [
"numlog(2)",
"log2()",
"numlog2()"
],
correct: 1
},
{
question: "What is a correct NumPy syntax to perform log at base 10?",
options: [
"log10()",
"log_10()",
"log_n10()"
],
correct: 0
},
{
question: "What is a correct NumPy syntax to perform log at base e?",
options: [
"log()",
"loge()",
"log_e()"
],
correct: 0
}
]