单项选择题
Given a class Repetition:
Which code should be inserted at line 1 of Demo.java to compile and run Demo to print "pizzapizza"?()
A.import utils.*;
B.static import utils.*;
C.import utils.Repetition.*;
D.static import utils.Repetition.*;
E.import utils.Repetition.twice();
F.import static utils.Repetition.twice;
相关考题
-
单项选择题
Given: What is the result?()
A.Compilation fails due to an error in line 23.
B.Compilation fails due to an error in line 29.
C.A ClassCastException occurs in line 29.
D.A ClassCastException occurs in line 31.
E.The value of all four objects prints in natural order. -
多项选择题
Given a pre-generics implementation of a method: What three changes allow the class to be used with generics and avoid an unchecked warning?()
A.Remove line 14.
B.Replace line 14 with "int i = iter.next();".
C.Replace line 13 with "for (int i : intList) {".
D.Replace line 13 with "for (Iterator iter : intList) {".
E.Replace the method declaration with "sum(ListintList)".
-
单项选择题
Given: Which method will complete this class?()
A.public int compareTo(Object o){/*more code here*/}
B.public int compareTo(Score other){/*more code here*/}
C.public int compare(Score s1,Score s2){/*more code here*/}
D.public int compare(Object o1,Object o2){/*more code here*/}
