Your question is Check the Second Bit. Start with the requirements on the right.
Run and submit as often as you like. When you're ready, talk me through your approach or go straight to the code.
A Siemens Healthineers imaging component stores status values as integers. Write a function that determines whether the second bit is set to 1.
For this problem, bit positions are counted from the least significant bit, starting at position 0. Therefore, the second bit means bit position 1, which has the mask 0b10 or decimal 2.
Return True when bit position 1 is set, and False otherwise. Use bitwise operations rather than converting the integer to a string or examining individual decimal digits.
Implement is_second_bit_set(value), where value is a non-negative integer. The function returns a Boolean.
def is_second_bit_set(value):