black

1Z0-853

登录

多项选择题

Given:  
11. // insert code here  
12. private N min, max;  
13. public N getMin() { return min; }  
14. public N getMax() { return max; }  
15. public void add(N added) {  
16. if (min == null || added.doubleValue() < min.doubleValue()) 
17. min = added;  
18. if (max == null || added.doubleValue() > max.doubleValue()) 
19. max = added;  
20. }  
21. }  
Which two, inserted at line 11, will allow the code to compile?()


A.A
B.B
C.C
D.D
E.E
F.F

相关考题

多项选择题 Given:   12. NumberFormat nf = NumberFormat.getInstance();   13. nf.setMaximumFractionDigits(4);   14. nf.setMinimumFractionDigits(2);   15. String a = nf.format(3.1415926);   16. String b = nf.format(2);   Which two statements are true about the result if the default locale is Locale.US?()

单项选择题 Click the Exhibit button.   What is the output of the program shown in the exhibit? ()

单项选择题 Given:   What is the result?()

All Rights Reserved 版权所有©考试题库网(kstiku.com)

备案号:湘ICP备14005140号-3

经营许可证号:湘B2-20140064