Write a function to set the red, green, and blue values to 255. What is the result?
```
def setAllMax(picture):
for pix in getPixels(picture):
setRed(pix,255)
setBlue(pix, 255)
setGreen(pix, 255)
```
OR
```
def setAllMax(picture):
for pix in getPixels(picture):
setColor(pix, makeColor(255, 255, 255))
```
The result is the entire image is set to white.
You might also like to view...
When deriving a class from a protected base class, the public members of the base class become _________ and the protected members of the base class become __________?
a. protected, private b. public, private c. protected, protected d. public, protected
An instance method or constructor may be overloaded by providing the same name and ____ argument list.
A. a different B. the same C. a larger D. a smaller
A(n) ________ allows you to summarize and examine data such as analyzing book sales by categories
A) Table Analysis B) PivotTable C) Aggregate Analysis D) PowerPivot
Which of the following are likely to be considered incidents requiring an appropriate official response and documentation?
a. Use of social networking sites contrary to published policy. b. Unauthorized printing of personal documents on company time and equipment. c. The door to server room was left unlocked. d. Someone forgot to clock out at the end of his work day. e. An unauthorized guest logged into the wireless system from the parking lot.