Join Now
Home Aptitude Reasoning DI VA GK CA CA Hindi Quiz Placements
**
^
*
//
What is the output of the following code snippet?
a = 5 b = 2 print(a//b)
2.5
2
3
%
/
What is the output of the following code?
x = 5 y = 2 print(x > y)
1
0
Error
None of the above
==
=
!=
<>
a = 2 b = 5 print(a * b ** 2)
50
35
20
10
a = 5 b = 2 print(a%b)
1.5
a = 5 b = 2 print(a % b)
0.5
a = 10 b = 3 print(a // b)
3.33
a = 10 b = 3 print(a % b)