Join Now
Home Aptitude Reasoning DI VA GK CA CA Hindi Quiz Placements
//
%
/
*
What is the output of the following code snippet?
a = 3 b = 3 print(a is b)
1
0
Syntax Error
None of the above
a = 10 b = 5 print(a>b or a/b==2)
Which operator is used for concatenation of two strings in Python?
+
-
What is the output of the following code?
a = 5 b = 2 print(a % b)
2.5
2
0.5
a = 10 b = 5 print(a>b and a/b==2)
a = 2 b = 3 print(a ** b)
5
6
8
9
a = 2 b = 3 print(a**b)
27
a = 10 b = 3 print(a % b)
3
10
a = 5 b = 2 print(a//b)