What is the output of this block of code? public static void…

What is the output of this block of code? public static void main(String[] args){ int checkThis = 6; switch(checkThis) { case 1: System.out.print(“What “); break; case 3: System.out.print(“we “); break; case 4: System.out.print(“do “); case 5: System.out.print(“in “); case 6: System.out.print(“life “); case 8: System.out.print(“echoes “); case 9: System.out.print(“in “); default: System.out.print(“eternity.”); }}

Write a method divisors(int n) that returns the number of di…

Write a method divisors(int n) that returns the number of divisors of a positive integer n that is passed into the method. A divisor of an integer n, also called a factor of n, is an integer which divides n without leaving a number. For example, the number 200 has 12 divisors (1, 2, 4, 5, 8, 10, 20, 25, 40, 50, 100, 200). Therefore divisors(200) should return 12. It is easy to test whether a number is a divisor or another number by the modulus operation. For example, 25 is a divisor of 200 because 200 % 25 is equal to 0; 6 is not a divisor of 200 because 200 mod 6 is equal to 2. 

This question carries 5 points extra credit. Add the two mis…

This question carries 5 points extra credit. Add the two missing statements/words (–1– and –2–) in the below Java program to ensure, Go Gators! is printed as output.   enum Color { RED, BLUE, ORANGE}public class Main { public static void main(String –2–