What is the output of the following ?
print("78.0 % 3")
What is the precedence of python operators ?
1. Boolean
2. Multiplication
3. Parentheses
4. Subtraction
What is the output of the following code ?
print(243.00 % 4)
What is the output for the following code ?
print(5*2**4)
How do you represent or declare Infinity in python ?
What is the output of the following code ?
print(10/9*(4-3) == 10/(9*(4-3)))
What is the output of the following code ?
print(3 ** 4 ** 2)
What is the output of the following code ?
print(128 / 16 / 2, (128 / 16) / 2, 128 / (16 / 2))
What is the output of the following code ?
print(72 // 13 % 7, 72 * 13 // 7)
What is the output of the following code ?
print(0x78 | 0x23)