Python Quiz 52 #pythonquiz #learningoperators

preview_player
Показать описание
In Python,
What will be the output of x & y in the following code?

x = 13 (1101 in binary)
y = 7 (0111 in binary)

a) 5
b) 9
c) 14

Bitwise Operators #pythonoperators #learningpython #python