Easy1 markShort Answer
AQA GCSE · Question 02.3 · Fundamentals of data representation
The arithmetic effect of applying a left binary shift of two to a binary number is to multiply that number by four.
State the arithmetic effect of applying a left binary shift of four to a binary number.
The arithmetic effect of applying a left binary shift of two to a binary number is to multiply that number by four.
State the arithmetic effect of applying a left binary shift of four to a binary number.
How to approach this question
A left binary shift of 'n' places is arithmetically equivalent to multiplying the number by 2^n.
In this question, the shift is four places to the left, so n=4.
The effect is to multiply the number by 2^4.
Calculate 2^4: 2 * 2 * 2 * 2 = 16.
Full Answer
Multiply the number by 16.
A left binary shift (also known as a logical shift left) moves all bits in a binary number to the left by a specified number of places. For each place shifted, the number is effectively multiplied by 2.
Therefore, a left shift of 'n' places has the arithmetic effect of multiplying the original number by 2^n.
In this case, n = 4.
So, the effect is multiplication by 2^4, which is 16.
Common mistakes
✗ Stating division instead of multiplication.
✗ Calculating 2*4=8 instead of 2^4=16.
✗ Confusing left shift with right shift (which is division).
Practice the full AQA GCSE Computer Science Paper 2
46 questions · hints · full answers · grading
More questions from this exam
Q01.1Convert the binary number 11010100 into decimal.EasyQ01.2Convert the binary number 10111001 into hexadecimal. You should show your working.MediumQ01.3State the largest decimal number that can be represented using 6 bits.EasyQ02.1Add together the following three binary numbers and give your answer in binary.
00110110
1001...MediumQ02.2Apply a binary shift three places to the right on the bit pattern 10101000. Give the result using...Easy
Expert