// general

General Quiz

// question 1 of 10
What is the result of bool("""")?
// question 2 of 10
What is the output of: {x for x in [1,2,2,3,3]}?
// question 3 of 10
What does statistics.mean([2 4 6]) return?
// question 4 of 10
What does math.factorial(4) return?
// question 5 of 10
What function returns a random integer?
// question 6 of 10
What is the output of len(shelter) if __len__ returns len(self.animals)?
// question 7 of 10
What is the output of: max([3, 1, 4, 1, 5])?
// question 8 of 10
What does the col_index reset mechanism do in ADFGVX transposition?
// question 9 of 10
What is printed? def f(x): return x%2 ; print(f(5))?
// question 10 of 10
What is printed? x=1 ; def f(): global x ; x=3 ; f() ; print(x)?