JAVA软件工程师笔试题(二十六)

时长:60分钟 总分:100分

255浏览 1人已完成答题

题型介绍
题型 单选题 简答题
数量 16 2
JAVA软件工程师笔试题(二十六)
1.
现有代码如下: public class Example { void topGo() { try { middleGo(); } catch (Exception e) { System.out.println("catch"); } } void middleGo() throws Exception { go(); System.out.println("late middle"); } void go() throws Exception { throw new Exception(); } public static void main(String[] args) { Example example = new Example(); example.topGo(); } } 该代码的执行结果是?
问题详情




2.
在方法声明中,说明该方法可能会抛出的异常列表时使用哪个关键字?
问题详情




3.
假设有自定义异常类ServiceException,那么抛出该异常的语句正确的是哪项?
问题详情




4.
下列代码的运行结果是? class Example { public static void main(String[] args) throws IOException { try { return; } finally{ System.out.println("Finally"); } } }
问题详情




5.
请问以下代码的直接执行结果是? class Example{ public static void main(String[] args) { try { System.out.println(args[0]); System.out.println("I'm nomal"); if (true) return; } catch (Exception ex) { System.out.println("I'm exception"); if (true) return; } finally { System.out.println("I'm finally."); } System.out.println("Out of try."); } }
问题详情




6.
现有如下代码: public class Example { public static void main(String[] args) { try { int x=Integer.parseInt("42a"); //插入代码处 System.out.println("oops"); } } } 在插入代码处插入哪些语句可以在运行后输出oops?
问题详情




7.
关于以下代码,说法正确的是? class Example { public static void main(String[] args) throws IOException { System.out.println("Before Try"); try { } catch (Throwable e) { System.out.println("Inside Catch"); } System.out.println("At the End"); } }
问题详情




8.
关于异常处理,说法错误的是?
问题详情




9.
对以下两个代码片段说法正确的是? 代码片段1: int a = 3; int b = 0; int c = a / b; 代码片段2: float a = 3.0f; float b = 0.0f; float c = a / b;
问题详情




10.
现有代码: public class Example { public static void main(String[] args) { try { System.out.print(Integer.parseInt("forty")); } catch (RuntimeException e) { System.out.println("Runtime"); }catch (NumberFormatException e) { System.out.println("Number"); } } } 执行结果是什么?
问题详情




11.
给出以下代码,改程序的执行结果是? interface Base { int k = 0; } public class Example implements Base { public static void main(String[] args) { int i; Example exm = new Example(); i = exm.k; i = Example.k; i = Base.k; System.out.println(i); } }
问题详情




12.
以下说法错误的是?
问题详情




13.
下列属于非受检异常(运行时异常)的是哪项?
问题详情



14.
下列代码执行后的结果是? public class Example { public static void main(String[] args) { try { System.out.println(Float.NaN == Float.NaN); System.out.println(Float.POSITIVE_INFINITY==Float.POSITIVE_INFINITY); } catch (Exception e) { System.out.println("Exception"); } }
问题详情




15.
下列代码执行后的结果是? public class Example { public static void main(String[] args) { try { double x = 64.0; double y = 0.0; System.out.println(x % y == x % y); } catch (Exception e) { System.out.println("Exception"); } } }
问题详情




16.
下列代码执行后的结果是? public class Example { public static void main(String[] args) { try { double x = 64.0; double y = 0.0; System.out.println(x % y); } catch (Exception e) { System.out.println("Exception"); } } }
问题详情




17.
如何处理MouseMotionListener接口事件?
问题详情
18.
MouseListener 主要处理和鼠标被点击有关的事件,它主要有哪几种方法?
问题详情