1 - Basic Commands

You might also like

Download as docx, pdf, or txt
Download as docx, pdf, or txt
You are on page 1of 3

Small Basic – Basic Commands

1. Click on the link below: https://superbasic-v2.azurewebsites.net/

2. Run the code that is already entered in the window by clicking on Run

Leave the program output by scrolling to the top of the screen and clicking on
Back:

Write a description of what has happened in the space below:

3. Now type in the code below. Run the program


Write a description of what has happened in the space below:
The turtle has moved up turn 90 degrees to the right and then went forward.

What does the green code do? You may use google if you are not sure.

4. Change the code to Turtle.Move (-100) and click on Run. What happens?
Write a description below:
The line goes backwards.

Enter different numbers of in the Turtle.Move() command, click on Run and


explain what happens. Paste screenshots of your code below:
Here I put 190 and it
turned and made almost
a triangle.

5. Change the code to Turtle.Turn (60). What happens?

Enter different numbers in the Turtle.Turn() command, click on Run and see
what happens. Take screenshots of your code and explain what happens.

6. Type in Turtle. in the window. A pop-up appears in which you can see the
different functions you can do with the Turtle. You can scroll down in the
window with the ↑ ↓ keys.

2
Find out what the following do (you may use the internet if you get stuck):

a) Turtle.Speed =

b) Turtle.PenUp() pen up means when the turtle is moving it will not


show a line.

c) Turtle.PenDown() pen down will show a line.

7. Draw your name using the turtle. Find out how can you create round shapes –
you may use google to help you.

Hint: You will need to add smaller numbers in Turtle.Move() and


Turtle.Turn(). You might also have to repeat the commands several times.

You can use Turtle.PenUp() and Turtle.PenDown() to add blank space


between the letters.

Copy all of your code here and also paste a screenshot of your result:

Extension: Remember the programming you did in Scratch. How could you
make your code better? Research how to add colour to your name.

You might also like