McqMate
Sign In
Hamberger menu
McqMate
Sign in
Sign up
Home
Forum
Search
Ask a Question
Sign In
McqMate Copyright © 2025
→
Computer Science Engineering (CSE)
→
Python Programming
→
What is the output of the expression : 3...
Q.
What is the output of the expression : 3*1**3
A.
27
B.
9
C.
3
D.
1
Answer» C. 3
1.6k
0
Do you find this helpful?
11
View all MCQs in
Python Programming
Discussion
No comments yet
Login to comment
Related MCQs
What is the output of the following code : print 9//2
What is the output of the following program : i = 0 while i < 3: print i print i+1
What is the output of the following program : print 0.1 + 0.2 == 0.3
What is the output of the following program : def myfunc(a): a = a + 2 a = a * 2 return a print myfunc(2)
What is the output of the following program : print '{0:.2}'.format(1.0 / 3)
What is the output of the following program : print '{0:-2%}'.format(1.0 / 3)
What is the output of the following program : i = 0 while i < 3: print i i += 1 else: print 0
What is the output of the following program : i = 0 while i < 5: print(i) i += 1 if i == 3: break else: print(0)
What is the output of the following program : print 'cd'.partition('cd')
What is the output of the following program : print 'abcefd'.replace('cd', '12')