MSW Logo By Awin 9s.

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.
Xiao Liu, Dinghao Wu {xvl5190, SSS (Software  Systems  Security) Lab The Pennsylvania State University September 2014 IEEE/ACM International.
Computer Science 1000 LOGO I. LOGO a computer programming language, typically used for education an old language (1967) the basics are simple: move a.
Logo Programming What is LOGO? LOGO is one of a number of computer languages to have been developed in the field of Artificial Intelligence. LOGO was.
Using Logo and Logic Please use speaker notes for additional information!
"Turtle Graphics“ for kids.
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
B.A. (Mahayana Studies) Introduction to Computer Science November March Logo (Part 1) An introduction to Logo: drawing, moving,
Log on and Download from website:
Presentation Software EDTS100 Lecture 7. Presentation Software Some Options KidPix MicroWorlds PowerPoint Frontpage Kahootz.
Mini Project II – Drawing Machine
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.
B.A. (Mahayana Studies) Introduction to Computer Science November March Logo (Part 2) More complex procedures using parameters,
1 Logo -- A Language for Learning Liping Cai 11/21/2005.
A SIMPLE COMPUTER LANGUAGE LOGO. LOGO Introduction Logo is the simplest programming language. It.
Art 321 Lecture 7 Dr. J. Parker. Programming In order to ‘make things happen’ on a computer, you really have to program it. Programming is not hard and.
Turtle see, turtle do Lesson 1 – Welcome to LOGO.
A tiny turtle robot DEI The University of Padova.
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.
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.
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.
LOGO as a Programming Language for Education. Background LOGO  The LOGO language was developed in 1967 by the Logo Group at MIT under the direction of.
Programmming Class Fall 2011 – Session 2 Teacher: M.Taghizadeh
The Hare Raising Experience of Logo in the Classroom
Logo Programming Fall 2011 – Session 7 Programming Class Teacher: M. Taghizadeh Sobhan Highschool.
Students, Learning, and Technology for the 21 st Century Young Scholars Program Summer 2003 Educational Technology Outreach College of Education University.
1 Computer Science of Graphics and Games MONT 105S, Spring 2009 Session 4 Conditionals Turtles.
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!
Computer Programming. Previous Experience 1.I have never seen a computer program 2.I have seen some code, but never written any 3.I have written some.
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.
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.
Cracking the Code WHAT WORKS WHEN TEACHING STUDENTS TO CODE?
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.
Turtle Graphics Lesson 2 1. There are 3 homeworks to complete during the six lessons of this unit. Your teacher will let you know when a homework has.
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?
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
Computer Programming.
Using Logo to develop logical thinking
LOGO BY Kaotip 9S.
LOGO 32 By: Xenon 9S.
Intro CS – Loops & Creating Shapes
Do it now activity Last lesson we used Flowol to create a solution to a problem a computer could solve. Identify what each symbol does:
General Form for a Conditional
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
Chap. 3 Functions Start Python IDLE (Shell) and open a new file.
Ellie DeGiorgio-Hudson
Which way does the robot have to turn to get to the charger?
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.
Mod 2 Lesson 2 Repeating with loops
Presentation transcript:

MSW Logo By Awin 9s

What is MSW LOGO? MSW (Microsoft Windows) Logo is a programming language developed at the MIT Artificial Intelligence Lab. Logo is one of the easiest programming language, it’s very easy to learn. Logo has been used in telecommunications, multimedia, and robotics, etc.

What IT Looks LIKE The turtle Turtle drawing area Command Input Window Command Box Command Input Window

What is the TURTLE? The turtle is drawn as a triangle in MSW LOGO. When we execute commands, the turtle will do what we type.

Basic Commands There’re few commands in MSW Logo. PU - Short for "pen up," it lifts the "pen" from the screen so that moving the turtle doesn't draw a line. PD - Puts the pen down so that moving the turtle draws a line. FD [length]– Forward/Use to move the turtle forward BK [length] – Backward/Move the turtle backward LT [degree] – Turn left RT [degree] – Turn right

Procedure & SUBROUTINE Procedure/Subroutine is a portion of code within a larger program that performs a specific task and is relatively independent of the remaining code. In MSW Logo, procedure is the steps for the turtle to do something. Example: Now, you can just simply type ‘square’ and it will automatically make a square

The length will be the user’s input Variables Variables are data which can change. For example: Variables can be used to define the length of the square. Declare the variable The length will be the user’s input e.g. square 100

Example: T Circle Code repeat 8 [fd 50 lt 90 fd 20 rt 90 fd 20 rt 90 fd 60 rt 90 fd 20 rt 90 fd 20 lt 90 fd 50 rt 90 fd 20 lt 10]