网友您好, 请在下方输入框内输入要搜索的题目:
题目内容
(请给出正确答案)
给定java代码片段,如下:运行后,这段代码将输出()。
A.true
B.false
C.0
D.1
参考答案
更多 “ 给定java代码片段,如下:运行后,这段代码将输出()。A.trueB.falseC.0D.1 ” 相关考题
考题
给定如下Java程序代码片段,编译运行这段代码,结果是( )。java.util.HashMapmap=newjava.util.HashMap();map.put("name",null);map.put("name","Jack");System.out.println(map.get("name"));A.nullB.JackC.nullJackD.运行时出现异常
考题
给定以下JAVA代码,这段代码编译运行后输出的结果是( )publicclassTest{publicstaticintaMethod(inti)throwsException{try{returni/10;}catch(Exceptionex){thrownewException("exceptioninaaMothod");}finally{System.out.print("finally");}}publicstaticvoidmain(String[]args){try{aMethod(0);}catch(Exceptionex){System.out.print("exceptioninmain");}System.out.print("finished");}}A、finallyexceptioninmainfinishedB、exceptioninmainfinallyC、finallyfinishedD、finallyexceptioninmainfinished
考题
3、给定Java代码如下,编译运行,结果是()。 class Test{ int i; public static void main(String args[]){ System.out.println("i="+i); } }A.编译错误B.运行时出现异常C.正常运行,输出i=-1D.正确运行,输出i=0
考题
给定如下java代码,编译运行之后,将会输出()。 public class Test{ public staticvoid main(String args[]){ int a=5; System.out.println(a%2==1) ?(a+1) /2:a/2) ; } }A.1B.2C.2.5D.3
考题
给定如下Java代码片段,编译运行时,结果是() int [ ] a = {1,2,3,4,5}; for (int count = 0 ; count<5; count++) System.out.print(a[count++]) ;A.运行时出现异常B.输出:12345C.输出:135D.输出:24
考题
39、给定如下Java代码片段,编译运行时,结果是() int [ ] a = {1,2,3,4,5}; for (int count = 0 ; count5; count++) System.out.print(a[count++]) ;A.运行时出现异常B.输出:12345C.输出:24D.输出:135
考题
给定如下Java 程序代码片段,编译运行这段代码,结果是 java.util.HashMap map = new java.util.HashMap(); map.put("name",null); map.put("name","Jack"); System.out.println(map.get("name"));A.nullB.JackC.nullJackD.运行时出现异常
考题
8、给定Java代码如下:要使这段代码能够编译成功,横线处可以填入()。 public int count(char c, int i, double d){ return _____; }A.c*iB.c*dC.(int)c*dD.i*d
热门标签
最新试卷