New Mexico User Test Starlogo TNG September 16, 2006 Starlogo TNG September 16, 2006.

Slides:



Advertisements
Similar presentations
Robofest 2005 Introduction to Programming RIS 2.0 RCX Code.
Advertisements

Instruction: Use mouses left button. Use mouses left button. If mouse buttons dont work, use arrow keys of keyboard for slide show. If mouse buttons dont.
Instruction: Use mouses left button. Use mouses left button. If mouse buttons dont work, use arrow keys of keyboard for slide show. If mouse buttons dont.
Click here Can you work out the answer? 20 ÷ 4 =
Click the arrow to begin learning about orders of operations.
Making the most of Moodle 2 (A quick guide for students) Updated 08 February 2012 NOTE: The slides will run automatically. You can also press the arrow.
Flashcards? Lets Get Started. Question 1 Get Answer.
Each laptop is numbered Each slot in the laptop cabinet is numbered. Be sure to pick up the laptop that has been assigned to you! Getting the Laptops.
Blockbusters!!! Writing Equations.
Programming with Alice Computing Institute for K-12 Teachers Summer 2011 Workshop.
5.9 + = 10 a)3.6 b)4.1 c)5.3 Question 1: Good Answer!! Well Done!! = 10 Question 1:
CREATING A PAYMENT REQUEST FOR A NEW VENDOR
Read and answer the questions on each slide. To move through the tutorial, press the return key or the right arrow key. To return to a previous slide,
11 = This is the fact family. You say: 8+3=11 and 3+8=11
Graphing Linear Equations
Playing computer with logic problems Please use speaker notes for additional information!
Rules.
StarLogoTNG 101 Treasure Hunt Game Unit Lesson 9: Variables.
StarLogoTNG 101 Treasure Hunt Game Unit Lesson 4: Forever and Procedures.
Can you identify the components of a computer ? Press F5 to begin! 1 st Question.
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,
Downloading and Installing AutoCAD Architecture 2015 This is a 4 step process 1.Register with the Autodesk Student Community 2.Downloading the software.
Computers on Wheels Teacher Overview. Be sure to pick up the laptop that has been assigned to you! Each slot in the laptop cabinet is numbered. Each laptop.
Creating FrontPage Tasks The task view allows you to add information about what you want to accomplish when creating your Web site.
Food Chain Game By: Jack and Anthony Lets get ready to play!
Dragon Naturally Speaking Tutorial What is Dragon Naturally Speaking? Dragon is a dictation software, students can dictate a paper rather than type it.
StarLogoTNG Treasure Hunt Game Unit Lesson 1: Basic Movement.
Wireless Netbook Lab Student Overview. Be sure to pick up the Netbook that has been assigned to you! Each slot in the Netbook cabinet is numbered. Each.
Fell View Computer Club StarLogo TNG – Session Two.
When the status is “Report Denied”, means that PMA Admins review the inspection report and they deny it. The Reports Correction Procedure can be start.
01-Intro-Object-Oriented-Prog-Alice1 Barb Ericson Georgia Institute of Technology Aug 2009 Introduction to Object-Oriented Programming in Alice.
Learning to program using Minecraft. Learning Objective Know what Minecraft is and to explain some of it’s uses Build a simple house in creative mode.
Modeling and Simulation Module 1: Lesson 1
StarLogoTNG 101 Treasure Hunt Game Unit Lesson 3: Treasures and Hazards.
Introduction to Scratch!
Week 11 DO NOW QUESTIONS. An ask turtles block is a set of instructions that is issued to every turtle. Even though computers can do things very quickly,
Programming with Alice Computing Institute for K-12 Teachers Summer 2011 Workshop.
A Look Inside Some NetLogo Simulations Bruce Edmonds Centre for Policy Modelling Manchester Metropolitan University.
Class Usability Experience User slides are in BLUE.
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.
StarLogoTNG 101 Treasure Hunt Game Unit Lesson 2: Keyboard Controls.
OPERATING TERMS OF THE COMPUTER Exit Ticket AB Re-teach.
How to Make Location Map.
StarLogoTNG Treasure Hunt Game Unit Lesson 1: Basic Movement.
ResponseCard XR Answering Questions. Polling The host computer must be able to receive your responses, but it can only do so when the polling is open.
Making Python Pretty!. How to Use This Presentation… Download a copy of this presentation to your ‘Computing’ folder. Follow the code examples, and put.
Variables. Todays Lesson  In todays lesson you are going to:  Learn to use variables  Learn to ask for user input  Learn to save the users response.
Algorithms Writing instructions in the order they should execute.
Links take you to…  Different slides in your presentation  A different PowerPoint presentation  Any program - (Word can be used for example to complete.
Variables and Random Numbers Computer App Session 4.
Multiplication Level 1 (Facts 0-2) Read These Instructions:  Try to get the answer before the computer puts it on the screen.  Do not click on your.
Scratch Programming Lesson 1 Moving objects with sound and changing colours.
Chapter 3: Animations Spotlight on PresentationsChapter 31.
Introduction to Scratch We will be using the Scratch Environment today, so please log in to the Scratch website (scratch.mit.edu)
Name Your Account Type in a user name of your choice.
Introducing Scratch Learning resources for the implementation of the scenario
Thurso High School Design and Technology Tutorial Two Dice.
ICT Essential Skills.
Monitoring Implementation and Sustainability
Introduction to Events
CLICK HERE TO BEGIN THE GAME!!
Organizing common actions
Introduction to TouchDevelop
creating a ecosystems model in net logo
Turning in My Assignment
Whole Number Mental Add and Subtract
What do i do if my computer isn’t working?
Presentation transcript:

New Mexico User Test Starlogo TNG September 16, 2006 Starlogo TNG September 16, 2006

About this user test We are testing the usability of the program not you, so no pressure. Please fill out the the task form during and after each task we ask you to do. Feel free to use the Internet as a resource. We can’t give you answers since there is no right answer.

Introduction to TNG It is a block programming language. Breeds play a more important role. Buttons in runtime workspace. Procedures and variables are created differently from Starlogo 2. Agent monitors still here.

Task 1 Find the following blocks, move them out to the canvas. Once you have done so, remove these blocks from the canvas.

Task 2 Make the turtle agents in Spaceland move forward, right, and forward again.

Task 3 Make your turtle agent walk forever.

Task 4 Make the turtle agent move forward when you press the up arrow on your keyboard. Hint: computer needs to check for key presses constantly.

Task 5 Now make the turtle agent respond to other keys, left to turn left, and right to turn right.

Task 6 Create a procedure called “Movement” and have it enclose the keyboard control movement you created for your turtle agent. Try moving your turtle agent again with the keyboard.

Task 7 Create a variable “Steps” and assign it a random value from 1-10

Task 8 Use your “Steps” variable to determine the number of steps forward your turtle agent now makes in your “Movement” procedure.

Task 9 Add a parameter to your “Movement” procedure and call it “Angle” Use the “Angle” parameter to determine the amount your turtle agent turns left and right

Task 10 Add a new breed of agents. Name them “cubes” Choose a cube shape for the new breed of agents.

Task 11 Create 8 more cube agents. Hint:

Task 12 Create a procedure called “wander” for the cube agents. This new procedure should make the cubes walk randomly across Spaceland.