Home > Coding Fundamentals Refresher > Intermediate Coding Patterns > Bitwise Operators and Bit Manipulation for Interviews Show previous contentTry this exercise. Is this statement true or false?Consider a = 110, b = 001. The results for a & b and a | b will be different, but a | b and a ^ b will be same.Press true if you believe the statement is correct, or false otherwise.TRUEFALSE Show following content