qobjects = [
{
question: "What is a correct syntax for finding the hyperbolic sine value?",
options: [
"np.sin()",
"np.sinh()",
"np.sin_h()"
],
correct: 1
},
{
question: "What is a correct syntax for finding the hyperbolic tan value?",
options: [
"np.tanh()",
"np.tan()",
"np.tan_h()"
],
correct: 0
},
{
question: "What is a correct syntax for finding the hyperbolic cos value?",
options: [
"np.cos()",
"np.cosh()",
"np.hyperbolic.cos()"
],
correct: 1
}
]