About the Test
☑ The test is 8 questions.
☑ You have 25 minutes to submit your answers. Otherwise, the test will be submitted automatically.
☑ A timer on the top of the questions table is shown to remind you of the remaining minutes.
☑ By the end of the test, you will see your result and check all questions and their answers.
☑ To start the test, scroll down and click on “Start Quiz.”
0 of 8 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 8 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)
What is the order of precedence in python?
i) Parentheses
ii) Exponential
iii) Multiplication
iv) Division
v) Addition
vi) Subtraction
which of the following is the output of the following line of code?
print(5 % 3)
What will be the output of the following Python code?
i = 1 while True: if i%3 == 0: break print(i) i = i+ 1
What will be the output of the following Python code?
d = {0, 1, 2} for x in d: print(x)
What will be the output of the following Python statement?
print(“a”+“bc”)
What arithmetic operators cannot be used with strings?
In a Python program, a control structure:
Which is the correct operator for power(xy)?