Which operator has highest precedence in python and what is its associativity?
Day 4

Quiz
•
Computers
•
12th Grade - University
•
Medium
Uday Sk
Used 1+ times
FREE Resource
10 questions
Show all answers
1.
MULTIPLE CHOICE QUESTION
20 sec • 5 pts
Exponent(**), Left-to-Right
Exponent(**), Right-to-left
Multiplication- left-to-right
Multiplication-Right-to-Left
Answer explanation
Exponent operator (**) has the highest precedence in python with associativity from left to right
2.
MULTIPLE CHOICE QUESTION
3 mins • 5 pts
print(6 & 2)
what will be the result of the following?
3
2
1
4
Answer explanation
6 - 110
3 - 011
----------
&-010 => 2
3.
MULTIPLE CHOICE QUESTION
30 sec • 5 pts
print(7 | 2)
what will be the output?
2
6
7
8
Answer explanation
7 - 111
2 - 010
--------
| - 1 1 1 => 7
--------
4.
MULTIPLE CHOICE QUESTION
30 sec • 5 pts
a = 1 1 0 1
b = 1 0 1 0
what will be a^b?
1111
0111
1110
0000
Answer explanation
In bitwise xor operation, the result will be 0 if the operands are same and 1 if the operands are diferent.
5.
MULTIPLE CHOICE QUESTION
5 mins • 5 pts
a = 5 (101 in binary)
what will be a<<3, when is it is 32-bit representation?
20
40
80
120
Answer explanation
in 16-bit representation, 5 in binary can be represented as:
5 => 0000000000000101
5 << 3 will be
0000000000101000
which is equal to 40
6.
MULTIPLE CHOICE QUESTION
1 min • 5 pts
a = 5
b = 3
a-=2
print(a is not b)
true
True
False
TRUE
Answer explanation
a becomes 3 when a = a-2
b = 3.
so, both will share same memory space. Hence a is not b will return False
7.
MULTIPLE CHOICE QUESTION
30 sec • 5 pts
print("hello" is str)
what will be the output?
True
False
Error
Answer explanation
"is" operator cannot be used with string literals
Error is :
SyntaxWarning: "is" with a literal. Did you mean "=="? print("hello" is str)
Create a free account and access millions of resources
Similar Resources on Quizizz
15 questions
Quiz on String

Quiz
•
12th Grade
15 questions
list in python

Quiz
•
10th - 12th Grade
15 questions
Python Revision Tour - I

Quiz
•
12th Grade
15 questions
Python Basics

Quiz
•
University
10 questions
Python Sets

Quiz
•
University
10 questions
basic programming quiz

Quiz
•
University
11 questions
Python Quiz

Quiz
•
12th Grade
10 questions
Java Code Tracing Practice A

Quiz
•
9th - 12th Grade
Popular Resources on Quizizz
15 questions
Multiplication Facts

Quiz
•
4th Grade
20 questions
Math Review - Grade 6

Quiz
•
6th Grade
20 questions
math review

Quiz
•
4th Grade
5 questions
capitalization in sentences

Quiz
•
5th - 8th Grade
10 questions
Juneteenth History and Significance

Interactive video
•
5th - 8th Grade
15 questions
Adding and Subtracting Fractions

Quiz
•
5th Grade
10 questions
R2H Day One Internship Expectation Review Guidelines

Quiz
•
Professional Development
12 questions
Dividing Fractions

Quiz
•
6th Grade
Discover more resources for Computers
67 questions
Course Recap Ptho May25

Quiz
•
University
10 questions
Juneteenth: History and Significance

Interactive video
•
7th - 12th Grade
8 questions
"Keeping the City of Venice Afloat" - STAAR Bootcamp, Day 1

Quiz
•
9th - 12th Grade
20 questions
Understanding Linear Equations and Slopes

Quiz
•
9th - 12th Grade
6 questions
Railroad Operations and Classifications Quiz

Quiz
•
University