p5.js - shape, color, syntax

p5.js - shape, color, syntax

Assessment

Flashcard

Computers

8th Grade

Hard

Created by

Quizizz Content

FREE Resource

Student preview

quiz-placeholder

16 questions

Show all answers

1.

FLASHCARD QUESTION

Front

What is a function?

Back

Lines of code that perform specific tasks

2.

FLASHCARD QUESTION

Front

What is a correct code to create a rectangle in p5.js? Options: rect(40,120,120,40);

Back

rect(40,120,120,40);

3.

FLASHCARD QUESTION

Front

How do I create a rectangle located 50px to the right and 80px down on the canvas?

Back

rect(50,80,100,40);

4.

FLASHCARD QUESTION

Front

What function do we use to add color to a shape in p5.js?

Back

fill();

5.

FLASHCARD QUESTION

Front

Which code makes an ellipse measuring 140px width and 100px height? Options: ellipse(175, 130, 100, 140);, circle(175, 130, 140, 100);, ellip(175, 130, 140, 100);, ellipse(175, 130, 140, 100);

Back

ellipse(175, 130, 140, 100);

6.

FLASHCARD QUESTION

Front

Which code sets the canvas' color to "pink" in p5.js? Options: background-color('pink');, background('pink');, bg('pink');, bg-color('pink');

Back

background('pink');

7.

FLASHCARD QUESTION

Front

What, if anything, is the difference between function setup () and function draw()?

Back

Function setup runs once and function draw is a loop.

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?