Open In App

C Quiz – 103 | Question 1

Like Article
Like
Save Article
Save
Share
Report issue
Report

For a given integer, which of the following operators can be used to “set” and “reset” a particular bit respectively?
(A) | and &
(B) && and ||
(C) & and |
(D) || and &&


Answer: (A)

Explanation: Bitwise operator | can be used to “set” a particular bit while bitwise operator & can be used to “reset” a particular bit. Please note that && and || are logical operators which evaluate their operands to logical TRUE or FALSE. It should be noted that bitwise operator & can be used for checking a particular bit also i.e. whether a bit is set or not.

So correct answer it A.

Quiz of this Question


Last Updated : 28 Jun, 2021
Like Article
Save Article
Previous
Next
Share your thoughts in the comments
Similar Reads