Zebra0.com

alice animationAlice Programming

Alice Programming

Learn Alice in FREE step-by-step lessons.

Quiz on Creating Animation in Alice3

After watching the videos in the section, you should understand how to turn and roll an object's subparts (arms, legs, head, car doors, a gate or the lid to the treasure chest.

Write down the answers first. Click the check to check your answer.

True or False: Statements in Alice are always executed in sequence. answer

   False, the control structures let you control the order.

A character will raise both arms at the same time if you put them in the ___ control structure answer

   do together

The default control structure in myFirstMethod is ____ answer

   do in order

Which control structure will let you execute statements 5 times? answer

   count

True or False: A count loop always starts with 1. answer

   False: a count loop always starts with 0.

What are 2 ways to loop (without using arrays)? answer

   Either use count or while.

In this code
what will the toddler say? answer

   0, 1, 2

If you want a character to shake his head no, there is usually a statement before and after the loop. Why? answer

   To put his head in positon for the repeated action and to return it to the starting position.

Something that is true or false is ____ answer

   Boolean

If you use while(true) how many times will the statements execute? answer

   they will execute forever! This is an endless loop.

Please review the material for any questions you miss.