qobjects = [
{
question: "What is a correct syntax for converting degrees into radians?",
options: [
"np.deg2rad()",
"np.degtorad()",
"np.degrad()"
],
correct: 0
},
{
question: "What is the correct formula to convert 50 degrees into radians?",
options: [
"np.pi / 180 * 50",
"np.pi / 50 / 180",
"180 * np.pi / 50"
],
correct: 0
},
{
question: "What is a correct syntax for finding the hypotenues?",
options: [
"np.hyp()",
"np.hypotenues()",
"np.hypot()"
],
correct: 2
}
]