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 to check your answer.
True or False: Statements in Alice are always executed in sequence.
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
do together
The default control structure in myFirstMethod is ____
do in order
Which control structure will let you execute statements 5 times?
count
True or False: A count loop always starts with 1.
False: a count loop always starts with 0.
What are 2 ways to loop (without using arrays)?
Either use count or while.
In this code
what will the toddler say?
0, 1, 2
If you want a character to shake his head no, there is usually a statement before and after the loop. Why?
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 ____
Boolean
If you use while(true) how many times will the statements execute?
they will execute forever! This is an endless loop.
Please review the material for any questions you miss.