单项选择题
Given a valid DateFormat object named df,and
16.Date d = new Date(0L);
17.String ds = "December 15, 2004";
18.//insert code here
What updates d’s value with the date represented by ds?()
A.18. d = df.parse(ds);
B.18. d = df.getDate(ds);
C.18. try {19. d = df.parse(ds);20. } catch(ParseException e) { };
D.18. try {19. d = df.getDate(ds);20. } catch(ParseException e) { };
相关考题
-
单项选择题
Assuming that the serializeBanana() and the deserializeBanana() methods will correctly use Javaserialization and given: What is the result?()
A.restore 400
B.restore 403
C.restore 453
D.Compilation fails.
E.An exception is thrown at runtime. -
单项选择题
Given: What is the result?()
A.Canada
B.null Canada
C.Canada null
D.Canada Canada
E.Compilation fails due to an error on line 26. -
多项选择题
A team of programmers is reviewing a proposed API for a new utility class. After some discussion, theyrealize that they can reduce the number of methods in the API without losing any functionality. If theyimplement the new design,which two OO principles will they be promoting?()
A.Looser coupling
B.Tighter coupling
C.Lower cohesion
D.Higher cohesion
E.Weaker encapsulation
