Solved
What is a pixel? ✔✔A ✔✔The process of simplifying complicated data into
single tiny dot, or square, manageable of
color in a digital image.
What is the value of 9F16 in binary? ✔✔1001 11112
What is the value of F16 in decimal? ✔✔15(10)
What are the 3 color channels that make up a pixel according to the RGB color scheme? ✔✔Red,
Green, and Blue
What is the range of values (expressed in decimal) that each color channel can have? ✔✔(0)10 -
255(10)
Which of the following pixels has a color value of #ff0000 (expressed in hexadecimal) ✔✔(Red
Pixel)
Which of the following instructions would brighten a pixel? Assume R is the red value of the
pixel, G is the green value, and B is the blue value. ✔✔R = Math.min(R + 50, 255);