22. What will be the output of the following Python code if the system date is 21st June, 2017 (Wednesday)?
[] or {}
{} or []
						
					[] or {}
{} or []23. What is the result of `(8 >> 2) | (1 << 2)` ?
						
					24. What is the result of True & False ?
						
					25. Which of the following expressions results in an error?
						
					26. What will be the output of the following Python code snippet if x=1?
x<<2
						
					x<<227. What is the result of `True | False` ?
						
					28. What is the value of the following Python expression?
bin(0x8)
						
					bin(0x8)29. What will be the value of the following Python expression?
bin(10-2)+bin(12^4)
						
					bin(10-2)+bin(12^4)