InterviewSolution
Saved Bookmarks
| 1. |
What gets printed with the following code ?x = True y = False z = False if x or y and z : print “yes” else: print “no |
|
Answer» Get printed the code yes. |
|