Representing algorithms

EasyMediumHard
123456789101112131415161718192021222324252627282930313233343536373839404142434445464748
Question 42
Medium

This is how the blocks D, E, and F are arranged at the start.

Diagram showing three columns labeled Column 0, Column 1, and Column 2. Column 1 contains three blocks stacked vertically, with block F at the top, block E in the middle, and block D at the bottom. Columns 0 and 2 are currently empty.

Draw the final arrangement of the blocks after the following algorithm has run.

MOVE(1, 0)
MOVE(1, 2)
MOVE(0, 2)
[3]

Representing algorithms Questions

  1. GCSE
  2. /Computer Science
  3. /Representing algorithms