42. What will be the output of the following Python code?
['f', 't'][bool('spam')]
						
					['f', 't'][bool('spam')]43. What will be the output of the following Python expression?
0x35 | 0x75
						
					0x35 | 0x7544. What is the result of ~(7 ^ 2) ?
						
					45. What will be the output of the following Python expression if x=15 and y=12?
x & y
						
					x & y46. What is the result of 5 ^ 5 ?
						
					47. What will be the output of the following Python expression?
int(1011)?
						
					int(1011)?48. What will be the output of the following Python expression?
bin(29)
						
					bin(29)