/* Q1: Declare an array for 50 names? String[] names = new String[50]; Q2: 2nd - "James Smith"; 10th - "Eva Lee"? names[1] = "James Smith"; names[9] = "Eva Lee"; P.66 #5: 1 2 3 4 5 P.66 #4: {10, 8, 6, 4, 2} ex[0] = 10 ex[1] = 8 .. P.66 #3: final int MAX = 500; String[] quiz = new String[MAX]; quiz[1] = "George Smith"; quiz[MAX-1] = "Weslay Clark"; Q3: Read the first element of quiz from the keyboard? quiz[0] = input.nextLine(); Q4: Output the last one to the monitor? System.out.println(quiz[MAX-1]); Q5: Output all elements of quiz to the monitor? for(int i=0; i