0 of 20 Questions completed
Questions:
You have already completed the quiz before. Hence you can not start it again.
Quiz is loading…
You must sign in or sign up to start the quiz.
You must first complete the following:
0 of 20 Questions answered correctly
Your time:
Time has elapsed
You have reached 0 of 0 point(s), (0)
Earned Point(s): 0 of 0, (0)
0 Essay(s) Pending (Possible Point(s): 0)
1. python was released publicaly in
2. Who created python?
3. python is said to be easily
4. Which of the following statements is true?
5. What is used to define a block of code (body of loop, function etc.) in Python?
6. Match the following
Data types |
Flow Control |
Objects |
7. Which of the following is correct?
8. In the following code, n is a/an _______?
n = ‘5’
9. What is the output of the following code?
print(1, 2, 3, 4, sep=’*’)
10. What is used to take input from the user in Python?
11. What is the output of the following code?
numbers = [2, 3, 4]
print(numbers)
12. What is the output of the following code?
print(3 >= 3)
13. The statement using and operator results true if _______
14. Python files are saved with the extension as …?
15. Which of the following is an assignment operator in Python?
16. Comments in Python begin with …?
17. For which type of error does the interpreter halts and reports the error
but does not execute the program?
18. For which type of error does the interpreter halts and reports the error
but does not execute the program?
19. For which type of error does the interpreter runs the program but halts
at error and reports the error as an “Exception”?
20. For which type of error does the interpreter runs the program and does
not report an error?