qobjects = [
{
question: "What is the result of 0110 & 0011?",
options: [
"0010",
"0011",
"1001"
],
correct: 0
},
{
question: "What is the result of 0110 | 0011?",
options: [
"0010",
"0111",
"1001"
],
correct: 1
},
{
question: "What does the XOR (^) operator return when both bits are 1?",
options: [
"0",
"1",
"2"
],
correct: 0
}
]