This blog helps you to learn basics to high level Python programming practicals.
A. True B. False C. both True and False D. none of these
a, b, c = 5, 1, 15 if (a < b) and (a < c): print("A is minimum") elif (b < a) and (b < c): print("B is minimum") else: print("C is minimum")
A. A is minimum B. B is minimum C. C is minimum D. none of these
if(4-6): print("Android") else: print("Linux") A. Android B. Linux C. Error D. none of these
A. AAA B. BBB C. CCC D. none of these
A. Pass B. Fail C. Syntax Error D. none of these
No comments:
Post a Comment