52. What is the result of not (3 < 5) ?
						
					53. What is the result of `12 | 10 & 9` ?
						
					54. It is not possible for the two's complement value to be equal to the original value in any case.
						
					55. Bitwise . . . . . . . . gives 1 if either of the bits is 1 and 0 when both of the bits are 1.
						
					56. What is the result of 5 & 6 ^ 6 ?
						
					57. What is the result of 12 >> 2 ?
						
					58. What is the result of `10 & 5 | 5` ?
						
					59. What will be the output of the following Python code?
class Truth:
	pass
x=Truth()
bool(x)
						
					class Truth:
	pass
x=Truth()
bool(x)60. What will be the output of the following Python expression?
~100?
						
					~100?