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...
A recordable disc is called a "write-once" disk because once you save something to a disc, you cannot erase it or add anything else
Indicate whether the statement is true or false
A Chief Executive Officer (CEO) is steering company towards cloud computing. The CEO is requesting a federated sign-on method to have users sign into the sales application. Which of the following methods will be effective for this purpose?
A. SAML B. RADIUS C. Kerberos D. LDAP