19) What will be the output of the following python code? n = 10 y = 15 X = 30 if n > 5: if y > n: a) b) c) d) e) else:
Posted: Fri Jul 01, 2022 5:39 am
19) What will be the output of the following python code? n = 10 y = 15 X = 30 if n > 5: if y > n: a) b) c) d) e) else: if x = 30: print("x = 30") print("x not 30") print("y less than n") else: else: print("n less than 5") y less than n x = 30 x not 30 n less than 5 No Output