College Board Quiz Test Corrections
- Correct answer: A - The binary RGB triplet (11111111, 11111111, 11110000) translates to the decimal values (255, 255, 240), which corresponds to Ivory in the provided table. I misinterpreting the color associated with the given binary triplet.
- Correct answer: D - The correct binary RGB triplet for the color indigo is (01001011, 00000000, 01000001). The mistake was in selecting option C which doesn’t match the binary representation of the indigo color.
- Correct answer: D - Optiom B(my answer) incorrectly interprets the algorithm which suggests that the condition for setting “available” to true is when “weekday” is true and “miles” are greater than or equal to 20. However, the correct interpretation, represented by option D, is that “available” is set to true only when both conditions, “weekday” being true and “miles” less than 20, are met. Therefore, option B is not equivalent to the algorithm described in the flowchart, and the correct answer is option D.