What will be the output of the following expression
x=14 print(x>>2)
निम्नलिखित एक्सपरशन का आउटपुट क्या होगा
hear >> bitwise right shift operator which perform the Right shift Operation:
x=14
in binary 14 is 1110
now when we shift 2 bits to the right then value become 0011
now 0011 is convert in decimal which is equivalent to 3, so the answer is 3