Answer all questions and submit to see your score.
What is a variable in Python?
What will this print? x = 10 y = "10" print(type(x), type(y))
What is the difference between / and // in Python?
What does 17 % 5 return and why?
When do you use elif instead of a new if?
What will this print? marks = 72 if marks >= 90: print("A") elif marks >= 70: print("B") else: print("C")
What is the difference between a for loop and a while loop?