// general

General Quiz

// question 1 of 10
What does __del__ define?
// question 2 of 10
What is printed? if True or False: print(""A"")?
// question 3 of 10
What is printed? s={1,2,3}
// question 4 of 10
What type is True?
// question 5 of 10
What is printed? def f(): return True ; print(f())?
// question 6 of 10
What is the result of bool(0)?
// question 7 of 10
What does union() do?
// question 8 of 10
What is printed? def f(x): return x != 0 ; print(f(0))?
// question 9 of 10
What does random.choice(""abc"") return?
// question 10 of 10
What is printed? if 5 > 3: print(""Yes"")?