Write a function to set the red, green, and blue values to zero. What is the result?

What will be an ideal response?

```
def setAllZero(picture):
for pix in getPixels(picture): setRed(pix,0)
setBlue(pix,0)
setGreen(pix,0)
```

OR

```
def setAllZero(picture):
for pix in getPixels(picture):
setColor(pix, makeColor(0,0,0))
```

The result is the entire image is set to black.

Computer Science & Information Technology

You might also like to view...

All of the following are true regarding an exported Query EXCEPT:

A) Access will, if necessary, assign a name to the Excel Workbook according to the name of the Query. B) Clicking OK will store the record set of the query into an Excel workbook in the place located by the user. C) You can open a query in Design or Datasheet View before exporting it to Excel. D) Access provides more formatting flexibility than Excel.

Computer Science & Information Technology

The ________ is a special character that is used to represent one or more characters in the criterion of a query

A) wildcard B) delimiter C) operator D) operand

Computer Science & Information Technology