MCQOPTIONS
Saved Bookmarks
| 1. |
What is the output of the following code? l=[] def convert(b): if(b==0): return l dig=b%2 l.append(dig) convert(b//2) convert(6) l.reverse() for i in l: print(i,end="") |
| A. | 011 |
| B. | 110 |
| C. | 3 |
| D. | Infinite loop |
| Answer» C. 3 | |