1. Question: Which of the following is NOT an arithmetic operator?

    A
    +

    B
    -

    C
    *

    D
    &

    Note: The & operator is a bitwise operator, not an arithmetic operator.
    1. Report
  2. Question: What is the output of 10 / 2 * 3?

    A
    15

    B
    5

    C
    20

    D
    30

    Note: The operations are performed left to right; first division, then multiplication.
    1. Report
  3. Question: Which operator is used for bitwise left shift?

    A
    <<

    B
    >>

    C
    |

    D
    &

    Note: The << operator shifts bits to the left.
    1. Report
Copyright © 2024. Powered by Intellect Software Ltd