InterviewSolution
Saved Bookmarks
| 1. |
What gets printed?x = 0y = la = cmp(x,y)if a < x:print “a”else if a = = x:print “b”else:print “c” |
|
Answer» The output is: a |
|