Python Basic Quiz #8 – OperatorsAsha PonrajJanuary 22, 2022 Welcome to your Python Basic Quiz #8 - Conditionals & Boolean values User Name Email 1. What will be the output of the below code? print(1)if(True & False): print(2)print(3) Value Error 123 13 2. What will be the output of the below code? print("Start")if((4 < 5) or (4 == 5)): print("Success")print("End") Start Value Error Start End Start Success End 3. What will be the output of the below code? print(1)if(False == False): print(2)print(3) Value Error 123 13 4. Which of the following code is not correct? if(10 < 100): print("Success") if(10 < 100): print("Success") if(10 < 100): print("Success") 5. Fill in the correct operators in the blank place. x = 10if x __ 0: print("Value is greater than 0.")elif x __ 0: print("Value is less than 0.")else: print("Value is Zero.") >= and <= > and < 1 out of 1 Time is Up! Time's up