What is the output of the following ?
>>> a = 4.5
>>> b = 2
>>> print( a // b)
What is the output of the following code ?
print(int(76.66+9/4))
What is the output of the following code ?
print(float(6+int(6.77)% 5))
Which is an example of explicit type conversion ?
Which is an example of implicit type conversion ?
What is the output of the following code ?
print(int('101010', 2))
Which of the following results in an error ?
What is the output of the following code ?
print(bin(23-3)+bin(35-5))
What is the output of the following code ?
>>> a = 13
>>> b = 14
>>> a & b
What is the output of the following code ?
>>> 0x23 | 0x45