This is taking too long! Lesson 2 – Subroutines and parameters with LOGO.

Slides:



Advertisements
Similar presentations
Step 1 Login to NFA Course List. Step 2 Login Screen.
Advertisements

Gaggle Mail to CMS Mail. To forward Gaggle to CMS mail, log in and click on My Account.
Windows XP / Microsoft Word Computer Applications.
How much LOGO do you know? Lesson 6 - Evaluation.
Chapter 11: Classes and Objects
Microsoft Word Penguin Research Lesson 1: Typing, Font, Inserting Pictures and Inserting Textboxes.
Computer Science 1000 LOGO I. LOGO a computer programming language, typically used for education an old language (1967) the basics are simple: move a.
Problem: hassles Students frequently are not able to access their homework assignments because their private is blocked or not allowed at school.
EBilling Training Attendance and DS1964 Spreadsheets.
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,
CompServices, Inc Commonwealth of PA Safety Officers Workers’ Compensation Online Reports Training The Basics.
B.A. (Mahayana Studies) Introduction to Computer Science November March Logo (Part 1) An introduction to Logo: drawing, moving,
How to change the default file format in Open Office Start open office writer Click on Tools click on options.
Getting on the Web CCSD Technology Team. Post a page to the Web using a simple file transfer process Goal: Process: Create a Web page using Microsoft.
Microsoft Word Penguin Research Lesson 2: Continuing Typing, Font, Inserting Pictures and Inserting Textboxes.
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.
1 After completing this lesson, you will be able to: Start Word. Explore the Word window. Enter text in a document. Save a document. Close a document and.
In this activity, we are going to create a resume file with Microsoft Word and save it in the folder ‘My Documents’. Activity 2 Creating and saving a resume.
Inserting Photos into Microsoft Word By: Jared Hillman.
Week Rainey Community ICT Classes ICT – The Basics.
Turtle see, turtle do Lesson 1 – Welcome to LOGO.
MSW Logo By Awin 9s.
Logo For beginners By Dali Matthews 9S What is logo?
By Deborah Nelson Duke University Professor Susan Rodger July 13, 2008.
Team C November 30, 2012 Major Document 5.  Create a document in a Microsoft Office.  You can create a document in either Microsoft Word, Microsoft.
Logo Programming Fall 2011 – Session 4 Programming Class Teacher: M. Taghizadeh Sobhan Highschool.
Lists Tutorial By Deborah Nelson Duke University Professor Susan Rodger July 13, 2008.
Printing Labels Where do I find labels How do I print labels for Chapter Secretaries How do I print one label How can I tell if these have the most recent.
Vector logos Help Guide. Getting started Open a blank Word document. Get the ‘Drawing’ toolbar on display: Click on View on the toolbar. Select Toolbars.
Saving a Document in Microsoft Word (Versions prior to 2007) Educational Support Services Copy & Design: Verna Fisher.
Introduction to FrontPage and Web Page Design. Topics Logging in to your site Creating a webpage Text formatting Page backgrounds Linking webpages Links.
Google HOW DO I SUBMIT MY ASSIGNMENT?. To join a classroom, your teacher will give you a code.
All About Me An Introduction To Opening And Saving Student Work.
Locating an Image on the Web and Pasting into a Word Document Math Module 7 Mrs. Jensen.
Logo for Beginners By Chris 9S.
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.
Lesson 5 Exponentiation,Order of Operations and Error Handling.
DEPARTMENT MODULE User’s Guide. Step 1. Click Files Step 2. Click Department.
LOGO WHAT IS IT? HOW TO USE IT AND HOW USEFUL CAN IT BE?
KEY STAGE 3 ICT Databases – Lesson 2. Recap of keywords – Task 2A In your workbooks from last lesson What is a database? A DATABASE is a collection of.
FrontPage & Web Page Design. Starting FrontPage Click on the FrontPage icon in the task bar at the bottom of the screen or Locate it from the programs.
LOGO Организация кредитования в Республике Беларусь Костенко А.К., к.э.н., доцент.
MGT 521 Week 3 Individual Personal Professional Development Plan Activity Part 4 Navigate to the My Career Plan in Career Services. Complete the Career.
涉外合同中的法律适用问题 --- 以上海地区为例 Group 2 吕雅丽 王燕玉 刘彧 孙煜 韦卫玲 李天奇 LOGO.
2D Shapes.
Microsoft Word Objectives
OneNote.
Using Tables in Canvas.
OneNote.
Computer Programming.
LOGO 32 By: Xenon 9S.
Using iLocker.
Functions and Procedures
© Pyramids ©
Starting PowerPoint.
Creating Power Point Presentations
HOW TO MAKE A SHARED DOCUMENT MULTIPLE PEOPLE CAN EDIT AT SAME TIME
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.
Lesson Objectives Lesson Outcomes
Log onto a computer first then ….
Enter your title here 1 Enter your text here Enter your text here 2
Volume Marketing Tool.
Welcome to your review of Fractions!
Blackboard Tutorial (Student)
PowerPoint Now, I will explain about power point.
Add Your Company Slogan
Making figure and Intro
How to Save a Picture to the Computer or Jumpdrive
First consider a geometric illustration of completing the square for
Enter your title here 1 Enter your text here Enter your text here 2
Presentation transcript:

This is taking too long! Lesson 2 – Subroutines and parameters with LOGO

Do you know what this code is doing? 1.REPEAT 4 [FORWARD 100 RIGHT 90] 2.REPEAT 8 [FORWARD 100 RIGHT 45] 3.REPEAT 4 [~ REPEAT 4 [FORWARD 100 RIGHT 90] FORWARD 110 ] 4.REPEAT 6 [FORWARD 100 RIGHT 60]

To do 1.Go to Start > Internet 2.Go to Departments > Information Technology, Lessons > Year 8 3.Click on GameGirl > Lesson 2 4.Click on ‘Subroutines’ underneath ‘Activity 2’.

Saving our work 1.In Logo, do the following a)Go to File > Save As b)Click on My Documents > Logo c)Save it as ‘Lesson 2 – Subs’ 2.Go back to Microsoft Word. In Word, do the following a)Go to File > Save As b)Click on My Documents > Logo c)Press ‘Save’

Getting into MSWLogo 1.Go to Start > All Programs > Curriculum 2.Go to ICT > MSWLogo 3.Click on ‘EdAll’ at the bottom of the screen to enter in the subroutines.

Using subroutines TO SQUARE REPEAT 4 [FORWARD 100 RIGHT 90] END TO SQUARE1 REPEAT 4 [FORWARD 200 RIGHT 90] END TO OCTAGON REPEAT 8 [FORWARD 100 RIGHT 45] END TO OCTAGON1 REPEAT 8 [FORWARD 200 RIGHT 45] END

Using variables TO SQUARE :size REPEAT 4 [FORWARD :size RIGHT 90] END TO OCTAGON :size REPEAT 8 [FORWARD :size RIGHT 90] END

The same shape multiple times close together TO MOVINGSQUARE :size REPEAT 4 [FORWARD :size RIGHT 90] FORWARD :size + 10 REPEAT 4 [FORWARD :size RIGHT 90] … END

Using the FOR keyword TO MOVINGSQUARE :size :repeat REPEAT 4 [FORWARD :size RIGHT 90] FOR [i 0 :repeat 1] [~ RIGHT 90 FORWARD :size + :i REPEAT 4 [FORWARD :size RIGHT 90] ] END