[Essay]There are two major theories of color perception.    …

There are two major theories of color perception.           a. Describe the two theories.           b. Describe the experimental evidence supporting each theory.           c. How can the two theories be reconciled in terms of their physiological basis?

What is the output of the following portion of code? int num…

What is the output of the following portion of code? int number = 5; String day = “”; switch (number) { case 0: day = “Sunday”; break; case 1: day = “Monday”; break; case 2: day = “Tuesday”; break; case 3: day = “Wednesday”; break; case 4: day = “Thursday”; break; case 5: day = “Friday”; break; case 6: day = “Saturday”; break; default: day = “Error”; break; } System.out.println(day);