Relacionar Columnas Programming PrinciplesVersión en línea To help understand common terms por Andrew Bleach 1 RT 2 Logo 3 Iteration 4 Syntax 5 HT 6 Repeat 7 SETFC 8 code 9 Program 10 Selection 11 Turtle 12 FD 13 Sequence 14 PU 15 CS 16 language The term used to describe the type of programming eg the logo computer ______________ A simple programming language that uses commands such as FD for forward. This command raises the pen in logo so it does not leave a trail When the code is set up to allow for a choice or multiple choices This command will turn the turtle in a direction to the right by a set angle eg RT 90 This will set flood colour eg setfc [0,0,0] fill will set the colour to white The structure, commands and layout of a computer language To write the instructions for the computer to follow To repeat a set of code within a program When one simple command follows another it is said to be in? You move this around in logo and it leaves a trail of where it has been This will clear the screen and reset the turtle to the center The command to move the turtle forward a set number of units eg FD 100 The set of instructions a computer will follow to achieve a specific task This will hide the turtle so it does not show on your screen In logo this command will create a set number of iterations of the code eg Repeat 4 [fd 100 rt 90] will repeat the code in brackets to make a square