Computer Science, asked by TbiaSamishta, 1 year ago

how to do this problem- Assume n=10; what will be result of n>>2

Answers

Answered by aqibkincsem
5

Answer:

"Problem is Assume n=10 so what will be the result of n>>2

Here the memory location will be the same. However, 10 will be overlapped by 2. Therefore, the new value of n will be equal to 2.

It is a computer problem, so you have to understand bitwise operations in order to solve such problems. Then only you will be able to solve it.

"

Explanation:

Similar questions