MSW LOGO 2. MSW LOGO is a programming language that lets you store a series of instructions on the computer.

Size: px
Start display at page:

Download "MSW LOGO 2. MSW LOGO is a programming language that lets you store a series of instructions on the computer."

Transcription

1 MSW LOGO 2 MSW LOGO is a programming language that lets you store a series of instructions on the computer. You can write routines based on the commands you have learnt earlier (refer to MS Logo 1). 1

2 You can write an abbreviation rather than the full command. COMMAND ABBREVIATION FUNCTION FORWARD FD Moves the pen forward BACK BK Moves the pen backwards LEFT LT Turns the pen left RIGHT RT Turns the pen right PENUP PU Lifts then pen up so that does not draw a line PENDOWN PD Puts the pen down again Repeat REPEAT will draw a square, equilateral triangle, a hexagon & octagon. You can make some amazing patterns and you can have a repeat within a repeat. Angle to turn 360 no. of sides of the shape. The REPEAT command can also be used for patterns To draw a star - REPEAT 8 [FD 100 RT 135] You can draw shapes on shapes and change colours or the length. Try others a repeating pattern using an angle less than 90 a repeating pattern using an angle between 90 and 180 2

3 Saving files MSW logo is not Microsoft so you cannot go to File, Save as you would in Word. Instead it is under Bitmap, SaveAs When you save the file it will be as a type of logo file with a prefix of.lgo. To see this as an image file you must SaveAs a file type of.bmp A.BMP file is a high resolution image file and can be viewed in thumbnails or in image manipulation software such as Paint or Photoshop. (Note don t try to save it as a GIF file it won t work). 3

4 Loading a background Provided that an image is a.bmp file you can load it as a background and draw over it. You need to select Bitmap, Load then get the file. The file must be big. (Note if you set the screen colour after loading the file it will write over it) Once you have a background you can draw shapes on it. A star would be repeat 8[fd 100 rt 135]. Note if you make the pensize wider it becomes a flower. 4

5 ROUTINES & PROGRAMS IN LOGO For example a routine or program to create a square in the Endall box: You then File, save and exit. Note that you must write end on a new line. Using the Commander you then type in square. 5

6 The principle is the same for other equilateral shapes and also can be used for repeated patterns. For instance star. You can also draw a star by turning an angle of 150. And if you make the pensize bigger it will draw a flower and not a star. Moving the pen There are coordinates for places on the screen x & y. You can make the pen go move to a random place by placing coordinate values. Note these are round brackets to randomplace penup setx (random 600) sety (random 300) pendown end Note you can have several commands in an Endall program provided you differentiate with to & end 6

7 Programming the attributes (set) screen and pen attributes The MSW LOGO commander will let you give instructions to the pen and screen but you cam program commands to change the attributes in the commander and in Endall. You don t use Set on the tool bar but in the code. Pen colour Setpc n (where n is a number) will set the pen to a colour that has a value of a number. Setpc 4 - will set the colour of the pen to blue Other colour values are (1 is blue, 2 is green, 4 is red, 5 is purple ) Screen colour In the same way you can set the screen colour so: Setsc 4 - will set the screen colour to blue You can incorporate these into the Endall statements. For instance you can create a shape with different colours out of text using the label command. 7

8 Using several commands to create random effects In Endall write two routines (hello & place) as follows: to hello repeat 4[pu fd 150 label "hello_i_am_random" rt fd 50 pd] end to place pu setx (random 457) sety (random 120) fd 40 rt end save & exit hten type in the commander repeat 1000[place setpc (random 255) +1 hello] In the commander you can also make the scrren colour change repeat 1000[place setpc (random 255) +1 setsc (random 255) +1 hello] 8

9 Saving files Remember to save these files as BMP using the Bitmap, Save As. You can then view these as image files. Printing files Best to save them then print them with image manipulation software such as Photoshop or Paint but you can Bitmap, Print Useful Web sites You tube basics to advanced feature=iv&src_vid=wfyygpzctce&v=xnmpgfs1gyu 9

Turtle Power. Introduction: Python. In this project, you ll learn how to use a turtle to draw awesome shapes and patterns. Activity Checklist

Turtle Power. Introduction: Python. In this project, you ll learn how to use a turtle to draw awesome shapes and patterns. Activity Checklist Python 1 Turtle Power All Code Clubs must be registered. By registering your club we can measure our impact, and we can continue to provide free resources that help children learn to code. You can register

More information

Logo PROGRAMMING WITH MSW Logo

Logo PROGRAMMING WITH MSW Logo Logo PROGRAMMING WITH MSW Logo Computer Programming Fundamentals N V Fitton Northern Virginia Community College vfitton@nvcc.edu www.nvcc.edu/home/vfitton MSW Logo comes from www.softronix.com/logo.html

More information

Ten easy steps to creating great MicroWorlds EX projects. Steve Robson

Ten easy steps to creating great MicroWorlds EX projects. Steve Robson How do I? Ten easy steps to creating great MicroWorlds EX projects. Steve Robson Contents Page 2 Page 3 Page 4 Page 5 Page 6 Page 7 Page 8 Page 9 Page 10 Introduction How do I move the Turtle? How do I

More information

GETTING STARTED. number of sides. draw a line. turn BIGGER OR SMALLER. change this number SQUARE TRIANGLE. these numbers have changed

GETTING STARTED. number of sides. draw a line. turn BIGGER OR SMALLER. change this number SQUARE TRIANGLE. these numbers have changed 1 repeat 6 forward 100 60 Getting Started Getting Started Getting Started Getting Started repeat 6 forward 100 forward 100 number of sides draw a line 1 60 turn 60 BIGGER OR SMALLER repeat 6 forward 38

More information

Chapter 2. Making Shapes

Chapter 2. Making Shapes Chapter 2. Making Shapes Let's play turtle! You can use your Pencil Turtle, you can use yourself, or you can use some of your friends. In fact, why not try all three? Rabbit Trail 4. Body Geometry Can

More information

UNIT H1 Angles and Symmetry Activities

UNIT H1 Angles and Symmetry Activities UNIT H1 Angles and Symmetry Activities Activities H1.1 Lines of Symmetry H1.2 Rotational and Line Symmetry H1.3 Symmetry of Regular Polygons H1.4 Interior Angles in Polygons Notes and Solutions (1 page)

More information

STEP 0: OPEN UP THE PYTHON EDITOR. If python is on your computer already, it's time to get started. On Windows, find IDLE in the start menu.

STEP 0: OPEN UP THE PYTHON EDITOR. If python is on your computer already, it's time to get started. On Windows, find IDLE in the start menu. 01 Turtle Power Introduction: This term we're going to be learning a computer programming language called Python. The person who created Python named it after his favourite TV show: Monty Python s Flying

More information

Logo for Kids: An Introduction. by Bob DuCharme

Logo for Kids: An Introduction. by Bob DuCharme : An Introduction by Bob DuCharme Table of Contents To the Adults (and Logophiles)... Before You Get Started...... 1. Robots, Commands, and Turtles... What is Programming, and Why Is It Fun?... 1 Logo

More information

CBA Fractions Student Sheet 1

CBA Fractions Student Sheet 1 Student Sheet 1 1. If 3 people share 12 cookies equally, how many cookies does each person get? 2. Four people want to share 5 cakes equally. Show how much each person gets. Student Sheet 2 1. The candy

More information

FORM 3 MATHEMATICS SCHEME C TIME: 30 minutes Non Calculator Paper INSTRUCTIONS TO CANDIDATES

FORM 3 MATHEMATICS SCHEME C TIME: 30 minutes Non Calculator Paper INSTRUCTIONS TO CANDIDATES DIRECTORATE FOR QUALITY AND STANDARDS IN EDUCATION Department for Curriculum Management and elearning Educational Assessment Unit Annual Examinations for Secondary Schools 2011 C FORM 3 MATHEMATICS SCHEME

More information

Fractions as Parts of a Group

Fractions as Parts of a Group 1 Fractions as Parts of a Group Use fractions to describe parts of a group. 1. 5 of the squares are white. a) What fraction of the group are people? b) What fraction of the group are dogs? 8 or 1 2 8 is

More information

Instructions for Creating a Poster for Arts and Humanities Research Day Using PowerPoint

Instructions for Creating a Poster for Arts and Humanities Research Day Using PowerPoint Instructions for Creating a Poster for Arts and Humanities Research Day Using PowerPoint While it is, of course, possible to create a Research Day poster using a graphics editing programme such as Adobe

More information

Paper 1. Calculator not allowed. Mathematics test. First name. Last name. School. Remember KEY STAGE 3 TIER 4 6

Paper 1. Calculator not allowed. Mathematics test. First name. Last name. School. Remember KEY STAGE 3 TIER 4 6 Ma KEY STAGE 3 Mathematics test TIER 4 6 Paper 1 Calculator not allowed First name Last name School 2007 Remember The test is 1 hour long. You must not use a calculator for any question in this test. You

More information

Paper 1. Calculator not allowed. Mathematics test. First name. Last name. School. Remember KEY STAGE 3 TIER 5 7

Paper 1. Calculator not allowed. Mathematics test. First name. Last name. School. Remember KEY STAGE 3 TIER 5 7 Ma KEY STAGE 3 Mathematics test TIER 5 7 Paper 1 Calculator not allowed First name Last name School 2009 Remember The test is 1 hour long. You must not use a calculator for any question in this test. You

More information

Level 1 - Maths Targets TARGETS. With support, I can show my work using objects or pictures 12. I can order numbers to 10 3

Level 1 - Maths Targets TARGETS. With support, I can show my work using objects or pictures 12. I can order numbers to 10 3 Ma Data Hling: Interpreting Processing representing Ma Shape, space measures: position shape Written Mental method s Operations relationship s between them Fractio ns Number s the Ma1 Using Str Levels

More information

Fireworks CS4 Tutorial Part 1: Intro

Fireworks CS4 Tutorial Part 1: Intro Fireworks CS4 Tutorial Part 1: Intro This Adobe Fireworks CS4 Tutorial will help you familiarize yourself with this image editing software and help you create a layout for a website. Fireworks CS4 is the

More information

Worksheets for Teachers. The Lowry

Worksheets for Teachers. The Lowry Worksheets for Teachers The Lowry Worksheets LS Lowry Worksheets for Primary & Secondary Pupils The following pages contain worksheets for you to use with your class. They can be photocopied for each person

More information

DISCOVERING 3D SHAPES

DISCOVERING 3D SHAPES . DISCOVERING 3D SHAPES WORKSHEETS OCTOBER-DECEMBER 2009 1 . Worksheet 1. Cut out and stick the shapes. SHAPES WHICH ROLL SHAPES WHICH SLIDE 2 . Worksheet 2: COMPLETE THE CHARTS Sphere, triangle, prism,

More information

Target To know the properties of a rectangle

Target To know the properties of a rectangle Target To know the properties of a rectangle (1) A rectangle is a 3-D shape. (2) A rectangle is the same as an oblong. (3) A rectangle is a quadrilateral. (4) Rectangles have four equal sides. (5) Rectangles

More information

Year 9 mathematics test

Year 9 mathematics test Ma KEY STAGE 3 Year 9 mathematics test Tier 6 8 Paper 1 Calculator not allowed First name Last name Class Date Please read this page, but do not open your booklet until your teacher tells you to start.

More information

Shapes Bingo. More general matters which apply to the use of this unit are covered on the next page.

Shapes Bingo. More general matters which apply to the use of this unit are covered on the next page. Shapes Bingo Shapes Bingo This unit provides the material for practicing some basic shape identification in the context of the well-known game of Bingo. Directions on how to play Bingo are not given here.

More information

Which shapes make floor tilings?

Which shapes make floor tilings? Which shapes make floor tilings? Suppose you are trying to tile your bathroom floor. You are allowed to pick only one shape and size of tile. The tile has to be a regular polygon (meaning all the same

More information

Area of a triangle: The area of a triangle can be found with the following formula: 1. 2. 3. 12in

Area of a triangle: The area of a triangle can be found with the following formula: 1. 2. 3. 12in Area Review Area of a triangle: The area of a triangle can be found with the following formula: 1 A 2 bh or A bh 2 Solve: Find the area of each triangle. 1. 2. 3. 5in4in 11in 12in 9in 21in 14in 19in 13in

More information

Week 2 Practical Objects and Turtles

Week 2 Practical Objects and Turtles Week 2 Practical Objects and Turtles Aims and Objectives Your aim in this practical is: to practise the creation and use of objects in Java By the end of this practical you should be able to: create objects

More information

Adobe Illustrator CS5 Part 1: Introduction to Illustrator

Adobe Illustrator CS5 Part 1: Introduction to Illustrator CALIFORNIA STATE UNIVERSITY, LOS ANGELES INFORMATION TECHNOLOGY SERVICES Adobe Illustrator CS5 Part 1: Introduction to Illustrator Summer 2011, Version 1.0 Table of Contents Introduction...2 Downloading

More information

MATHEMATICS Y3 Using and applying mathematics 3810 Solve mathematical puzzles and investigate. Equipment MathSphere www.mathsphere.co.

MATHEMATICS Y3 Using and applying mathematics 3810 Solve mathematical puzzles and investigate. Equipment MathSphere www.mathsphere.co. MATHEMATICS Y3 Using and applying mathematics 3810 Solve mathematical puzzles and investigate. Equipment Paper, pencil, ruler Dice, number cards, buttons/counters, boxes etc MathSphere 3810 Solve mathematical

More information

Which two rectangles fit together, without overlapping, to make a square?

Which two rectangles fit together, without overlapping, to make a square? SHAPE level 4 questions 1. Here are six rectangles on a grid. A B C D E F Which two rectangles fit together, without overlapping, to make a square?... and... International School of Madrid 1 2. Emily has

More information

Self-Positioning Handheld 3D Scanner

Self-Positioning Handheld 3D Scanner Self-Positioning Handheld 3D Scanner Method Sheet: How to scan in Color and prep for Post Processing ZScan: Version 3.0 Last modified: 03/13/2009 POWERED BY Background theory The ZScanner 700CX was built

More information

Cambridge International Examinations Cambridge International General Certificate of Secondary Education. Paper 1 May/June 2014 2 hours

Cambridge International Examinations Cambridge International General Certificate of Secondary Education. Paper 1 May/June 2014 2 hours *3483070646* Cambridge International Examinations Cambridge International General Certificate of Secondary Education INFORMATION AND COMMUNICATION TECHNOLOGY 047/ Paper May/June 04 hours Candidates answer

More information

What You ll Learn. Why It s Important

What You ll Learn. Why It s Important These students are setting up a tent. How do the students know how to set up the tent? How is the shape of the tent created? How could students find the amount of material needed to make the tent? Why

More information

REFERENCE GUIDE 1. INTRODUCTION

REFERENCE GUIDE 1. INTRODUCTION 1. INTRODUCTION Scratch is a new programming language that makes it easy to create interactive stories, games, and animations and share your creations with others on the web. This Reference Guide provides

More information

SMART Board Menu. Full Reference Guide

SMART Board Menu. Full Reference Guide SMART Board Full Reference Guide Start-Up After entering Windows, click on the desktop icon SMART Board Tools. The SMART Board icon will appear in the system tray on the bottom right of the screen. Turn

More information

Printer Setup. What Is the Printer Setup Module?... B-2. How to Access the Printer Setup Module... B-3. Reference Information. Standard Procedures

Printer Setup. What Is the Printer Setup Module?... B-2. How to Access the Printer Setup Module... B-3. Reference Information. Standard Procedures Printer Setup A ColorDesigner housekeeping setup option that allows you to select a system printer as well as the information to print on formula labels that you attach to paint cans. What Is the Printer

More information

SMART Meeting Pro 4.0 SP3 software

SMART Meeting Pro 4.0 SP3 software Help us make this document better smarttech.com/feedback/170897 SMART Meeting Pro 4.0 SP3 software USER S GUIDE Product registration If you register your SMART product, we ll notify you of new features

More information

LESSON 7: IMPORTING AND VECTORIZING A BITMAP IMAGE

LESSON 7: IMPORTING AND VECTORIZING A BITMAP IMAGE LESSON 7: IMPORTING AND VECTORIZING A BITMAP IMAGE In this lesson we ll learn how to import a bitmap logo, transform it into a vector and perform some editing on the vector to clean it up. The concepts

More information

CALCULATING THE AREA OF A FLOWER BED AND CALCULATING NUMBER OF PLANTS NEEDED

CALCULATING THE AREA OF A FLOWER BED AND CALCULATING NUMBER OF PLANTS NEEDED This resource has been produced as a result of a grant awarded by LSIS. The grant was made available through the Skills for Life Support Programme in 2010. The resource has been developed by (managers

More information

Shipment Label Header Guide

Shipment Label Header Guide Shipment Label Header Guide This guide will walk you through the 3 main phases of setting up a shipment label header within World Ship 2013. This guide was made using standard Windows Microsoft Office

More information

Possible Stage Two Mathematics Test Topics

Possible Stage Two Mathematics Test Topics Possible Stage Two Mathematics Test Topics The Stage Two Mathematics Test questions are designed to be answerable by a good problem-solver with a strong mathematics background. It is based mainly on material

More information

Introduction to Programming with Python Session 3 Notes

Introduction to Programming with Python Session 3 Notes Introduction to Programming with Python Session 3 Notes Nick Cook, School of Computing Science, Newcastle University Contents 1. Recap if statements... 1 2. Iteration (repetition with while loops)... 3

More information

Instructions. Tic, Tac, Toe Take turns placing a piece down. The first player to get 3 in a row (up, down or diagonally) wins!

Instructions. Tic, Tac, Toe Take turns placing a piece down. The first player to get 3 in a row (up, down or diagonally) wins! Thank you so much for downloading my Superhero unit. I hope you have lots of fun using it with your children. Please note that this unit is for your PERSONAL use only! That means that your may use it with

More information

A Digital Talking Storybook

A Digital Talking Storybook Using ICT Levels 3, 4 & 5 A Digital Talking Storybook Desirable Features: Presenting Music and Sound Desirable Features: Interactive Design Assessment Focus This Using ICT Task provides pupils with the

More information

MAKING AN ANIMATION in MICROWORLDS PRO

MAKING AN ANIMATION in MICROWORLDS PRO 1 To create a turtle, click first on this button and then on the white background 2 Try these commands in the command-center and see how the turtle moves on the screen pd right 10 right 45 pu forward 50

More information

Creating forms in Microsoft Access 2007

Creating forms in Microsoft Access 2007 Platform: Windows PC Ref no: USER 166 Date: 14 th January 2008 Version: 1 Authors: Derek Sheward, Claire Napier Creating forms in Microsoft Access 2007 This is the fourth document in a series of five on

More information

Numeracy Targets. I can count at least 20 objects

Numeracy Targets. I can count at least 20 objects Targets 1c I can read numbers up to 10 I can count up to 10 objects I can say the number names in order up to 20 I can write at least 4 numbers up to 10. When someone gives me a small number of objects

More information

SPRING UNIT 14. second half. Line symmetry and reflection. Measuring angles. Naming and estimating angles. Drawing angles

SPRING UNIT 14. second half. Line symmetry and reflection. Measuring angles. Naming and estimating angles. Drawing angles PART SPRING second half SHAPE AND SPACE SECTION Line symmetry and reflection SECTION Measuring angles SECTION Naming and estimating angles SECTION Drawing angles SECTION 5 Calculations involving angles

More information

GAP CLOSING. 2D Measurement. Intermediate / Senior Student Book

GAP CLOSING. 2D Measurement. Intermediate / Senior Student Book GAP CLOSING 2D Measurement Intermediate / Senior Student Book 2-D Measurement Diagnostic...3 Areas of Parallelograms, Triangles, and Trapezoids...6 Areas of Composite Shapes...14 Circumferences and Areas

More information

GRAPHIC DESIGN BITES FOR MARKETERS

GRAPHIC DESIGN BITES FOR MARKETERS GRAPHIC DESIGN BITES FOR MARKETERS VOL 1 2014 DESIGN EVALUATION Giving design feedback p3 HIERARCHY Learn why and how the hero leads the page p7 EPS What exactly is an.eps file? p5 More Maki COMING SOON

More information

3D Drawing. Single Point Perspective with Diminishing Spaces

3D Drawing. Single Point Perspective with Diminishing Spaces 3D Drawing Single Point Perspective with Diminishing Spaces The following document helps describe the basic process for generating a 3D representation of a simple 2D plan. For this exercise we will be

More information

PowerPoint Interface Menu Bars Work Area Slide and Outline View TASK PANE Drawing Tools

PowerPoint Interface Menu Bars Work Area Slide and Outline View TASK PANE Drawing Tools Microsoft PowerPoint is used for creating slide presentations to be used on a PC or even printed out as overheads and handouts. You can combine text, graphics, even audio and video to create exciting and

More information

WINDOWS 7 CLASS Instructor: Barbara Barone. Using WordPad and Paint Programs (Applications)

WINDOWS 7 CLASS Instructor: Barbara Barone. Using WordPad and Paint Programs (Applications) WINDOWS 7 CLASS Instructor: Barbara Barone Using WordPad and Paint Programs (Applications) In this exercise students will learn how to use the WordPad and Paint programs. The Students will learn how to

More information

Year 9 mathematics test

Year 9 mathematics test Ma KEY STAGE 3 Year 9 mathematics test Tier 5 7 Paper 1 Calculator not allowed First name Last name Class Date Please read this page, but do not open your booklet until your teacher tells you to start.

More information

Key Stage 2 Mathematics SATs Practice Papers

Key Stage 2 Mathematics SATs Practice Papers Key Stage 2 Mathematics SATs Practice Papers Levels 3-5 Set 1 www.online-maths-tutor.com Visit www.online-maths-tutor.com for Printable Resources Video Tutorials Online Classes You are free to copy and

More information

We are going to investigate what happens when we draw the three angle bisectors of a triangle using Geometer s Sketchpad.

We are going to investigate what happens when we draw the three angle bisectors of a triangle using Geometer s Sketchpad. Krystin Wright Geometer s Sketchpad Assignment Name Date We are going to investigate what happens when we draw the three angle bisectors of a triangle using Geometer s Sketchpad. First, open up Geometer

More information

1 st Grade Math Do-Anytime Activities

1 st Grade Math Do-Anytime Activities 1 st Grade Have your child help create a number line (0-15) outside with sidewalk chalk. Call out a number and have your child jump on that number. Make up directions such as Hop to the number that is

More information

Paper 1. Calculator not allowed. Mathematics test. First name. Last name. School. Remember KEY STAGE 3 TIER 4 6

Paper 1. Calculator not allowed. Mathematics test. First name. Last name. School. Remember KEY STAGE 3 TIER 4 6 Ma KEY STAGE 3 Mathematics test TIER 4 6 Paper 1 Calculator not allowed First name Last name School 2009 Remember The test is 1 hour long. You must not use a calculator for any question in this test. You

More information

Applications for Triangles

Applications for Triangles Not drawn to scale Applications for Triangles 1. 36 in. 40 in. 33 in. 1188 in. 2 69 in. 2 138 in. 2 1440 in. 2 2. 188 in. 2 278 in. 2 322 in. 2 none of these Find the area of a parallelogram with the given

More information

www.xtremepapers.net

www.xtremepapers.net UNIVERSITY OF CAMBRIDGE INTERNATIONAL EXAMINATIONS International General Certificate of Secondary Education *6746873383* INFORMATION AND COMMUNICATION TECHNOLOGY 047/ Paper October/November 00 hours Candidates

More information

AUTUMN UNIT 3. first half. Perimeter. Centimetres and millimetres. Metres and centimetres. Area. 3D shapes PART 3 MEASURES AND PROPERTIES OF SHAPES

AUTUMN UNIT 3. first half. Perimeter. Centimetres and millimetres. Metres and centimetres. Area. 3D shapes PART 3 MEASURES AND PROPERTIES OF SHAPES PART AUTUMN first half MEASURES AND PROPERTIES OF SHAPES SECTION Perimeter SECTION Centimetres and millimetres SECTION Metres and centimetres SECTION Key Stage National Strategy CROWN COPYRIGHT 00 Area

More information

Shape Dictionary YR to Y6

Shape Dictionary YR to Y6 Shape Dictionary YR to Y6 Guidance Notes The terms in this dictionary are taken from the booklet Mathematical Vocabulary produced by the National Numeracy Strategy. Children need to understand and use

More information

GAP CLOSING. 2D Measurement GAP CLOSING. Intermeditate / Senior Facilitator s Guide. 2D Measurement

GAP CLOSING. 2D Measurement GAP CLOSING. Intermeditate / Senior Facilitator s Guide. 2D Measurement GAP CLOSING 2D Measurement GAP CLOSING 2D Measurement Intermeditate / Senior Facilitator s Guide 2-D Measurement Diagnostic...4 Administer the diagnostic...4 Using diagnostic results to personalize interventions...4

More information

Advanced Programming Classes in Imagine

Advanced Programming Classes in Imagine 154 Eurologo 2005, Warsaw Advanced Programming Classes in Imagine Daniela Lehotska Faculty of Mathematics, Physics and Informatics Comenius University, Bratislava, Slovakia lehotska@fmph.uniba.sk Abstract

More information

Mathematics Second Practice Test 1 Levels 4-6 Calculator not allowed

Mathematics Second Practice Test 1 Levels 4-6 Calculator not allowed Mathematics Second Practice Test 1 Levels 4-6 Calculator not allowed Please read this page, but do not open your booklet until your teacher tells you to start. Write your name and the name of your school

More information

Welcome to CorelDRAW, a comprehensive vector-based drawing and graphic-design program for the graphics professional.

Welcome to CorelDRAW, a comprehensive vector-based drawing and graphic-design program for the graphics professional. Creating a logo Welcome to CorelDRAW, a comprehensive vector-based drawing and graphic-design program for the graphics professional. In this tutorial, you will create a logo for an imaginary coffee shop.

More information

Display Policy for Learning Environments

Display Policy for Learning Environments Display Policy for Learning Environments 1 Contents Section 1 1. Aims p.3 2. Policy Background p.3 3. Linking policy to curriculum priorities p.3 4. Purpose of display p.3-4 Section 2 5. The learning environment

More information

Sharing Presentations, Documents, and Whiteboards

Sharing Presentations, Documents, and Whiteboards Chapter 19 19 Sharing Presentations, Documents, and Whiteboards Your user role in an event determines your level of sharing. Whichever role you take, the following table describes the basic tasks associated

More information

Explorations with Shapes Kindergarten

Explorations with Shapes Kindergarten Ohio Standards Connections Geometry and Spatial Sense Benchmark C Sort and compare twodimensional figures and threedimensional objects according to their characteristics and properties. Indicator 1 Identify

More information

Area of a triangle: The area of a triangle can be found with the following formula: You can see why this works with the following diagrams:

Area of a triangle: The area of a triangle can be found with the following formula: You can see why this works with the following diagrams: Area Review Area of a triangle: The area of a triangle can be found with the following formula: 1 A 2 bh or A bh 2 You can see why this works with the following diagrams: h h b b Solve: Find the area of

More information

MICROSOFT POWERPOINT STEP BY STEP GUIDE

MICROSOFT POWERPOINT STEP BY STEP GUIDE IGCSE ICT SECTION 16 PRESENTATION AUTHORING MICROSOFT POWERPOINT STEP BY STEP GUIDE Mark Nicholls ICT Lounge Page 1 Contents Importing text to create slides Page 4 Manually creating slides.. Page 5 Removing

More information

Drawing Lines with Pixels. Joshua Scott March 2012

Drawing Lines with Pixels. Joshua Scott March 2012 Drawing Lines with Pixels Joshua Scott March 2012 1 Summary Computers draw lines and circles during many common tasks, such as using an image editor. But how does a computer know which pixels to darken

More information

Sample 11+ Assessment Test Maths

Sample 11+ Assessment Test Maths 1 GP 2012 llow 50 minutes to do this test. Work as quickly and as carefully as you can. If you want to answer these questions in multiple-choice format, use the separate multiple-choice answer sheet. If

More information

SCRATCH PROGRAMMING AND NUMERACY IN SENIOR PRIMARY CLASSES

SCRATCH PROGRAMMING AND NUMERACY IN SENIOR PRIMARY CLASSES SCRATCH PROGRAMMING AND NUMERACY IN SENIOR PRIMARY CLASSES Lero, NCTE 2012 Page 2 Table of Contents Page Number Course Introduction page 4 Module 1: page 5 Module 2: page 22 Module 3: page 32 Module 4:

More information

Third Grade Shapes Up! Grade Level: Third Grade Written by: Jill Pisman, St. Mary s School East Moline, Illinois Length of Unit: Eight Lessons

Third Grade Shapes Up! Grade Level: Third Grade Written by: Jill Pisman, St. Mary s School East Moline, Illinois Length of Unit: Eight Lessons Third Grade Shapes Up! Grade Level: Third Grade Written by: Jill Pisman, St. Mary s School East Moline, Illinois Length of Unit: Eight Lessons I. ABSTRACT This unit contains lessons that focus on geometric

More information

SA B 1 p where is the slant height of the pyramid. V 1 3 Bh. 3D Solids Pyramids and Cones. Surface Area and Volume of a Pyramid

SA B 1 p where is the slant height of the pyramid. V 1 3 Bh. 3D Solids Pyramids and Cones. Surface Area and Volume of a Pyramid Accelerated AAG 3D Solids Pyramids and Cones Name & Date Surface Area and Volume of a Pyramid The surface area of a regular pyramid is given by the formula SA B 1 p where is the slant height of the pyramid.

More information

At the core of this relationship there are the three primary pigment colours RED, YELLOW and BLUE, which cannot be mixed from other colour elements.

At the core of this relationship there are the three primary pigment colours RED, YELLOW and BLUE, which cannot be mixed from other colour elements. The Colour Wheel The colour wheel is designed so that virtually any colours you pick from it will look good together. Over the years, many variations of the basic design have been made, but the most common

More information

Customizing your Blackboard Course

Customizing your Blackboard Course Customizing your Blackboard Course Changing the visual appearance Menu Buttons Changing your course buttons can add a splash of color to your course and make it more visually appealing to your students.

More information

Communicate: In Print

Communicate: In Print Communicate: In Print A simple guide Work areas Communicate: In Print has two different modes in which to edit your documents: Create and Adjust modes. These are easily interchangeable and the toolbars

More information

Periodontology. Digital Art Guidelines JOURNAL OF. Monochrome Combination Halftones (grayscale or color images with text and/or line art)

Periodontology. Digital Art Guidelines JOURNAL OF. Monochrome Combination Halftones (grayscale or color images with text and/or line art) JOURNAL OF Periodontology Digital Art Guidelines In order to meet the Journal of Periodontology s quality standards for publication, it is important that authors submit digital art that conforms to the

More information

Review of Basic Fraction Concepts

Review of Basic Fraction Concepts Review of asic Fraction Concepts Objective To review fractions as parts of a whole (ONE), fractions on number lines, and uses of fractions. www.everydaymathonline.com epresentations etoolkit lgorithms

More information

Shapes & Designs Notes

Shapes & Designs Notes Problem 1.1 Definitions: regular polygons - polygons in which all the side lengths and angles have the same measure edge - also referred to as the side of a figure tiling - covering a flat surface with

More information

Access Tutorial 1 Creating a Database

Access Tutorial 1 Creating a Database Access Tutorial 1 Creating a Database Microsoft Office 2013 Objectives Session 1.1 Learn basic database concepts and terms Start and exit Access Explore the Microsoft Access window and Backstage view Create

More information

Sharing Files and Whiteboards

Sharing Files and Whiteboards Your user role in a meeting determines your level of file sharing. The type of files you can share include documents, presentations, and videos. About Sharing Files, page 1 Changing Views in a File or

More information

2. How to Use SMART Board as a Projector and Whiteboard

2. How to Use SMART Board as a Projector and Whiteboard Page 1 Smart Board Getting Started Smart Board is an interactive whiteboard developed by SMART Technologies that combines the capabilities of a data projector and a white board. Use the SMART Board to

More information

Assessment For The California Mathematics Standards Grade 3

Assessment For The California Mathematics Standards Grade 3 Introduction: Summary of Goals GRADE THREE By the end of grade three, students deepen their understanding of place value and their understanding of and skill with addition, subtraction, multiplication,

More information

How to fold simple shapes from A4 paper

How to fold simple shapes from A4 paper How to fold simple shapes from 4 paper ndrew Jobbings www.arbelos.co.uk 18 February 2012 ontents Introduction 1 Square 2 Equilateral triangle 3 Rhombus 5 Regular hexagon 6 Kite 7 Why do the methods work?

More information

PROBABILITY AND RELATIVE FREQUENCY

PROBABILITY AND RELATIVE FREQUENCY Edexcel GCSE Mathematics (Linear) 1MA0 PROBABILITY AND RELATIVE FREQUENCY Materials required for examination Ruler graduated in centimetres and millimetres, protractor, compasses, pen, HB pencil, eraser.

More information

Area is a measure of how much space is occupied by a figure. 1cm 1cm

Area is a measure of how much space is occupied by a figure. 1cm 1cm Area Area is a measure of how much space is occupied by a figure. Area is measured in square units. For example, one square centimeter (cm ) is 1cm wide and 1cm tall. 1cm 1cm A figure s area is the number

More information

Scanning and OCR Basics

Scanning and OCR Basics Scanning and OCR Basics Scan Text Documents into Word 2003 using OCR Software 1. Place the document to scan face down on the flatbed scanner. 2. Launch Microsoft Word 2003 for Windows. 3. Select Acquire

More information

Pimping Up Your USB Drive

Pimping Up Your USB Drive In this tutorial we show how to Pimp Up your USB Drive, by adding a display Icon for the device, as well as a cool background for the folders in the top level directory of the USB. Once you have completed

More information

MATHS ACTIVITIES FOR REGISTRATION TIME

MATHS ACTIVITIES FOR REGISTRATION TIME MATHS ACTIVITIES FOR REGISTRATION TIME At the beginning of the year, pair children as partners. You could match different ability children for support. Target Number Write a target number on the board.

More information

www.xtremepapers.net

www.xtremepapers.net UNIVERSITY OF CAMBRIDGE INTERNATIONAL EXAMINATIONS International General Certificate of Secondary Education *6585104589* INFORMATION AND COMMUNICATION TECHNOLOGY 0417/11 Paper 1 May/June 2011 2 hours Candidates

More information

How to Make a Paper Cut-Out Luther Rose by Kelly Klages

How to Make a Paper Cut-Out Luther Rose by Kelly Klages How to Make a Paper Cut-Out Luther Rose by Kelly Klages This tutorial will teach you how to cut a traditional, 5-petal Luther rose out of paper, using the paper-folding technique for making a 5-point snowflake

More information

Doing Multiple Regression with SPSS. In this case, we are interested in the Analyze options so we choose that menu. If gives us a number of choices:

Doing Multiple Regression with SPSS. In this case, we are interested in the Analyze options so we choose that menu. If gives us a number of choices: Doing Multiple Regression with SPSS Multiple Regression for Data Already in Data Editor Next we want to specify a multiple regression analysis for these data. The menu bar for SPSS offers several options:

More information

Tessellating with Regular Polygons

Tessellating with Regular Polygons Tessellating with Regular Polygons You ve probably seen a floor tiled with square tiles. Squares make good tiles because they can cover a surface without any gaps or overlapping. This kind of tiling is

More information

Grade 7/8 Math Circles November 3/4, 2015. M.C. Escher and Tessellations

Grade 7/8 Math Circles November 3/4, 2015. M.C. Escher and Tessellations Faculty of Mathematics Waterloo, Ontario N2L 3G1 Centre for Education in Mathematics and Computing Tiling the Plane Grade 7/8 Math Circles November 3/4, 2015 M.C. Escher and Tessellations Do the following

More information

Multi-Touch Ring Encoder Software Development Kit User s Guide

Multi-Touch Ring Encoder Software Development Kit User s Guide Multi-Touch Ring Encoder Software Development Kit User s Guide v2.0 Bulletin #1198 561 Hillgrove Avenue LaGrange, IL 60525 Phone: (708) 354-1040 Fax: (708) 354-2820 E-mail: instinct@grayhill.com On the

More information

Geometry Notes RIGHT TRIANGLE TRIGONOMETRY

Geometry Notes RIGHT TRIANGLE TRIGONOMETRY Right Triangle Trigonometry Page 1 of 15 RIGHT TRIANGLE TRIGONOMETRY Objectives: After completing this section, you should be able to do the following: Calculate the lengths of sides and angles of a right

More information

MassArt Studio Foundation: Visual Language Digital Media Cookbook, Fall 2013

MassArt Studio Foundation: Visual Language Digital Media Cookbook, Fall 2013 INPUT OUTPUT 08 / IMAGE QUALITY & VIEWING In this section we will cover common image file formats you are likely to come across and examine image quality in terms of resolution and bit depth. We will cover

More information

11.3 Curves, Polygons and Symmetry

11.3 Curves, Polygons and Symmetry 11.3 Curves, Polygons and Symmetry Polygons Simple Definition A shape is simple if it doesn t cross itself, except maybe at the endpoints. Closed Definition A shape is closed if the endpoints meet. Polygon

More information

UNIVERSITY OF CAMBRIDGE INTERNATIONAL EXAMINATIONS International General Certificate of Secondary Education. Paper 1 October/November 2011 2 hours

UNIVERSITY OF CAMBRIDGE INTERNATIONAL EXAMINATIONS International General Certificate of Secondary Education. Paper 1 October/November 2011 2 hours www.xtremepapers.com UNIVERSITY OF CAMBRIDGE INTERNATIONAL EXAMINATIONS International General Certificate of Secondary Education *2238279192* INFORMATION AND COMMUNICATION TECHNOLOGY 0417/12 Paper 1 October/November

More information

Avery DesignPro 2000 User Guide

Avery DesignPro 2000 User Guide Avery DesignPro 2000 User Guide Creating labels and cards for your personal needs is easy with Avery DesignPro 2000 Avery DesignPro 2000 User Guide First edition of the condensed user manual for Avery

More information