evaluate the following
Attachments:
Answers
Answered by
2
Answer:
a) True
b) False
Explanation:
a) % operator returns datatype int.
and for a value to be equal to another in python thier datatypes as well as magnitudes must match.
Which is the case here since % operator converts them to int here.
b) It basically states that
False or not (True or False)
= False or not (True)
= False or False
= False
Similar questions