This document provides information about bitwise operators in 3 paragraphs and an example:
Paragraph 1 introduces that the lecture will cover bitwise operators and lists some common ones: ones complement, bitwise AND, bitwise OR, bitwise XOR, left shift, and right shift.
Paragraph 2 gives an example of how bitwise operators work on binary representations of integers 60 and 13.
Paragraph 3 provides a short C code example to demonstrate the bitwise operators, printing the result of applying each operator to variables a and b.