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.

Slides:



Advertisements
Similar presentations
First of all – lets look at the windows you are going to use. At the top you have a toolbar, with all your various tools you can use when customising your.
Advertisements

Logo Lesson 1 TBE Fall 2004 Farah Fisher.
Computer Science 1000 LOGO I. LOGO a computer programming language, typically used for education an old language (1967) the basics are simple: move a.
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,
Using Logo and Logic Please use speaker notes for additional information!
"Turtle Graphics“ for kids.
Logo Lesson 4 TBE Fall 2004 Farah Fisher. Prerequisites Create basic and complex shapes using Logo procedures Create Logo procedures that use variables.
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.
Logo Lesson 2 Logo Procedures
Introduction to TouchDevelop
B.A. (Mahayana Studies) Introduction to Computer Science November March Logo (Part 1) An introduction to Logo: drawing, moving,
Presentation Software EDTS100 Lecture 7. Presentation Software Some Options KidPix MicroWorlds PowerPoint Frontpage Kahootz.
Mini Project II – Drawing Machine
B.A. (Mahayana Studies) Introduction to Computer Science November March Logo (Part 2) More complex procedures using parameters,
Microsoft® Small Basic
1 CSC 221: Computer Programming I Fall 2011 Fun with turtle graphics  turtle module  relative motion (setup, reset, left, right, forward, backward) 
A SIMPLE COMPUTER LANGUAGE LOGO. LOGO Introduction Logo is the simplest programming language. It.
Turtle see, turtle do Lesson 1 – Welcome to LOGO.
Introduction to Algorithms using Netlogo. What’s an Algorithm Definitions of Algorithm on the Web: –A procedure or formula for solving a problem.
Agent P, I have been hearing some rumours about a Python Turtle.
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.
Programmming Class Fall 2011 Sobhan Highschool Teacher: M.Taghizadeh.
1 Building Your Own Turtle Functions For making really cool pictures!
Logo Programming Fall 2011 – Session 4 Programming Class Teacher: M. Taghizadeh Sobhan Highschool.
CONTROL SYSTEMS Control Systems A command is a directive that performs a specific task An argument is a variable that can be used by the function reveiving.
Programmming Class Fall 2011 – Session 2 Teacher: M.Taghizadeh
Students, Learning, and Technology: Mindtools for the 21 st Century Powering Up With Technology Conference November 15, 2003 Educational Technology Research.
The Hare Raising Experience of Logo in the Classroom
Logo Programming Fall 2011 – Session 7 Programming Class Teacher: M. Taghizadeh Sobhan Highschool.
Roamer help file: Use this power-point slide to find out more about the buttons on Roamer…
Students, Learning, and Technology for the 21 st Century Young Scholars Program Summer 2003 Educational Technology Outreach College of Education University.
The Pro-Bot* Kate Lester and Nancy Chaffer Term 2, 2010 PCS TPL
By Liam Lane How To Use MSW LOGO.
Copyright 2002, Tony Gauvin, UMFK
LOGO CECS 4100 R. Christensen.
1 Building Your Own Turtle Functions For making really cool pictures!
Logo for Beginners By Chris 9S.
HOW THEY WORK AND WHAT THEY DO. Jay Jay 9S. A control program is a type of programming that allows you to control systems. Control programs are used in.
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 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.
Pablo Revelo. Birds: to 3birds pu home pd lt 80 pu fd 250 pd setpensize 2 setpc "white st bird pu bk random 100 bird pu lt 90 fd random 40 bird ht.
Increase the number of lines before coming back to the origin … triangle square Draw a circle.
First of all – lets look at the window’s you are going to use. At the top you have a toolbar, with all your various tools you can use when customising.
Procedures and Variables Control Logo 1. What you will do today  You will make your code more efficient by using procedures  You will create shapes.
Search for it on your computer
LOGO WHAT IS IT? HOW TO USE IT AND HOW USEFUL CAN IT BE?
What is it? How to use it and how useful can it be?
Students, Learning, and Technology for the 21 st Century Young Scholars Program Summer 2007 Educational Technology Policy, Research and Outreach Davina.
Using Logo to explore spiral patterns. Paul Broadbent Spiral patterns This is a (1,2,3) spiral path. It repeats lines of three.
Using the Python Turtle
Using Logo to develop logical thinking
LOGO BY Kaotip 9S.
LOGO 32 By: Xenon 9S.
Micro worlds Microworlds By Clara Paton By Clara Paton.
Young Scholars Program 2003
Agent P, I have been hearing some rumours about a Python Turtle.
Learning to program with Logo
Algorithms and Flow Charts
Computer Programming.
البرمجة مع لغة PYTHON TURTLE
ICT Department- Scratch
Institute for Entrepreneurship and Career Development (IECD)
SCITT Day 5 Position, direction and angle identifying key features of shape and space.
Using Logo and Logic This presentation uses a version of Logo called StarLogo available through MIT. It can be downloaded for free and installed on your.
Logo Programming.
Mod 2 Lesson 2 Repeating with loops
Presentation transcript:

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 what Logo Software looks like.

This is what Logo looks like when you first open it. It will have a triangle, that is the pen or what you called turtle you are writing with. Down below is the command you have to write.

SOME BASIC COMMANDS PD- Pendown, to start writing with PU- Penup, to move by not writting FD – Forwards, move the turtle fowards. BK- Backwards, move the turtle backwards RT- Turn Right(RT 90- Turn Right 90 degrees) LT- Turn Left(LEFT 90- Turn Left 90 degrees) CS- Clear Screen and start all over again

DRAWING A SQUARE You can do many things with Logo, for example drawing shapes or drawing face, it’s easy to do and nothing complicated to do. All you need to do is the command below. fd 100 rt 90 fd 100 rt 90 fd 100 rt 90 fd 100 pu fd 100

MAKING MORE COMPLICATED SHAPES This shape might look hard but actually it’s easy to do. All you need to do is the command below. bk 10 rt 30 pd setpensize[5 5] setpc[ ] repeat 3[fd 90 rt 120] rt 30 pu fd 10 setfloodcolor[ ] fill

ENDALL Endall is a button that we used to set commands.

If you finish editing you just need to type the name you set, for example this one is triangle2, then only type triangle 2 then the shape will appeared.

WHAT IS VARIABLE LENGTH Variable are data which can change. For example : -It can be used to do many things such as triangle, square etc. - It can also be defined in the length of different shapes. -The length can be changed for example for triangle you just type triangle *** the amount of number you want it to be, for example if triangle 200 will be bigger than triangle 100. You can choose your own size of the shape you want, how big you want or how small you want.