Computer Science, asked by sohanurrahman1312, 3 months ago

Apply binary AND, OR and X-OR operators between A = 35 and B = 57.​

Answers

Answered by JungJeSoo
2

Answer:

BITWISE OPERATORS are used for manipulating data at the bit level, also called bit level programming. Bitwise operates on one or more bit patterns or binary numerals at the level of their individual bits. They are used in numerical computations to make the calculation process faster.

Following is the list of bitwise operators provided by 'C' programming language:

Operator Meaning

& Bitwise AND operator

| Bitwise OR operator

^ Bitwise exclusive OR operator

~ Binary One's Complement Operator is a unary operator

<< Left shift operator

>> Right shift operator

Bitwise operators cannot be directly applied to primitive data types such as float, double, etc. Always remember one thing that bitwise operators are mostly used with the integer data type because of its compatibility.

Similar questions