Total Ten Questions. Each Carry Two Marks.
Total Time 20 Min
Quiz Summary
0 of 10 Questions completed
Questions:
Information
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:
Results
Results
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)
Categories
- Not categorized 0%
-
If You score less than 16 Marks.
Watch the videos Again.
Take the test Again.
- 1
- 2
- 3
- 4
- 5
- 6
- 7
- 8
- 9
- 10
- Current
- Review
- Answered
- Correct
- Incorrect
-
Question 1 of 10
1. Question
What is the output displayed by below code?
a=5
b=5
c=5
d=2
e=5
print(a+b*c**d/e)CorrectIncorrect -
-
Question 2 of 10
2. Question
What is the output displayed by below code?
a=16
b=15
c=32
print(c|b&a)CorrectIncorrect -
-
Question 3 of 10
3. Question
What is the output displayed by the below code?
a=5
b=5
c=5
print(a<=b is c)CorrectIncorrect -
-
Question 4 of 10
4. Question
What is the output displayed by below code?
a=5
b=16
c=4
d=6
e=2
f=3
g=4
h=2
i=1
print(a+(b+c*d*e/f)/g**(h*i))CorrectIncorrect -
-
Question 5 of 10
5. Question
What is the output displayed by the below code?
a=+5
b=-5
c=2
print(a-b+~c)CorrectIncorrect -
-
Question 6 of 10
6. Question
What is the output displayed by the below code?
a=5
b=6
c=7
print(not a>b or c>b and aCorrectIncorrect -
-
Question 7 of 10
7. Question
What is the output displayed by below code?[Give answers with a space separator]
a=5
b=6
c=7
a,b,c=b,c,a
print(a,b,c)CorrectIncorrect -
-
Question 8 of 10
8. Question
What is the output displayed by the below code?
a=20
b=2
print(a>>b and True)CorrectIncorrect -
-
Question 9 of 10
9. Question
What is the output displayed by the below code?
a=5
b=7
c=2
a+=c**2**2**2
print(a)CorrectIncorrect -
-
Question 10 of 10
10. Question
What is the output displayed by below code?
a=10
b=5
c=20
d=3
e=3
f=6
print(a//b+c//d*e%f)CorrectIncorrect -