qobjects = [
{
question: "What will be the result of the following code:x = lambda a, b : a - b",
options: [
"
print(x(5, 3))15",
"8",
"3",
"2"
],
correct: 3
},
{
question: "True or False: Lambda functions can take multiple arguments.",
options: [
"True",
"False"
],
correct: 0
},
{
question: "True or False: Lambda functions can have multiple expressions.",
options: [
"True",
"False"
],
correct: 1
},
{
fillintheblanks: "exercise_lambda1.htm"
}
]