亚洲国产日韩欧美在线a乱码,国产精品路线1路线2路线,亚洲视频一区,精品国产自,www狠狠,国产情侣激情在线视频免费看,亚洲成年网站在线观看

Java考試格林練習(xí)題

時(shí)間:2023-03-23 03:01:16 JAVA認(rèn)證 我要投稿
  • 相關(guān)推薦

Java考試格林練習(xí)題

  question 11)

Java考試格林練習(xí)題

  what will be the result of attempting to compile and run the following code?

  abstract class minebase { abstract void amethod(); static int i;}public class mine extends minebase { public static void main(string argv[]){ int[] ar=new int[5]; for(i=0;i < ar.length;i++) system.out.println(ar[i]); }}

  1) a sequence of 5 0’s will be printed

  2) error: ar is used before it is initialized

  3) error mine must be declared abstract

  4) indexoutofboundes error

  question 12)

  what will be printed out if you attempt to compile and run the following code ?

  int i=1; switch (i) { case 0: system.out.println("zero"); break; case 1: system.out.println("one"); case 2: system.out.println("two"); default: system.out.println("default"); }

  1) one

  2) one, default

  3) one, two, default

  4) default

  question 13)

  what will be printed out if you attempt to compile and run the following code?

  int i=9;switch (i) { default: system.out.println("default"); case 0: system.out.println("zero"); break; case 1: system.out.println("one"); case 2: system.out.println("two");}

  1) default

  2) default, zero

  3) error default clause not defined

  4) no output displayed

【Java考試格林練習(xí)題】相關(guān)文章:

JAVA語言程序設(shè)計(jì)練習(xí)題03-26

java考試習(xí)題及答案03-26

java認(rèn)證考試培訓(xùn)內(nèi)容03-27

java認(rèn)證考試試題及答案03-04

2017華為JAVA考試試題03-09

2016年Java認(rèn)證考試題03-08

華為Java上機(jī)考試題03-29

sun認(rèn)證考試:Java.io的使用01-08

2017年JAVA考試試題及答案02-26

2017java期末考試參考試題05-14