0 of 10 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 10 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)
| Average score |
|
| Your score |
|
What does the following Python code output?
print(8 % 3)
What data type is the result of:
type(1/1)?
Which of the following is a mutable object in Python?
What is the output of the following code?
a = [1, 2, 3]
b = a
b. append(4)
print(a)
What keyword is used to create a function in Python?
What is the output of the following code?
x = True
y = False
print(x and y)
How can you add an item at the end of a list in Python?
What is the correct way to handle exceptions in Python?
What does the continue keyword do in a loop?
Which function can be used to take input from the user in Python?