← Back to Quiz

How to Use the Tech Tinker Club Quiz

This quiz is designed to help children review and strengthen the ideas they’ve learned in Tech Tinker Club sessions. Each week covers a different topic from our Micro:bit projects — such as inputs and outputs, loops, conditions, variables, and sensors — with a mix of multiple-choice and drag-and-drop questions.

The aim is not to test memory, but to practise logical thinking and reasoning. The questions encourage children to read short snippets of pseudocode (a simplified way of writing code) and to think about what the Micro:bit would do step by step. This is an important skill in programming — understanding how instructions flow and predicting what will happen before testing it.

How to Take the Quiz

Choose a week
Each week corresponds to a theme from club sessions. Start with the one you’ve already covered in class.

Read each question carefully
Questions may include a short piece of pseudocode. Read it line by line, as if it were real code blocks in MakeCode.

Select or drag your answer

Use hints if needed
Some questions offer a hint to help guide your thinking. Using a hint won’t affect your score.

Submit and review
After submitting, you’ll see whether your answer was correct and a short explanation of why. Read the reasoning carefully — it often contains key ideas that will help in the next question.

Move to the next question
Once you finish all questions in a week, you’ll see your score and can return to try another week at any time.

You don’t need to finish everything in one go. The quiz saves nothing permanently, so it’s meant for open practice — you can revisit questions freely.

Understanding Pseudocode

What is pseudocode?

Pseudocode is a simplified, human-readable way of writing a program. It describes what the program does without worrying about exact syntax or punctuation. It sits halfway between natural language and real code.

In MakeCode, we build programs using colourful puzzle-like blocks. For the quiz, we use a small, consistent Tech Tinker Club pseudocode style, where:

Here is an example of our pseudocode style:

REPEAT 3 TIMES
    SHOW ICON heart
    PAUSE 200 ms
END REPEAT

This means exactly the same as using the blocks:

If you’d like to see the full list of commands and how they map from MakeCode blocks to our pseudocode, you can look at the Tech Tinker Club Pseudocode Reference.

Why use pseudocode?

Helpful Tips for Working Through the Quiz

Why Practising Logic Matters

This quiz isn’t about memorising commands — it’s about learning how computers think. By reasoning through loops, conditions, and variables, children develop computational thinking: breaking problems down, predicting outcomes, and debugging mistakes.

Those skills go far beyond programming. They build confidence in problem-solving, mathematics, and clear step-by-step reasoning — all essential parts of STEM learning.