Home / C Programming / Bitwise Operators :: General Questions

C Programming :: Bitwise Operators

  1. In which numbering system can the binary number 1011011111000101 be easily converted to?

  2. A.
    Decimal system
    B.
    Hexadecimal system
    C.
    Octal system
    D.
    No need to convert

    View Answer

    Workspace

    Discuss Discuss in Forum


  3. Which bitwise operator is suitable for turning off a particular bit in a number?

  4. A.
    && operator
    B.
    & operator
    C.
    || operator
    D.
    ! operator

    View Answer

    Workspace

    Discuss Discuss in Forum


  5. Which bitwise operator is suitable for turning on a particular bit in a number?

  6. A.
    && operator
    B.
    & operator
    C.
    || operator
    D.
    | operator

    View Answer

    Workspace

    Discuss Discuss in Forum


  7. Which bitwise operator is suitable for checking whether a particular bit is on or off?

  8. A.
    && operator
    B.
    & operator
    C.
    || operator
    D.
    ! operator

    View Answer

    Workspace

    Discuss Discuss in Forum