// general

General Quiz

// question 1 of 10
What is printed? print(3 in {1,2,3})
// question 2 of 10
What is a list?
// question 3 of 10
What is printed? if True: print(""A"")?
// question 4 of 10
What is printed? def f(): return ; print(f())?
// question 5 of 10
What is the result of ""3"" + ""2""?
// question 6 of 10
What is the difference between a class and an object?
// question 7 of 10
What does strptime("2025-04-07", "%Y-%m-%d") return?
// question 8 of 10
What is printed? x=10 ; def f(): print(x+5) ; f()?
// question 9 of 10
How do you call a function named test?
// question 10 of 10
What is printed? if not False: print(""Yes"")?