Gogga Gogga on the Grid

Gogga Gogga on the Grid

10th Grade

7 Qs

quiz-placeholder

Similar activities

Small Basic (Turtle)

Small Basic (Turtle)

KG - University

10 Qs

Greenfoot Java Classes

Greenfoot Java Classes

10th Grade

12 Qs

AP CSP Boolean Logic 4

AP CSP Boolean Logic 4

9th - 12th Grade

10 Qs

Boolean Logic

Boolean Logic

9th - 12th Grade

10 Qs

Unit 2 Knowledge Test Make Up

Unit 2 Knowledge Test Make Up

9th - 12th Grade

11 Qs

Python Vocab 1 Commands Quiz

Python Vocab 1 Commands Quiz

10th Grade - University

10 Qs

Problem Solving

Problem Solving

9th - 12th Grade

11 Qs

Collecting Treasure with Laurel: Lesson 3

Collecting Treasure with Laurel: Lesson 3

6th Grade - University

10 Qs

Gogga Gogga on the Grid

Gogga Gogga on the Grid

Assessment

Quiz

Computers

10th Grade

Medium

Created by

Claire Firman

Used 9+ times

FREE Resource

7 questions

Show all answers

1.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

"Gogga" in java allows us to

move a bug

make spots

do calculations

play music

2.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

To program with Gogga I need a file called

it.jar

jar.it

it.it

jarva

3.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

To create a Gogga on a grid, I need the following command in my program:

Gogga bug = new Gogga();

Go Gogga Go;

Gogga bug ();

Gogga gogga on the wall;

4.

MULTIPLE SELECT QUESTION

45 sec • 1 pt

By default a new Gogga bug is:

at position x = 7, y = 5

RED

points UP

moves around all the time

5.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

To make a Gogga go forwards on the grid use the command:

bug.move();

bug.move;

moveIt();

bug.forward();

6.

MULTIPLE SELECT QUESTION

45 sec • 1 pt

You can make a Gogga turn by doing this:

bug.turnRight();

bug.turnLeft();

bug.turn();

bug.rotate();

7.

FILL IN THE BLANK QUESTION

1 min • 1 pt

// The following code must draw a square:

Gogga bug = new Gogga();

bug.move();

_________

bug.move();

bug.turnLeft();

bug.move();

bug.turnLeft();

bug.move();

// Give the missing line?