// general

General Quiz

// question 1 of 10
Which brackets create a list?
// question 2 of 10
What values does range(3) produce?
// question 3 of 10
What gives the current date and time?
// question 4 of 10
What is printed? def f(): print(""Hi"") ; print(f())?
// question 5 of 10
What does math.gcd(8 12) return?
// question 6 of 10
What happens after return?
// question 7 of 10
What is the result of ""abc""[::2]?
// question 8 of 10
What is the result of 10 // 3?
// question 9 of 10
What is printed? if 10 > 5: print(""Big"") else: print(""Small"")?
// question 10 of 10
What happens with print(unknown_var)?