Short Quiz 2 – Operators Welcome to your Short Quiz 2 – Operators 1. What is the output of following line of code num1 = 15num2 = 7result = num1 & num2 15 7 22 8 2. What is the output of following line of code num1 = 15num2 = 7result = num1 | num2 15 7 22 8 3. What is the output of following line of code num1 = 15num2 = 7result = num1 ^ num2 15 7 22 8 4. What is the output of following line of code num1 = 15num2 = 7result = ~ num1 15 7 -16 8 5. What is the result of print(0b1010) 1010 8 10 0b1010 6. What is the result of print(0xFF) FF 255 256 0xFF 7. Python is High level programming language Low level programming language Machine level programming language None of these 8. Python is High level programming language Dynamic semantics language Interpreted language All of these 9. Python is Interpreted language Compiled language None of these Both 1 and 2 10. What is the output of below code x = 10print(bin(x)) 10 'bin(10)' '0b1010' 2 Time's up