Q124
What will be the output of the following Python 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
AnswerC.
3
D.
Infinite loop
Answer: Option B
Solution
Answer: Option B
No explanation is given for this question Let's Discuss on Board