What are loop cards?

Loop cards are a great game that can be played individually or as a class. They are perfect for review key vocabulary or questions at the end of a topic or when revising for an exam.

Instructions

  1. Cut out the cards from the paper horizontally (but don't cut them in half!) and then shuffle them.
  2. Now start joining each question on the right hand side of the card to the matching answer on the next card.
  3. Carry on until all the cards loop together and you have competed the game!

Hint: Make sure that you set your paper to portrait to print 4 cards per sheet of A4 paper.

Edit Vocab

Used to check if two variables refer to the same object in memory.
!=
Used to check if two values are not equal.
<
Used to check if the left operand is less than the right operand.
Comparison Operators
Used to compare values and return a boolean result.
In
Used to check if a value exists in a sequence.
Not In
Used to check if a value does not exist in a sequence.
==
Used to check if two values are equal.
>
Used to check if the left operand is greater than the right operand.
>=
The '>=' Used to check if the left operand is greater than or equal to the right operand.
<=
Used to check if the left operand is less than or equal to the right operand.
Is