Commands
Procedures
Variables
Random
Environment
100

This is where you can enter instructions for the observer, patches, and turtles.

Command Center or Command Tab

100

Where are procedures written?

NetLogo Code Tab

100

What is a variable? 

Something that can be changed.

100

The creatures in a NetLogo model. 

Turtles

100

The place where you select a simulation to work with

Library

200

From the Command Center, what would you choose from the drop menu to work with turtles? 

Turtles

200

Can procedures be changed after they have been written?

Yes

200

In an ecosystem, what are some turtle variables? Name 3

move, eat, reproduce, die

number, color, location 

200

This is what you need to do after you have changed or added code in NetLogo, so that the simulation will run with the new or changed code. 

Recompile

200

The button clicked to arrange a NetLogo simulation? 

Setup

300

When writing NetLogo Code, what does each command need to be paired up with?

a procedure

300

What does each procedure begin and end with?

To, End

300

What does in "IF" command do? 

Returns one result if something happens and another result if it doesnt.

300

A tool that displays the number of objects that are present in the current simulation

Monitor

300

The button clicked to start and stop a NetLogo Simulation?

Go

400

Write the command to turn turtles pink

set color pink

400

Write the procedure to create 5 turtles

to setup

create-turtles 5

end

400

What is:   A variable listed at the top of a program and can be used anywhere in the program

Global Variable

400

The tool used to visualize data in NetLogo

Plot or Graph

400

How time is measured in NetLogo

Ticks

500

Write the command to turn patches green

set pcolor green

500

What will the procedure below do?

to setup-patches

ask patches [set pcolor green]

end 

Make all patches turn green when the setup button is pushed

500

What does this variable do? 

[setxy random-xcor random-ycor]

It sets the position for the turtles

500

What will this procedure do? 

To check-death

ask turtles

[if energy <=5  [die]]

end

All turtles will die when their energy level is <= 5

500

The place that explains what the NetLogo simulation is all about.

Model Info

M
e
n
u