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

The process of executing a program one line or instruction at a time, allowing for detailed inspection and analysis of its behavior.
Tracing
The act of recording the execution flow of a program, including function calls and parameter values, for debugging and analysis.
Memory Dump
A snapshot of a program's memory state at a particular point in time, allowing for inspection of variables and data structures.
Code Review
The process of manually examining source code to identify bugs, improve code quality, and share knowledge among team members.
Breakpoint
A line of code that marks a specific point in the program where execution will pause for debugging purposes.
Variable Watch
A feature in debugging tools that allows programmers to monitor the value of specific variables as the program executes.
Binary Search
A searching algorithm that divides a sorted array or list into halves, discarding the half that's known to not contain the target element.
Debugging
The process of finding and fixing errors or bugs in a program.
Logging
The practice of inserting messages or information into the program's output during execution for debugging or monitoring purposes.
Assertion
A statement in the code that checks if a given condition is true and throws an error if it is false, helping identify logical errors.
Stepping