Which of the following statements is false?
a. When you need custom colors in your apps, Google’s Material Design guidelines recommend using colors from the Material Design color palette.
b. Colors are specified as RGB (red-green-blue) or ARGB (alpha-red-green-blue) values.
c. An RGB value consists of integer values in the range 1–100 that define the amounts of red, green and blue in the color, respectively.
d. Custom colors are defined in hexadecimal format, so the RGB components are values in the range 00 (the hexadecimal value for 0) to FF (the hexadecimal value for 255).
c. An RGB value consists of integer values in the range 1–100 that define the amounts of red, green and blue in the color, respectively. Actually, an RGB value consists of integer values in the range 0–255 that define the amounts of red, green and blue in the color, respectively.
You might also like to view...
A catch block that does not specify which type of exception it catches ________.
a) is a syntax error b) is useless; it will not catch any type of exception c) will catch any type of exception that does not already have a handler defined d) should be the last catch block in a group e) Both c and d.
switch (phoneDigit){ case 1: num = 1; break; case 2: num = 2; break; case 3: num = 3; break; case 4: num = 4; break; default: num = 0; break;} Looking at the example above, when phoneDigit has a value of ‘Q', what value is stored in num?
A. 1 B. 0 C. Q D. not enough information given