Post

@Python_Dv Nothing is printed.
Step by step:
› x > y → 7 > 3 → True
› not True → False
› Condition is False → ifblock skipped
› Nothing prints
For beginners: "not" flips the boolean! not True = False, not False = True.
English

@Python_Dv C) None
x > y is True (7 > 3)
not True = False
So the if block never runs.
Nothing prints. The code just stares at you silently like your bugs at 3am 💀
English

@Python_Dv Check the condition:
x>y --> 7>3 --> True
Apply not:
not True --> False
So the if condition is False, and the print(x) line does not run.
Ans--> C) None
English

@Python_Dv if C: None means nothing being printed then that.
as nothing would be printed.
English

@Python_Dv Output: (no output)
If you must pick from the options given, the closest is C) None (meaning “nothing printed”), but technically the program prints nothing
English

@Python_Dv Here is my answer in #yoruba a language spoken by #Nigerians in the South West. My custom IDE supports multiple languages. Give it a shot.
English

@Python_Dv C) None — condition false hai, so no output 👍
English

@Python_Dv C) None
'x > y' is true, so 'not x > y' is false. The print statement doesn't run.
English

















