Image Processing Intro Flashcardizz

Image Processing Intro Flashcardizz

Assessment

Flashcard

Computers

9th - 12th Grade

Hard

Created by

Quizizz Content

FREE Resource

Student preview

quiz-placeholder

8 questions

Show all answers

1.

FLASHCARD QUESTION

Front

Pixels get their color from a combination of which colors?

Back

red green blue

2.

FLASHCARD QUESTION

Front

What does the following code do? Options: Makes a blue filter across the entire picture, Draws a blue rectangle that is 150 pixels high and 20 pixels wide, Draws a blue rectangle that is 150 pixels wide and 20 pixels high, Changes the pixel at (50, 200) and the pixel at (50, 70) to blue

Back

Draws a blue rectangle that is 150 pixels high and 20 pixels wide

3.

FLASHCARD QUESTION

Front

What does the following code do?

Back

Turns the last 100 columns blue

4.

FLASHCARD QUESTION

Front

What does len(img) represent in line 6?

Back

The height of the image in pixels

5.

FLASHCARD QUESTION

Front

Given that img is a variable that represents a 2 dimensional array of pixels, what could be a possible value of img[12][1]?

Back

[0, 80, 200]

6.

FLASHCARD QUESTION

Front

Given that img is a variable that represents a 2 dimensional array of pixels, what could be a possible value of img[16][4]?

Back

[255, 255, 255]

7.

FLASHCARD QUESTION

Front

Given that img is a variable that represents a 2 dimensional array of pixels, what could be a possible value of img[16] ?

Back

[[255,255,255], [255,255,255], [255,255,255], [255,255,255], [255,255,255], [255,255,255], [255,255,255], [255,255,255], [255,255,255], [255,255,255], [255,255,255], [255,255,255], [255,255,255], [255,255,255], [255,255,255], [255,255,255], [255,255,255], [255,255,255]]

8.

FLASHCARD QUESTION

Front

Given that img is a variable that represents a 2 dimensional array of pixels, what could be a possible value of img[0][4][2]?

Back

255