
You are teaching fundamentals of Python programming language. Create a quiz with ten multiple choice questions with four options and only one correct answer
Quiz by Saikat Das
Feel free to use or edit a copy
includes Teacher and Student dashboards
Measure skillsfrom any curriculum
Measure skills
from any curriculum
Tag the questions with any skills you have. Your dashboard will track each student's mastery of each skill.
With a free account, teachers can
- edit the questions
- save a copy for later
- start a class game
- automatically assign follow-up activities based on students’ scores
- assign as homework
- share a link with colleagues
- print as a bubble sheet
5 questions
Show answers
- Q1What is the keyword used in Python to define a function?definefuncdeffun30s
- Q2What is the purpose of the 'if' statement in Python?To declare a variableTo import a moduleTo print output to the consoleTo control the flow of the program based on a condition30s
- Q3Which of the following is NOT a datatype in Python?booleanfloatstringarrayinteger30s
- Q4What is the difference between a 'list' and a 'tuple' in Python?A tuple can only store one datatype, while a list can store multipleA list is mutable, while a tuple is immutableA list has a fixed length, while a tuple can change in sizeA tuple is a collection of strings, while a list is a collection of integers30s
- Q5What is the purpose of the 'return' statement in a function in Python?To define a new variableTo print output to the consoleTo return a value or values to the calling codeTo declare a loop30s