1.27 Bitwise Operators Left and Right Shift

Duration: 4 min

This video lesson is available to enrolled students.

Enroll to watch — DSSSB TGT Computer Science 2026 Section B

AI Summary

An AI-generated summary of this video lecture.

This video is a lecture on bitwise operators in Python, focusing on left and right shift operations. The instructor begins by introducing the topic and then demonstrates the left shift operator using the variable 'a = 10'. He explains that a left shift by 'n' positions is equivalent to multiplying the number by 2 to the power of 'n' (a * 2^n). He provides several examples, showing that a << 1 equals 20, a << 2 equals 40, and so on. The lecture then transitions to the right shift operator, using the variable 'b = 10'. The instructor explains that a right shift by 'n' positions is equivalent to dividing the number by 2 to the power of 'n' (a / 2^n), with integer division. He demonstrates this with examples like b >> 1 equals 5, b >> 2 equals 2, and b >> 3 equals 1. The video concludes with a summary of the concepts.

Chapters

  1. 0:00 2:00 00:00-02:00

    The video starts with a title slide for a lecture on 'Bitwise Operators' with a focus on 'Left and Right Shift'. The instructor, standing in front of a digital whiteboard, begins the lesson by writing 'a = 10' and then proceeds to write a series of Python print statements: 'print(a << 1)', 'print(a << 2)', 'print(a << 3)', and 'print(a << 4)'. He then writes 'Left shift' and explains the concept, writing the formula 'a << n = a * 2^n' on the board. He demonstrates the first example, writing 'print(a << 1) => 10 * 2^1 = 20'. He continues to write out the calculations for the next two examples, showing 'print(a << 2) => 10 * 2^2 = 40' and 'print(a << 3) => 10 * 2^3 = 80'. He then writes the final example, 'print(a << 4) => 10 * 2^4 = 160'. The instructor is actively writing and explaining the concepts throughout this segment.

  2. 2:00 3:37 02:00-03:37

    The instructor transitions to the right shift operator. He erases the previous content and writes 'b = 10' and 'Right shift'. He then writes a series of print statements: 'print(b >> 1)', 'print(b >> 2)', 'print(b >> 3)', and 'print(b >> 4)'. He explains that a right shift is equivalent to division by 2^n, writing the formula 'a >> n = a / 2^n'. He demonstrates the first example, writing 'print(b >> 1) => 10 * 1/2 = 5'. He continues with the next example, writing 'print(b >> 2) => (10 * 1/2) => 5 * 1/2 => 2.5 => 2', noting the integer division. He then writes 'print(b >> 3) => 10 * 1/2^3 => 10/8 => 1'. For the final example, he writes 'print(b >> 4) => 10 * 1/2^4 => 10/16 => 0'. The instructor concludes the lesson by summarizing the concepts and saying 'Thank You'. The video ends with the instructor speaking to the camera.

The lecture provides a clear and structured explanation of bitwise shift operators in Python. It begins with the left shift operator, using a variable 'a = 10' to demonstrate that shifting left by 'n' bits is equivalent to multiplying by 2^n. The instructor uses a step-by-step approach, writing out the calculations for each example. The lesson then logically transitions to the right shift operator, using a similar variable 'b = 10' to show that shifting right by 'n' bits is equivalent to dividing by 2^n, with the result being truncated to an integer. The use of concrete examples and the explicit formula for each operation makes the concepts easy to understand and apply.