Code.org CSD JS Bingo

Code.org CSD JS Bingo

Assessment

Flashcard

Information Technology (IT)

8th Grade

Hard

Created by

Rachael Green

FREE Resource

Student preview

quiz-placeholder

27 questions

Show all answers

1.

FLASHCARD QUESTION

Front

Displays a group of sprites. If no parameter is specified, draws all sprites in the sketch.

Back

drawSprites()

2.

FLASHCARD QUESTION

Front

X = X + 1 is an example of a counter variable.

Back

Counter Variable

3.

FLASHCARD QUESTION

Front

This code will draw a yellow circle with blue outline in the middle of the screen.

Back

fill("yellow"); stroke("blue"); ellipse(200, 200);

4.

FLASHCARD QUESTION

Front

This code will draw a yellow circle with no outline in the middle of the screen.

Back

fill("yellow"); noStroke(); ellipse(200, 200);

5.

FLASHCARD QUESTION

Front

This code will draw a white circle with black outline in the middle of the screen.

Back

noFill(); ellipse(200, 200);

6.

FLASHCARD QUESTION

Front

The lines of code contained inside its block are continuously executed until the program is stopped.

Back

function draw() { }

7.

FLASHCARD QUESTION

Front

This code draws the sprite half its normal size.

Back

note.scale = 0.5;

Create a free account and access millions of resources

Create resources
Host any resource
Get auto-graded reports
or continue with
Microsoft
Apple
Others
By signing up, you agree to our Terms of Service & Privacy Policy
Already have an account?