#3. Event processing 0/2 points #trials: 1/2 When the mouse is clicked, what is the event type fired? Enter your response home submit subme submit 14. Event processing 0/2 points als. 1/2 If I want to retrieve the associated source object from an event object, which instance method in EventObject should I use? Enter your response here sum #5. inner classes 212 min This 1 2/2 points trials 1/1 6. Inner classes 0/2 points erials: 1/1 True or False: An inner class can be used in another class that 15 outside of the class in which the inner class is nested? True False N7Inner les 2 points Atrials: 0/2 Given the sample code below: public class an > class c2 private Cicci = new 10); class 03 > > Question: Which one(s) of the above classes is a nested class? Unter your personshore #10. Inner classes + 0/2 points trials: 1/1 True or false: An anonymous Inner class always uses the no-argument constructor from its superclass to create an instance. If an anonynous inner class implements an Interface, the constructor 15 Object (.. True False #16. Recursion + - 0/2 points #trials: 4/4 // The method below returns the sum of all the values in // index ton of the scores array using recursion public static int sumOfArray(int scores [], int n) { if (n) return // line 1 else if (n) return // line 2 else return ); // line 3 - hint: something + another thing Question: Enter the three missing parts for the separated by returns i.e. one per line. Each line in your answer should indicate the exact values to be substituted into the missing segments in the method. For example, if your response is the following 3 lines: X+1 A 2+2 that means you want the method to be interpreted as: public static int sumOfArray(int scores [], int n) if (no) return X+1; // line 1 else if (nu) return A; // line 2 else return 2+2; // line 3 - hinto something + another thing > Enter your response Here submit