Binary Shifts (OCR GCSE Computer Science)

Revision Note

Robert Hampton

Written by: Robert Hampton

Reviewed by: James Woodhouse

Binary Shifts

What is a binary shift?

  • A binary shift is how a computer system performs basic multiplication and division

  • Binary digits are moved left or right a set number of times

  • A left shift multiplies a binary number by 2 (x2)

  • A right shift divides a binary number by 2 (/2)

  • A shift can move more than one place at a time, the principle remains the same

  • A left shift of 2 places would multiply the original binary number by 4 (x4)

  • Binary shifts can cause a loss of precision by discarding bits, which can lead to changes in the numerical value

How do you perform a left shift of 1?

  • Here is the binary representation of the denary number 40

128

64

32

16

8

4

2

1

0

0

1

0

1

0

0

0

  • To perform a left binary shift of 1, we move each bit 1 place to the left

  • The digit in the 128 column will move left causing an overflow error

  • The 1 column becomes empty so is filled with a 0

128

64

32

16

8

4

2

1

 

 

0

1

0

1

0

0

0

= 40

0

1

0

1

0

0

0

0

= 80

  • The original binary representation of denary 40 (32+8)  has multiplied by 2 and became 80 (64+16)

How do you perform a left shift of 2?

  • Here is the binary representation of the denary number 28

128

64

32

16

8

4

2

1

0

0

0

1

1

1

1

0

  • To perform a left binary shift of 2, we move each bit 2 place to the left

  • The digit in the 128 and 64 column will move left causing an overflow error

  • The 1 and 2 column become empty so are filled with a 0

128

64

32

16

8

4

2

1

 

 

 

0

1

1

1

0

0

= 28

0

1

1

1

0

0

0

0

= 112

  • The original binary representation of denary 28 (16+8+4)  has multiplied by 4 and became 112 (64+32+16)

How do you perform a right shift of 1?

  • Here is the binary representation of the denary number 40

128

64

32

16

8

4

2

1

0

0

1

0

1

0

0

0

  • To perform a right binary shift of 1, we move each bit 1 place to the right

  • The digit in the 1 column will  move right causing an underflow error

  • The 128 column becomes empty so is filled with a 0

128

64

32

16

8

4

2

1

 

0

0

1

0

1

0

0

 

= 40

0

0

0

1

0

1

0

0

= 20

  • The original binary representation of denary 40 (32+8)  has divided by 2 and became 20 (16+4)

How do you perform a right shift of 2?

  • Here is the binary representation of the denary number 200

128

64

32

16

8

4

2

1

1

1

0

0

1

0

0

0

  • To perform a right binary shift of 2, we move each bit 2 places to the right

  • The digits in the 1 and 2 columns will move right causing an underflow error

  • The 128 and 64 columns become empty so are filled with a 0

128

64

32

16

8

4

2

1

 

1

1

0

0

1

0

 

 

= 200

0

0

1

1

0

0

1

0

= 50

  • The original binary representation of denary 200 (128+64+8) has divided by 4 and became 50 (32+16+2)

Worked Example

1. Perform a binary shift of 2 places left on the binary number 00001110 [1]

2. Explain the effect of performing a 2 place shift to the left on the binary number 00001110  [2]

Answers

Q1

left-binary-shift
  • Cross out the first 2 digits from the left

  • Write down the binary digits left and add 2 zeros to the end

Q2

  • Multiplies the number by 4

  • Overflow errors can cause loss of precision

Last updated:

You've read 0 of your 10 free revision notes

Unlock more, it's free!

Join the 100,000+ Students that ❤️ Save My Exams

the (exam) results speak for themselves:

Did this page help you?

Robert Hampton

Author: Robert Hampton

Expertise: Computer Science Content Creator

Rob has over 16 years' experience teaching Computer Science and ICT at KS3 & GCSE levels. Rob has demonstrated strong leadership as Head of Department since 2012 and previously supported teacher development as a Specialist Leader of Education, empowering departments to excel in Computer Science. Beyond his tech expertise, Robert embraces the virtual world as an avid gamer, conquering digital battlefields when he's not coding.

James Woodhouse

Author: James Woodhouse

Expertise: Computer Science

James graduated from the University of Sunderland with a degree in ICT and Computing education. He has over 14 years of experience both teaching and leading in Computer Science, specialising in teaching GCSE and A-level. James has held various leadership roles, including Head of Computer Science and coordinator positions for Key Stage 3 and Key Stage 4. James has a keen interest in networking security and technologies aimed at preventing security breaches.