Q1. Which of the following is not a bitwise operator?
Explanation
Bitwise operators work directly on the binary representation of values. The left-shift symbol << shifts bits to the left, the right-shift symbol >> shifts bits to the right, and the ampersand & is the bitwise AND operator. A full stop or dot is not a bitwise operator; in many programming contexts it is used for member access or as part of numeric notation, depending on the language. Therefore the dot is the item that does not belong to the set of bitwise operators.
