2020年JAVASE综合考试试题库188题[含答案]
一、选择题
1."以下代码的执行结果是?
public class Example {
public static void main(String[] args) {
TreeSet<String> t = new TreeSet<String>();
if (t.add(""one""))
if (t.add(""two""))
if (t.add(""three""))
t.add(""four"");
for (String s : t) {
System.out.print(s);
}
}
}"
答案:D
A.one
B.onethreetwo
C.onetwothreefour
D.fouronethreetwo
2.下列关于Math类说法错误的是
答案:
A.java.lang.Math类是final类,因此不能被其他类继承
B.java.lang.Math类的构造器是私有的,即声明为private,不能实例化一个Math类的对象
C.java.lang.Math类上定义的所有常量和方法均是public和static的,因此可以直接通过类名调用
D.min()和max()方法的参数之一,如果是NaN值,则方法将返回另一个参数值
苹果双系统怎么切换
3.定义在Math类上的round(double d)方法的返回值类型是什么?
答案:
七月的节日A.char
B.int
C.long
D.double
4."以下代码的输出结果是什么?
public class Example {
public static void main(String[] args) {
System.out.und(Float.MAX_VALUE));
}
}"
答案:B
A.输出Integer.MAX_VALUE
B.输出一个最接近Float.MAX_VALUE的整数
C.编译失败
D.运行时输出异常信息
5."给出以下代码,为了结果输出-12.0,方法method(d)应为以下哪个方法?
public class Example {
public static void main(String[] args) {
double d = -11.1;
double d1 = method(d);
System.out.println(d1);
}
}"
答案: A
A.floor()
B.ceil()
C.round()
D.abs()
6."给出以下代码,请问在程序的第6行插入那条语句,改程序可依次打印输出11、10、9?
1.public class Example {
2. public static void main(String[] args) {
3. double x[] = { 10.2, 9.1, 8.7 };
4. int i[] = new int[3];
5. for (int a = 0; a < x.length; a++) {
6.
7. System.out.println(i[a]);
8. }
9. }
10.}"
答案:C
A.i[1] = ((int)Math.min(x[a]));
B.i[1] = ((int)Math.max(x[a]));
C.i[1] = ((il(x[a]));
D.i[1] = ((int)Math.floor(x[a]));
7."以下代码执行结果是?
public class Example {
public static void main(String[] args) {
System.out.println(Math.min(Float.NaN, Float.POSITIVE_INFINITY));
}
}"
性病大全
答案:A
A.输出NaN
B.打印输出Infinity
C.运行时异常,因为NaN不是有效的参数
心理委员的职责
D.运行时异常,因为Infinity不是有效的参数
8.下列哪些项是泛型的优点?
答案:A
A.不用向下强制类型转换
B.代码容易编写
C.类型安全
D.运行速度快
9.表示键值对概念的接口是哪项?
答案:D强制报废
A.Set
B.List
C.Collection
D.Map
10.List接口的特点是哪项?
答案:C
A.不允许重复元素,元素有顺序
B.允许重复元素,元素无顺序
C.允许重复元素,元素有顺序
D.不允许重复元素,元素无顺序
11.以下哪些是FileOutputSteram类的正确构造形式?
答案:
A.FileOutputStream(FileDescriptor fd)
B.FileOutputStream(String n,boolean a)
鱼油软胶囊的功效与作用C.FileOutputStream(boolean a)
初中数学题目
D.FileOutputStream(File f)
12."下列代码执行后的输出是哪项?
public class Example {
public static void main(String[] args) {
List<String> al = new ArrayList<String>();
al.add(""1"");
al.add(""2"");
al.add(""2"");
al.add(""3"");
System.out.println(al);
}
}"
答案:
A.[1,2,3]
B.[1,2,3,3]
C.[1,2,2,3]
D.[2,1,3,2]
13."下列代码的执行结果是?
class Example {
韭山洞 private void method1() throws Exception {
throw new RuntimeException();
}
public void method2() {
try {
method1();
} catch (RuntimeException e) {