0 votes
in Python by
Read the below program code carefully,

int1 = 0b0010   

print(int1)    

What will be the output of this program?

a) 0b0010

b) 2

c) NameError: name '0b0010' is not defined

d) SyntaxError

1 Answer

0 votes
by

b) 2

Related questions

0 votes
asked Sep 25, 2021 in Python by john ganales
0 votes
asked Sep 25, 2021 in Python by john ganales
...