Class Name: Python Programming and Mongo DB - Online Course
Class Session: Numbers and Operator
Total Questions: 3 | Duration: 5 Mins
1) Which of the following Code gives you the Integer as output? A) print("1 + 2 - 3 * 2 = ", 1 + 2 - 3 * 2) B) print("1 + 2 - 3 * 2 = ", (1 + 2 - 3) * 2) C) print("1 + 2 - 3 * 2 = ", 1 + (2 - 3) * 2) D) print("1 + 2 - 3 * 2 = ", (1 + 2) - 3 * 2) E) All of the Above
2) Python identifiers has maximum possible length. TRUE or FALSE?
3) Write the output of the below code: print("6 ** 3 =", 6**3)