qobjects = [
{
question: "What will be the result of the following code:print(int(35.88))",
options: [
"35",
"35.88",
"36"
],
correct: 0
},
{
question: "What will be the result of the following code:print(float(35))",
options: [
"35",
"35.0",
"0.35"
],
correct: 1
},
{
question: "What will be the result of the following code:print(str(35.82))",
options: [
"35",
"35.8",
"35.82"
],
correct: 2
},
]