EN-GB · Home

English · United Kingdom · Free printable sample

Practice assessment · Computing

Try these questions and check the worked answers. Choose a skill for targeted practice or combine skills in a unit assessment.

Levels indicate approximate learning stages, not certified alignment with a country’s curriculum. Choose by the skills the learner is studying.

Save a full practice set

WorksheetWise · Standard · 1097

Practice assessment · Computing

Original unit assessment covering the skills listed below. This is not an official past paper or a complete qualification mock. Suggested time is a guide, not an exam-board requirement.

30 minutes · 30 marks

Name: ____________________ · Date: ____________

  1. 1. Convert the decimal integer 67 to unsigned binary without leading zeros. (2 marks)

  2. 2. Convert the unsigned binary number 10100110 to decimal. (2 marks)

  3. 3. Convert the unsigned binary number 11111110 to decimal. (2 marks)

  4. 4. Convert the decimal integer 20 to unsigned binary without leading zeros. (2 marks)

  5. 5. Convert the decimal integer 52 to unsigned binary without leading zeros. (2 marks)

WorksheetWise · en-gb · 1/3

WorksheetWise · Standard · 1097

Practice assessment · Computing

Original unit assessment covering the skills listed below. This is not an official past paper or a complete qualification mock. Suggested time is a guide, not an exam-board requirement.

30 minutes · 30 marks

Name: ____________________ · Date: ____________

  1. 6. Trace this algorithm. Start x = 30. Repeat 5 times: x ← x + 9. What is the final x? (2 marks)

  2. 7. Trace this algorithm. Start x = 17. Repeat 4 times: x ← x + 1. What is the final x? (2 marks)

  3. 8. Trace this algorithm. Start x = 16. Repeat 5 times: x ← x + 6. What is the final x? (2 marks)

  4. 9. Trace this algorithm. Start x = 6. Repeat 6 times: x ← x + 1. What is the final x? (2 marks)

  5. 10. Trace this algorithm. Start x = 19. Repeat 3 times: x ← x + 1. What is the final x? (2 marks)

WorksheetWise · en-gb · 2/3

WorksheetWise · Standard · 1097

Practice assessment · Computing

Original unit assessment covering the skills listed below. This is not an official past paper or a complete qualification mock. Suggested time is a guide, not an exam-board requirement.

30 minutes · 30 marks

Name: ____________________ · Date: ____________

  1. 11. Use 1 for true and 0 for false. Evaluate: 0 OR 0. (2 marks)

  2. 12. Use 1 for true and 0 for false. Evaluate: NOT (0 OR 1). (2 marks)

  3. 13. Use 1 for true and 0 for false. Evaluate: NOT (1 OR 0). (2 marks)

  4. 14. Use 1 for true and 0 for false. Evaluate: 1 OR 0. (2 marks)

  5. 15. Use 1 for true and 0 for false. Evaluate: NOT (1 AND 1). (2 marks)

WorksheetWise · en-gb · 3/3

WorksheetWise · Standard · 1097

Practice assessment · Computing — Answer key

Original unit assessment covering the skills listed below. This is not an official past paper or a complete qualification mock. Suggested time is a guide, not an exam-board requirement.

30 minutes · 30 marks

  1. 1. Convert the decimal integer 67 to unsigned binary without leading zeros. (2 marks)

    1000011

    64 + 2 + 1 = 67

  2. 2. Convert the unsigned binary number 10100110 to decimal. (2 marks)

    166

    128 + 32 + 4 + 2 = 166

  3. 3. Convert the unsigned binary number 11111110 to decimal. (2 marks)

    254

    128 + 64 + 32 + 16 + 8 + 4 + 2 = 254

  4. 4. Convert the decimal integer 20 to unsigned binary without leading zeros. (2 marks)

    10100

    16 + 4 = 20

  5. 5. Convert the decimal integer 52 to unsigned binary without leading zeros. (2 marks)

    110100

    32 + 16 + 4 = 52

WorksheetWise · en-gb · 1/3

WorksheetWise · Standard · 1097

Practice assessment · Computing — Answer key

Original unit assessment covering the skills listed below. This is not an official past paper or a complete qualification mock. Suggested time is a guide, not an exam-board requirement.

30 minutes · 30 marks

  1. 6. Trace this algorithm. Start x = 30. Repeat 5 times: x ← x + 9. What is the final x? (2 marks)

    75

    30 → 39 → 48 → 57 → 66 → 75

  2. 7. Trace this algorithm. Start x = 17. Repeat 4 times: x ← x + 1. What is the final x? (2 marks)

    21

    17 → 18 → 19 → 20 → 21

  3. 8. Trace this algorithm. Start x = 16. Repeat 5 times: x ← x + 6. What is the final x? (2 marks)

    46

    16 → 22 → 28 → 34 → 40 → 46

  4. 9. Trace this algorithm. Start x = 6. Repeat 6 times: x ← x + 1. What is the final x? (2 marks)

    12

    6 → 7 → 8 → 9 → 10 → 11 → 12

  5. 10. Trace this algorithm. Start x = 19. Repeat 3 times: x ← x + 1. What is the final x? (2 marks)

    22

    19 → 20 → 21 → 22

WorksheetWise · en-gb · 2/3

WorksheetWise · Standard · 1097

Practice assessment · Computing — Answer key

Original unit assessment covering the skills listed below. This is not an official past paper or a complete qualification mock. Suggested time is a guide, not an exam-board requirement.

30 minutes · 30 marks

  1. 11. Use 1 for true and 0 for false. Evaluate: 0 OR 0. (2 marks)

    0

    AND is 1 only when both inputs are 1; OR is 1 when at least one input is 1; NOT reverses 0 and 1. 0 OR 0 = 0

  2. 12. Use 1 for true and 0 for false. Evaluate: NOT (0 OR 1). (2 marks)

    0

    AND is 1 only when both inputs are 1; OR is 1 when at least one input is 1; NOT reverses 0 and 1. NOT (0 OR 1) = 0

  3. 13. Use 1 for true and 0 for false. Evaluate: NOT (1 OR 0). (2 marks)

    0

    AND is 1 only when both inputs are 1; OR is 1 when at least one input is 1; NOT reverses 0 and 1. NOT (1 OR 0) = 0

  4. 14. Use 1 for true and 0 for false. Evaluate: 1 OR 0. (2 marks)

    1

    AND is 1 only when both inputs are 1; OR is 1 when at least one input is 1; NOT reverses 0 and 1. 1 OR 0 = 1

  5. 15. Use 1 for true and 0 for false. Evaluate: NOT (1 AND 1). (2 marks)

    0

    AND is 1 only when both inputs are 1; OR is 1 when at least one input is 1; NOT reverses 0 and 1. NOT (1 AND 1) = 0

WorksheetWise · en-gb · 3/3

Practise this skill

Preparing the editor…

Mathematics

Phonics

Spelling

Grammar

Secondary mathematics

Science

Accounting

Geography

Computing

Advanced mathematics

Reading

History

Practice assessments

About these resources

WorksheetWise authors these practice questions and translations. Numerical answers are checked by automated tests. Reading and history include marking guidance. These materials have not been independently certified by an exam board.

For UK families, tutors and classrooms. A4 paper is selected initially. Use these maths activities alongside the current lesson; Year groups and expectations differ across the UK, and no national curriculum alignment is claimed.