What is the output of the following line of code typed into a Python interactive session? >>> print(bin(0b101010 ^0b1110
Posted: Mon Aug 01, 2022 9:35 am
What is the output of the following line of code typed into a Python interactive session?
>>> print(bin(0b101010 ^0b111000))
A. 0b10101
B. 18
C. 0b10010
D. 0b101101
>>> print(bin(0b101010 ^0b111000))
A. 0b10101
B. 18
C. 0b10010
D. 0b101101