-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathModule 7 quiz on code "dissection"
53 lines (31 loc) · 1.13 KB
/
Module 7 quiz on code "dissection"
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
Module 7 quiz on code "dissection"
1. Lines 54-58 show an example of
Lines 54-58 show an example of
*******************
Ans:-
a constructor that makes an explicit call to a constructor in the super class.
*********************
2. Line _______ is the first line of a overridden method in the subclass.
*****************
Ans: 78
**************
3. Line _______ is the first line of a mutator method that is inherited by the subclass.
*********************
Ans: 17
*******************
4. LIne _________ is the first line of a method in the super class that is not inherited by the subclass.
********************
Ans: 31
************************
5. Select all of the lines of code that could be written in the subclass. (i.e. would not cause a compile error or a runtime error)
*********************
Ans:- setMonth(8);
super.setMonth(8);
****************************
6. Select all of the lines of code that could be written in a client file that was in the same project as the Month and SchoolMonth classes.
**********************
Ans:-
Month[] summer = new Month[3];
SchoolMonth x = new SchoolMonth(7);
x.setMonth(3);
********************