Question: Write a Python function right_shift(num,n) that takes two numbers num and n as arguments and returns the value of the integer num rotated to the
Write a Python function right_shift(num,n) that takes two numbers num and n as arguments and returns the value of the integer num rotated to the right by n positions. Assume both the numbers are unsigned. Invoke the function and print the return value.
Hint: use >> binary operator to shift the bits.
Example: num=60, n=2 result =15
Step by Step Solution
There are 3 Steps involved in it
1 Expert Approved Answer
Step: 1 Unlock
Question Has Been Solved by an Expert!
Get step-by-step solutions from verified subject matter experts
Step: 2 Unlock
Step: 3 Unlock
