Certified Animation Professional (CAP) Practice Test

Disable ads (and more) with a membership for a one time $2.99 payment

Prepare for the Certified Animation Professional Exam. Use engaging quizzes with flashcards and multiple choice questions, each with hints and detailed explanations. Gear up for success!

Each practice test/flash card set has 50 randomly selected questions from a bank of over 500. You'll get a new set of questions each time!

Practice this question and more.


What is the term for a series of connected blocks in Scratch to perform a task?

  1. Loop

  2. Sequence

  3. Function

  4. Array

The correct answer is: Sequence

The term for a series of connected blocks in Scratch that collectively perform a task is a sequence. In Scratch, when you connect multiple blocks together in a linear fashion, you create a sequence of steps that the program will execute one after the other. This allows for clear, structured programming where specific behaviors can occur in a defined order, leading to a coherent outcome. In the context of programming and Scratch specifically, sequences are foundational. They provide the instructions needed for the program to function efficiently by telling it exactly what to do next. This contrasts with other concepts like loops, which repeat a set of instructions, functions that encapsulate reusable code, and arrays which are used for storing collections of data. Each of these plays a different role in coding, but when talking about a series of connected blocks that execute tasks in a direct order, the correct terminology is indeed a sequence.