ClassQuiz
Play
Explore
Search
Docs
GitHub
Register
Log in
Donate
❤️
ClassQuiz
Play
Fun Quiz
A small quiz on basic concepts of Python
Made by
@MakeTechBerry
0
0
6
51
Practice
Download
Report
What is Python?
1: What is Python?
30s
A hardware device
An operating system
A programming language
A database
Which Symbol is used for comments in python?
2: Which Symbol is used for comments in python?
30s
//
#
/**/
--
Which of the following is the correct way to print output in Python?
3: Which of the following is the correct way to print output in Python?
30s
echo("Hello")
printf("Hello")
print("Hello")
cout << "Hello"
What will be the output?print(5 + 3 * 2)
4: What will be the output?print(5 + 3 * 2)
30s
16
11
10
13
Python is case-sensitive.
5: Python is case-sensitive.
20s
True
False
input() always takes integer input by default.
6: input() always takes integer input by default.
20s
True
False
Which of the following is a valid variable name?
7: Which of the following is a valid variable name?
30s
2name
name_2
name-2
class
Which data type is used to store True or False?
8: Which data type is used to store True or False?
30s
int
str
bool
float
Which company created Python?
9: Which company created Python?
30s
Google
Microsoft
Python Software Foundation
Guido van Rossum