
Revision
Quiz by Purnima Mongar
Feel free to use or edit a copy
includes Teacher and Student dashboards
Measure skillsfrom any curriculum
Tag the questions with any skills you have. Your dashboard will track each student's mastery of each skill.
- 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
- Q1
1. Who developed Python Programming Language?
Guido van Rossum
Niene Stom
Wick van Rossum
Rasmus Lerdorf
30s - Q2
2.Is Python case sensitive when dealing with identifiers?
no
yes
none of the mentioned
machine dependent
30s - Q3
3.Which of the following is the correct extension of the Python file?
.p
.pl
.py
.python
30s - Q4
4. Which of the following character is used to give single-line comments in Python?
//
#
/*
\n
30s - Q5
5. What data type would you use to store a whole number in Python?
float
int
str
bool
30s - Q6
6. What will be the data type of the variable x after this assignment:x = 3.5?
str
complex
float
int
30s - Q7
7. Which function in Python is used to display data as output?
output()
print()
display()
input()
30s - Q8
8. What will be the output of
print("Python","Programming", sep="-")
Python,Programming
PythonProgramming
Python Programming
Python-Programming
30s - Q9
9. Identify the error print("Hello World!"))
Missing parenthesis
No error
Extra parenthesis
Missing quotation marks
30s - Q10
10.
What is the data types of any variable which holds the value 'hello world' ?integer
string
float
set
30s