This way, this way … Lesson 3. Starter START Print “Hello, world” STOP Print “What’s your name?” Read in name Print “Hi” and the name Print “Welcome to.

Slides:



Advertisements
Similar presentations
How much LOGO do you know? Lesson 6 - Evaluation.
Advertisements

EDIT MODE The HAAS Control Series PRESS THREE TIMES TO GET TO THIS PAGE (Continued on next slide) Note: SLIDE LEGEND ACTIONS INSTRUCTIONS KEYS INFORMATION.
Lesson 7B Creating Our Own Methods Slides are adapted from aliceprogramming.net or
Welcome to Jeff’s baseball game! Here is how to play. You are asked a math question and you have to get it right or you will repeat the question until.
Cover Sheet Cut and discard this bottom portion. Click Here to Replace and add your title To insert a picture: Click on Insert – Clip Art.
1 After completing this lesson, you will be able to: Adjust page margin settings. Insert a forced page break. Set paragraph alignment, indentation, and.
Super Logo. Key Instructions Pendown penup Forward 50 ( this number can change) Right 90 ( this number can change as well) Now try and draw a Early finishers,
Lesson 7: Working with . 2 Concept 7.1 About is a fast and easy way to communicate to all places on the Internet You must have an .
CS201 - Information. CS201 - Laboratories All labs will be done using Linux on the PC’s or esus. All labs MUST use Makefiles. First lab is due NEXT WEEK.
$100 $200 $300 $400 $500 $100 $200 $300 $400 $500 $100 $200 $300 $400 $500 $100 $200 $300 $400 $500 $100 $200 $300 $400 $500 $100 $200 $300.
Logo Lesson 3 TBE 540 Fall 2004 Farah Fisher. Prerequisites for Lesson 3 Before beginning this lesson, the student must be able to… Use simple Logo commands.
Here is a list of citations the database retrieved for us. To find out more about an article, click on the “complete reference” link.
Introduction to TouchDevelop
HTML, Formatting Text and Images Lesson 2.
FORMS, CONTROLS and REPORTS In Microsoft ACCESS
LOGO SOFTWARE BY: SAVE 9S. INTRODUCTION Logo is a software that can be found at : Shared area> High School > ICT > take home software > LOGO32. This is.
Scratch – Simple Programming
Spreadsheets in Finance and Forecasting Presentation 9 Macros.
Pasewark & Pasewark 1 Access Lesson 5 Creating and Modifying Reports Microsoft Office 2007: Introductory.
Turtle see, turtle do Lesson 1 – Welcome to LOGO.
Introduction to TouchDevelop
MSW Logo By Awin 9s.
Logo For beginners By Dali Matthews 9S What is logo?
An introduction to Logo Mike Warriner Engineering Director, Google Note: This course is not an endorsement of Logo by Google. All views in this document.
TEACHER INTRUCTIONS: You will work through this activity in Normal View mode. This is represented by the in the Bottom Left Hand Corner of this page. 2.
This is taking too long! Lesson 2 – Subroutines and parameters with LOGO.
Pasewark & Pasewark 1 Access Lesson 5 Creating and Modifying Reports Microsoft Office 2007: Introductory.
1 PRESENTER NAME TITLE SUBTITLE Date:. MAIN SECTION (Title Slide)
Instructions for Access to On-line FEMA training.
Lesson 6.9: Scientific Notation Standards: NS 1.1, AF 2.1 Objectives: Write scientific notation. Use scientific notation.
LOGO For the beginner Made by Rio Narazaki. W HAT I S L OGO ? Logo is a computer programming language used in Education. Logo is very easy to use. The.
Enter Your Screenshot Here INSERT LOGO HERE. Enter Your Screenshot Here This is a sample text. Enter your text here. Title Goes Here INSERT.
LOGO WHAT IS IT? HOW TO USE IT AND HOW USEFUL CAN IT BE?
Print the sample banner slides or customize with your own message. Click on the letter and type your own text. Use one character per slide. C.
Using Logo to explore spiral patterns. Paul Broadbent Spiral patterns This is a (1,2,3) spiral path. It repeats lines of three.
Hello Educational presentation.
Test1 Here some text. Text 2 More text.
Computer Programming.
Functions and Procedures
Scratch – Simple Programming
Scratch: iteration / repetition / loops
Company Name Here Click Here To Add Text.
Click here for the answer. Click here for the answer.
Below is the equation for the Pythagorean theorem
Click here for the answer. Click here for the answer.
Click here for the answer. Click here for the answer.
Scrolling text repeating until end of slide.
3 10 A B 0.25 C 1 2 D 25% 7 20 E 20% F 0.35 G H 0.2 To edit presentation: change text in shapes, select all shapes by clicking on shape and pressing CTRL.
Chapter 9 Communication
Chapter 7 Organisation & Management
01 This is a sample text. You can replace this text. Enter your text here This is a sample text. You can replace this text. Enter your text here
56% Enter your text here This is a sample text. Enter your text here
[type text here] [type text here] [type text here] [type text here]
Recap the basics Lesson 1.
Enter your title here 1 Enter your text here Enter your text here 2
Your text here Your text here Your text here Your text here Your text here Pooky.Pandas.
Welcome.
Your text here Your text here Your text here Your text here
Inputs and Variables Programming Guides.
Contents Click to add Title Click to add Title Click to add Title
[type text here] [type text here] [type text here] [type text here]

01 DRAW YOUR TIMELINE HERE JAN. MAR. JAN. MAR. FEB. APR. FEB. APR.
STEP ONE. STEP ONE. STEP ONE. STEP ONE. STEP ONE. 02
YOUR text YOUR text YOUR text YOUR text
Recap the basics Lesson 1.
Logo Programming.

Enter your title here 1 Enter your text here Enter your text here 2
Presentation transcript:

This way, this way … Lesson 3

Starter START Print “Hello, world” STOP Print “What’s your name?” Read in name Print “Hi” and the name Print “Welcome to Logo START STOP

Starter TO HelloWorld PRINT [Hello, world] END TO Hello PRINT [What’s your name?] MAKE “name READWORD PRINT [Hi, ] PRINT :name PRINT [Welcome to Logo] END START Print “Hello, world” STOP Print “What’s your name?” Read in name Print “Hi” and the name Print “Welcome to Logo START STOP

Getting to the activity sheet 1.Go to Start > Internet 2.Go to Departments > Information Technology, Lessons > Year 8 3.Scroll down to and click on ‘GameGirl’ 4.Click on Lesson 3 5.Underneath Activity 2, click on ‘Hello, World’

To do You must –Make a program to print the words “Hello, World” –Modify that program to print whatever words you want. –Draw a square as big as you want and as many times as you want You should –Use a subroutine to draw the square of whatever size you want and as many times as you want –Use the FOR command You could –Do the same as above except for an octagon of whatever size you want

Hello, World! TO HelloWorld PRINT [Hello, World] END TO hello MAKE "name READWORD PRINT [hi, ] PRINT :name PRINT [, welcome to LOGO.] END TO message :text PRINT :text END

Repeating squares TO repeatingsquares PRINT [how many squares do you want?] MAKE "numberofsquares readword PRINT [how big do you want your squares?] MAKE "size READWORD REPEAT :numberofsquares [~ REPEAT 4 [FORWARD :size RIGHT 90] RIGHT 90 FORWARD :size LEFT 90 ] END

Using the SQUARE subroutine TO repeatsquares PRINT [How many squares?] MAKE "repeats READWORD PRINT [How big do you want them?] MAKE "size READWORD REPEAT :repeats [~ square :size RIGHT 90 FORWARD :size LEFT 90 ] END TO square :size REPEAT 4 [FORWARD :size RIGHT 90] END

Using FOR The square subroutine stays the same. The repeatsquare subroutine starts off the same. Replace the REPEAT command with: FOR [i 0 :repeats 1] [~ square :size RIGHT 90 PENUP FORWARD :size + 1 LEFT 90 PENDOWN ]

Doing the same thing with octagons There are only a few changes which need to be made to the program in the “should” section to draw octagons instead. Here’s a clue: TO octagon :size … END And another one: replace ‘square’ with ‘octagon’.