Unit 2: Properties

Unit 2: Properties

Assessment

Flashcard

Computers

9th - 12th Grade

Hard

Created by

Quizizz Content

FREE Resource

Student preview

quiz-placeholder

32 questions

Show all answers

1.

FLASHCARD QUESTION

Front

The property being changed in this code is...

Back

fill

Answer explanation

Look at line 12. Notice that the fill property of the variable sky is being changed.

2.

FLASHCARD QUESTION

Front

Which variable has its centerX property set to 300?

Back

ball

3.

FLASHCARD QUESTION

Front

If you wanted to change the text in the variable called message:

Back

message.value = 'Bye'.

Answer explanation

The name of the variable is message. The name of the property is value. To change a property, you must do this message.value = 'Hello'.

4.

FLASHCARD QUESTION

Front

If you want to move one end of the variable ground up:

Back

ground.y1 = 200

Answer explanation

To move one end of a line up, you have to change either the y1 property or the y2 property- not the x1 or x2. Changing the y1 from 300 to 200 will move it up. Changing it to 350 will move it down.

5.

FLASHCARD QUESTION

Front

If you want to move one end of the variable ground up:

Back

ground.y1-=1

Answer explanation

To move one end of a line up, you have to change either the y1 property or the y2 property. If you want to change the value of ground.y1 you must use +=. += means ground.y1=ground.y1+1 which means that the new value of ground.y1 equals the old value plus 1.

6.

FLASHCARD QUESTION

Front

If you want to change the color of the background:

Back

background.fill = 'red'.

7.

FLASHCARD QUESTION

Front

If you want to make the box more transparent, you must change the opacity property like this:

Back

box.opacity-=50

Answer explanation

If you decrease the opacity, you increase the transparency. If you just use minus, then you don't change the opacity. You have to use -= to change the value of the opacity property for the box.

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?