& operator is show the
1.and
2.or
3.mode
4.binary
<< operator is replace by
1.lshift()
2.more()
3.ls()
4.rs()
>> operator is replace by
1.rshift()
2.more()
3.ls()
4.rs()
AND is shown by which of the operator ?
1.|
2.%
3./
4.None of the above
From which of the following? , the output will be 32
1.print(64//2)
2.print(65//2)
3.Both of the above
4.print(66//2)
or() is replaced by which of the following operator ?
1.&
2.%
3.|
4./
print(100 & 4)
1.100
2.4
3.1
4.Error
print(1000&300&234)
1.1000
2.401
3.40
4.4
print(1000&300)
1.1000
2.300
3.296
4.1
print(1000<300)
1.1000
2.3000
3.300
4.None of the above
print(1000==300)
1.True
2.False
3.Error
4.None of the above
print(1000>300)
1.1000
2.300
3.True
4.false
print(1000|300&234)
1.1000
2.300
3.234
4.False
print(1000|300)
1.1000
2.1004
3.300
4.296
print(1000|300|234)
1.1000
2.1004
3.1006
4.1008
print(1000||300)
1.1000
2.300
3.0
4.Error
print(100>>4)
1.100
2.6
3.4
4.8
print(100|4)
1.100
2.4
3.0
4.1
print(10<50 & 300)
1.True
2.False
3.Error
4.None of the above
print(10=10)
1.True
2.False
3.Error
4.None of the above
print(10>10<20==9)
1.True
2.False
3.Error
4.None of the above
print(121--1000&300&234%23++1//4)
1.1
2.0
3.1000
4.Error
print(121--1000&300&234++1//4)
1.1
2.0
3.32
4.23
print(237//7)
1.32
2.33
3.43
4.12
print(2<<1)
1.1
2.2
3.3
4.4
print(2>>3)
1.1
2.2
3.0
4.3
print(3--5) will give
1.5
2.3
3.8
4.Error
print(4**2) will show ?
1.12
2.16
3.8
4.Error
print(4*5)
1.0
2.2
3.1
4.None of the above
print(4++2) will show
1.6
2.4
3.2
4.Error
print(4//2) will show ?
1.4
2.1
3.2
4.3
print(45%4)
1.0
2.1
3.2
4.3
print(4<<2)
1.2
2.3
3.4
4.16
print(50&&4)
1.50
2.4
3.0
4.Error
print(50&4)
1.50
2.4
3.1
4.0
print(9//2)
1.4
2.5
3.4.5
4.None of the above
print(print(45&34))
1.45
2.34
3.45 None
4.32 None
print(print(45+3))
1.48
2.None
3.48 none
4.Error
print(print(print(print(print(45))))), How many time it will print the None in output ?
1.0
2.1
3.3
4.4
What is the use of the % operator ?
1.To find the division
2.To find the remainder
3.To find the power
4.Nothing
What is the use of the ** operator ?
1.Multiplication
2.Sqaure
3.Double multiple
4.Power
What will be output of the following program ? print(3%4)
1.3
2.4
3.1
4.Error
What will it show ?, print(64%2)
1.32
2.0
3.1
4.2
What will the output of the following program, print(//)
1.0
2.1
3.2
4.Error
Which of the following is not correct ?
1.a=a+1
2.a+=1
3.a=+1
4.a++
Which of the following is not valid operator in the python
1.&
2.|
3.++
4.**
Which of the following line gives a true output ?
1.print(10>9)
2.print(20=20)
3.print(3<2)
4.1 and 2
Which of the following operator is valid in the python ?
1.**
2.&
3.|
4.All of the above
Which type of behavior is shown by the | operator ?
1.and
2.or
3.division
4.power
Which type of operator is not supported in the python programming language ?
1.a++
2.a--
3.++a
4.All of the above