Green foot

studied byStudied by 2 people
0.0(0)
learn
LearnA personalized and smart learning plan
exam
Practice TestTake a test on your terms and definitions
spaced repetition
Spaced RepetitionScientifically backed study method
heart puzzle
Matching GameHow quick can you match all your cards?
flashcards
FlashcardsStudy terms and definitions

1 / 15

flashcard set

Earn XP

16 Terms

1

Move via arrow key

If (Greenfoot.isKeyDown(“ ”)) {

setLocation( getX(), getY());

New cards
2

Turn when at edge

If (isAtEdge()) {

Turn(180);

Move(10);

}

New cards
3

Make an object move randomly

move(Greenfoot.getRandomNumber(10));

turn(Greenfoot.getRandomNumber(180) -90);

New cards
4

Eat

If (isTouching(car.class)) {

getWorld().removeObject(this);

}

New cards
5

Play sound

Greenfoot.playSound(“pop.wav”)

New cards
6

Stop

Greenfoot.stop();

New cards
7

Counter

Counter counter = (Counter)getWorld().getObjects(Counter.class) .get(0);

counter.add(1);

New cards
8

Sensible size for a word

(100, 100, 4)

New cards
9

What is an assignment

Giving something a value

New cards
10

What is a selection

if statement

New cards
11

Example of a superclass

  • World

  • Actor

New cards
12

Example of an inherited class.

World —> ground

New cards
13

What is a parameter

It is anything inside the bracket

New cards
14

What is method

Public void act

New cards
15

Example of a private property

counter (LOWER case ONLY)

New cards
16

Examplm of a parameter

Amount

New cards

Explore top notes

note Note
studied byStudied by 11 people
980 days ago
5.0(1)
note Note
studied byStudied by 39 people
956 days ago
5.0(3)
note Note
studied byStudied by 7 people
398 days ago
5.0(1)
note Note
studied byStudied by 17 people
853 days ago
5.0(1)
note Note
studied byStudied by 11338 people
656 days ago
4.6(36)
note Note
studied byStudied by 116 people
488 days ago
5.0(1)
note Note
studied byStudied by 30 people
700 days ago
5.0(1)
note Note
studied byStudied by 20 people
828 days ago
5.0(1)

Explore top flashcards

flashcards Flashcard (83)
studied byStudied by 57 people
770 days ago
5.0(2)
flashcards Flashcard (40)
studied byStudied by 10 people
728 days ago
5.0(1)
flashcards Flashcard (40)
studied byStudied by 2 people
607 days ago
5.0(2)
flashcards Flashcard (59)
studied byStudied by 46 people
273 days ago
5.0(1)
flashcards Flashcard (54)
studied byStudied by 14 people
422 days ago
5.0(1)
flashcards Flashcard (71)
studied byStudied by 35 people
492 days ago
5.0(1)
flashcards Flashcard (352)
studied byStudied by 46 people
399 days ago
5.0(1)
flashcards Flashcard (114)
studied byStudied by 2 people
7 minutes ago
5.0(1)
robot