Test your python Knowledge
1 / 15
1.Who developed Python Programming Language?
2 / 15
2. Is Python case sensitive when dealing with identifiers?
3 / 15
3. Which keyword is used for function in Python language?
4 / 15
4. Which of the following character is used to give single-line comments in Python?
5 / 15
5.What will be the output of the following Python code?
i = 1 while True: if i%3 == 0: break print(i)
i + = 1
6 / 15
6.Which of the following functions can help us to find the version of python that we are currently working on?
7 / 15
7.What does pip stand for python?
8 / 15
8.What are the values of the following Python expressions?
2**(3**2) (2**3)**2 2**3**2
9 / 15
9. Which of the following functions is a built-in function in python?
10 / 15
10. Which of the following is not a core data type in Python programming?
11 / 15
11.Which module in the python standard library parses options received from the command line?
12 / 15
12.What arithmetic operators cannot be used with strings in Python?
13 / 15
13. Which of the following statements is used to create an empty set in Python?
14 / 15
14.To add a new element to a list we use which Python command?
15 / 15
15. What are the two main types of functions in Python?
Your score is
The average score is 10%
Restart quiz