What is the output of the following code ?
print(bin(23-3)+bin(35-5))
bin(20) will be converted to 0b110010 and bin(30) to 0b11110Concatenating both gives 0b101000b11110 on console
bin(20)
bin(30)
Comment here: