Home / C Programming / Bitwise Operators :: Discussion

Discussion :: Bitwise Operators

  1. Left shifting a number by 1 is always equivalent to multiplying it by 2.

  2. A.
    True
    B.
    False

    View Answer

    Workspace

    Answer : Option A

    Explanation :

    0001 => 1
    0010 => 2
    0100 => 4
    1000 => 8


Be The First To Comment