InterviewSolution
Saved Bookmarks
| 1. |
What gets printed with the following code ? x = True y = False z = False if not x or y : print 1 else if not x or not y and z: print 2 elseif not x or y or not y and x: print 3 else: print 4 |
|
Answer» Gets printed the following code 3. |
|