___ creates a color object.
A. new Color(0, 0, 0)
B. new Color(0, 266, 0)
C. new Color(255, 255, 255)
D. new Color(1, 2, 3)
The correct answer is ACD
Explanation: Colors are made of red, green, and blue components, each of which is represented by a byte value that describes its intensity, ranging from 0 (darkest shade) to 255 (lightest shade).
A. new Color(0, 0, 0)
B. new Color(0, 266, 0)
C. new Color(255, 255, 255)
D. new Color(1, 2, 3)
The correct answer is ACD
Explanation: Colors are made of red, green, and blue components, each of which is represented by a byte value that describes its intensity, ranging from 0 (darkest shade) to 255 (lightest shade).