- 1、本文档共7页,可阅读全部内容。
- 2、有哪些信誉好的足球投注网站(book118)网站文档一经付费(服务费),不意味着购买了该文档的版权,仅供个人/单位学习、研究之用,不得用于商业用途,未经授权,严禁复制、发行、汇编、翻译或者网络传播等,侵权必究。
- 3、本站所有内容均由合作方或网友上传,本站不对文档的完整性、权威性及其观点立场正确性做任何保证或承诺!文档内容仅供研究参考,付费前请自行鉴别。如您付费,意味着您自己接受本站规则且自行承担风险,本站不退款、不进行额外附加服务;查看《如何避免下载的几个坑》。如果您已付费下载过本站文档,您可以点击 这里二次下载。
- 4、如文档侵犯商业秘密、侵犯著作权、侵犯人身权等,请点击“版权申诉”(推荐),也可以打举报电话:400-050-0827(电话支持时间:9:00-18:30)。
查看更多
J2ME NIIT二套考题最终定稿
J2ME 考试题
选择题:(每题两分)
下面哪个不是JAVA的修饰符 C1) public2) private3) friendly4) transient
(2)运行此代码将输出什么? C
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
(3) 你试图编译此代码会有什么发生? B
public class Q {
public static void main(String argv[]){
int anar[]=new int[]{1,2,3};
System.out.println(anar[1]);
}
}
1) 1 2) Error anar is referenced before it is initialized 3) 2 4) Error: size of array must be defined
(4)请写出以下代码被执行后的 x和y的输出值 B
int m=10;
int x=++m10?0:m;
int n=10;
int y=n++10?0:n;
(1)11,0 (2) 0,11 (3) 10,0 (4) 0,10
(5) int m= 34, m的值是: A
(1) 0 (2) 1 (3) 2 (4) 5
(6) 你试图编译此代码会有什么发生? C
public class Q {
public static void main(String argv[]){
int anar[]=new int[5];
System.out.println(anar[0]);
}
}
1) Error: anar is referenced before it is initialized 2) null 3) 0 4) 5
(7)如果Hello.txt 文件不存在,编译此代码会发生什么? C
import java.io.*;
public class Mine {
public static void main(String argv[]){
Mine m=new Mine();
System.out.println(m.amethod());
}
public int amethod() {
try {
FileInputStream dis=new FileInputStream(Hello.txt);
}catch (FileNotFoundException fne) {
System.out.println(No such file found);
return -1;
}catch(IOException ioe) {
} finally{
System.out.println(Doing finally);
}
return 0;
}
}
1) No such file found 2 No such file found ,-1 3) No such file found, Doing finally, -1 4) 0
( 8) 试图编译此代码会发生什么? C
class Base {}
class Sub extends Base {}
class Sub2 extends Base {}
public class CEx{
public static void main(String argv[]){
Base b=new Base();
Sub s=(Sub) b;
}
}
1) Compile and run without error 2) Compile time Exception 3) Runtime Exception ?
(9) 如果想在高级界面开发中使用一个滚动字符,选择哪个控件 A
(1)Ticker (2) Alert (3) List (4) TextField
(10) 下面哪个控件只有放置在容器内才能在屏幕上显示 D
(1) Alert (2) List (3) TextBox (4) ChoiceGroup
改错题(请指出错误原因,并改正(每题2. 5分)
(1) f
文档评论(0)