Week 4 DO NOW QUESTIONS. Question: Predict a turtle’s heading after this procedure is run once. to go ask turtles [ forward 1 set heading random 45 right.

Slides:



Advertisements
Similar presentations
Logo Lesson 1 TBE Fall 2004 Farah Fisher.
Advertisements

New Mexico User Test Starlogo TNG September 16, 2006 Starlogo TNG September 16, 2006.
Week 7 DO NOW QUESTIONS. Question: In the following segment of code, “food-location” is a ___? breed [ foragers forager ] breed [ followers follower ]
Key Concept 1. Key Concept 2 Key Concept 3 Key Concept 4.
Day 1 Goal: To create a model of people hunting in the forest for mushrooms and then start working on improving their mushroom hunting ability mathematically.
What produces the different colors in a fireworks display?
Objective: MCAS review- Momentum
Week 13 DO NOW QUESTIONS. Suppose you had a working model of small fish feeding and living in the ocean. How could you change the code below to make the.
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,
New Mexico Computer Science For All Breeds and Shapes in NetLogo Maureen Psaila-Dombrowski.
Concept Question 1 We decide to drive this car down the hallway at a constant speed. Which graph best shows the distance the car travels v. the time it.
1 Focal Point and Images Light from a nearby object passes through a lens forming an image. Which of the following is true? a)The light is in focus at.
4-3 Cornell Bohr’s Model of the Atom Energy Levels
Linear Inequalities in Two Variables
Look at the two graphs. Determine the following: A.The equation of each line. B.How the graphs are similar. C.How the graphs are different. A.The equation.
Introduction to TouchDevelop
B.A. (Mahayana Studies) Introduction to Computer Science November March Logo (Part 1) An introduction to Logo: drawing, moving,
Be Rational! Clipboard Math #20 **EXPLAIN how you picked your answer.
Chapter 7: Repetition 7.1 Definite loops (counted) 7.2 Conditional loops (indefinite)
PreAP Computer Science Quiz
Noadswood Science,  To know the basics of Python coding and decoding Monday, September 07, 2015.
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,
Review 5th NBT1 and NBT2.
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.
Rotations EQ: How do you rotate a figure 90, 180 or 270 degrees around a given point?
Have you ever wondered what produces the different colors in a fireworks display? Certain compounds will produce certain colors of light when they are.
Introduction to Algorithms using Netlogo. What’s an Algorithm Definitions of Algorithm on the Web: –A procedure or formula for solving a problem.
Introduction to TouchDevelop
Week 9 DO NOW QUESTIONS. Question: If the following procedure is executed after 1 turtle is created in the program, what shape is created on the NetLogo.
MIDTERM 1 UTC Thu-Sep 27, 7:00PM - 9:00PM Course Summary Unit 1 Provided Bring pencils, calculators (memory cleared)
Space Quiz for CPS. 1. If a student were to make a model of the Earth and moon, which items would be used for the model? A.A marble for earth and orange.
Week 2 DO NOW QUESTIONS. In this procedure the programmer intended to clear all the turtles and patches and make a new turtle of size 3 with the pen down,
Week 10 DO NOW QUESTIONS. A programmer has created 100 turtles of random colors and randomly distributes green patches. Every time the turtles land on.
What would graph B look like?.
Enzymes Activity: Chew on This!
4.3 Modern Atomic Theory What can happen to electrons when atoms gain or lose energy? Bohr’s Model of the Atom.
Latitude and Longitude. Latitude- the distance in degrees north or south of the equator The latitude of the equator is 0° (degrees)  What is latitude?
Hints on debugging
1 Real vs. Diagram Exercise What is this?
1 Building Your Own Turtle Functions For making really cool pictures!
Chapter 4 Probability and Counting Rules Section 4-2
Chapter 9. The cart’s change of momentum is A.–30 kg m/s. B.–20 kg m/s. C.–10 kg m/s. D. 10 kg m/s. E. 30 kg m/s.
Week 13 DO NOW QUESTIONS. to FishWiggle right random 45 left random 45 forward 1 set Fenergy Fenergy end Suppose you had a working model of small.
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.
Week 3 DO NOW QUESTIONS. In this setup procedure the programmer intended to create one turtle of each color: red, green, and blue. What went wrong? to.
Equations of Circles. You can write an equation of a circle in a coordinate plane, if you know: Its radius The coordinates of its center.
Gwarmup28Algebra TEXAS Style Geometry Warm-up 28.
Increase the number of lines before coming back to the origin … triangle square Draw a circle.
Learning Objectives 1. Understand how the Small Basic Turtle operates. 2. Be able to draw geometric patterns using iteration.
2.In the circuit shown below, the switch is initially closed and the bulb glows brightly. When the switch is opened, what happens to the brightness of.
Unit 6 Test Review Zoller. Choose the star that shows a line of symmetry. a. b. c. d.
Demo 4: Sketch position vs time and velocity vs time graphs for when Moving Man: walks steadily towards the tree for 6 seconds, then stands still for 6.
4.3 The Modern Atomic Theory. Have you ever wondered what produces the different colors in a fireworks display? Certain compounds will produce certain.
When you write to a file, what happens to the content that’s already there? A.The new content replaces the original content. B.The new content goes at.
Modeling and Simulation Module 1: Lesson 1 Introduction to Complex Adaptive Systems and Computer Modeling and Simulation.
The spinner is spun 12 times. It lands on blue 1 time. What is the experimental probability? Station 1 Yellow   Blue  Red Green 
Interpreting position vs time graphs Still pretty basic stuff.
Module 2: Investigation 3
Week 3 DO NOW QUESTIONS.
Learning to program with Logo
Frozen Graphics Lesson 3.
Gaming with conditionals
Interpreting Position vs Time Graphs
Chap. 3 Functions Start Python IDLE (Shell) and open a new file.
Gaming with conditionals
Everyday sequence algorithms that develop movement
Interpreting position vs time graphs
Logo Programming.
creating a ecosystems model in net logo
Presentation transcript:

Week 4 DO NOW QUESTIONS

Question: Predict a turtle’s heading after this procedure is run once. to go ask turtles [ forward 1 set heading random 45 right 90 ] end a)The turtle’s heading will be a random heading between 0 to 134 degrees. b)The turtle’s heading will be between 0 to 44 degrees from its original heading. c)The turtle’s heading will be a random heading between 0 and 90 degrees. d)The turtle’s heading will be a random heading between 90 and 134 degrees.

Question: What type of pattern will a turtle draw after performing this procedure as an infinite loop? to go ask turtles [ pen-down forward 1 right 60 + (random 10) forward 1 left 60 + (random 10) ] end a)a regular dashed zigzag; b)an irregular solid zigzag; c)a regular solid zigzag; d)an irregular dashed zigzag.

Question: This procedure is intended to have an agent choose a random heading that would allow it to go in any direction on the map, then move forward 1 space, then turn right 45 degrees, but it doesn’t work as intended. What is wrong? to go ask turtles [ set heading random 100 forward 1 right 45 ] end a)“set heading random 100” should be “set heading random 360“ b)“right 45” should be before “set heading random 100”; c)“forward 1 should be after “right 45”; d)“right 45” should be “left 45”

Question: What type of pattern will a turtle draw when performing the procedure below as an infinite loop? to go ask turtles [ pen-down forward 1 right random 90 left random 30 ] end a)an irregular walk limping toward the right; b)an irregular walk limping towards the left; c)a tight right-handed circle ; d)an irregular dashed zigzag.

Question: In this setup procedure, the programmer wanted to create between 1 and 50 agents. How should the error be fixed? to setup clear-all create-turtles random 50 [ set size 2 forward 10 ] end a)replace “random 50” with “(random )”; b)replace “random 50 with “(random 50) + 1”; c)replace “random 50” with “(random 49) + 1”; d)replace “random 50” with “random 51”.