JAVA模拟试题Word格式.docx

上传人:b****5 文档编号:16809025 上传时间:2022-11-26 格式:DOCX 页数:12 大小:18.65KB
下载 相关 举报
JAVA模拟试题Word格式.docx_第1页
第1页 / 共12页
JAVA模拟试题Word格式.docx_第2页
第2页 / 共12页
JAVA模拟试题Word格式.docx_第3页
第3页 / 共12页
JAVA模拟试题Word格式.docx_第4页
第4页 / 共12页
JAVA模拟试题Word格式.docx_第5页
第5页 / 共12页
点击查看更多>>
下载资源
资源描述

JAVA模拟试题Word格式.docx

《JAVA模拟试题Word格式.docx》由会员分享,可在线阅读,更多相关《JAVA模拟试题Word格式.docx(12页珍藏版)》请在冰豆网上搜索。

JAVA模拟试题Word格式.docx

c, 

d)

// 

assignment 

x=a, 

y=b

w=d;

z=c;

在代码说明// 

y=b处写入如下哪几个代码是正确的?

Base(a,b);

B、x=a, 

C、x=a;

D、this(a,b);

C,D

4、已知如下定义:

String 

"

story"

;

下面哪个表达式是合法的?

+= 

books"

B、char 

s[1];

C、int 

len 

s.length;

D、String 

s.toLowerCase();

5、Java中main()函数的值是什么?

String

B、int

C、char

D、void

D

6、如下哪些字串是Java中的标识符?

fieldname

B、super

C、3number

D、#number

E、$number

答:

A,E

7、如下哪些是Java中有效的关键字?

const

B、NULL

C、false

D、this

E、 

native

A,C,D,E

8、如下哪些是Java中正确的整数表示?

A、22

B、0x22

C、022

D、22H

A,B,C

9、下面的代码段中,执行之后i 

和j 

的值是什么?

1;

j;

i++;

1, 

1

B、1, 

2

C、2, 

D、2, 

10、下面句话是正确的?

>

是算术右移操作符.

B、>

是逻辑右移操作符.

C、>

是算术右移操作符

D、>

是逻辑右移操作符

A,D

11、下面哪个赋值语句是合法的?

A、float 

2.0

B、double 

D、long 

B,C,D

12、下面哪个是main()函数的合法参数?

A、char 

args[]

args[][]

C、String 

arg要[]

args

13、下面哪个语句是创建数组的正确语句?

f[][] 

new 

float[6][6];

B、float 

[]f[] 

C、float 

float[][6];

D、float 

[][]f 

E、float 

float[6][];

A,B,C,D

14、已知表达式int 

m[] 

{0, 

2, 

3, 

4, 

5, 

};

下面哪个表达式的值与数组下标量总数相等?

m.length()

B、m.length

C、m.length()+1

D、m.length+1

B

15、已知如下的命令执行 

java 

MyTest 

c

请问哪个语句是正确的?

args[0] 

c"

B、args[0] 

MyTest"

C、args[0] 

a"

D、args[1]= 

'

b'

C, 

16、已知如下代码:

Test

long 

a[] 

long[10];

main 

arg[] 

) 

System.out.println 

a[6] 

);

A、Output 

is 

null.

B、Output 

0.

C、When 

compile, 

error 

will 

occur.

D、When 

running, 

17、已知如下代码:

boolean 

true;

if 

== 

false 

System.out.println("

False"

else

True"

执行结果是什么?

A、False

B、True

C、None

D、An 

occur 

when 

running.

18、已知如下代码:

main(String 

arg[])

5;

do 

System.out.println(i);

while 

(--i>

5)

finished"

执行后的输出是什么?

5

B、4

C、6

D、Finished

E、None

19、下面代码执行后的输出是什么?

outer:

for(int 

i=0;

i<

3;

i++)

inner:

j=0;

j<

2;

j++)

if(j==1) 

continue 

outer;

System.out.println(j+ 

and 

+i);

B、0 

C、0 

D、1 

E、1 

F、1 

G、2 

H、 

I、 

20、已知如下代码:

switch 

(m)

case 

0:

Condition 

0"

1:

1"

2:

2"

3:

3"

break;

default:

Other 

Condition"

当m 

的值为什么时输出"

?

B、1

C、2

D、3

E、4

F、None 

21、当浏览器返回到新URL的包含applet 

的页面时调用以下哪个函数?

init()

B、start()

C、stop()

D、destroy() 

22、以下哪个方法用于定义线程的执行体?

start()

B、init()

C、run()

D、main()

E、synchronized() 

23、Java中如下哪个约束符是正确的?

private

B、public

C、protected

D、protect

E、friend 

24如果类中的成员变量可以被同一包访问,则使用如下哪个约束符?

D、no 

modifier

E、final 

25、以下哪个约束符可用于定义成员常量?

static

B、final

C、abstract

D、No 

modifier 

can 

be 

used 

26、如下哪个语句正确说明了native方法?

native 

test();

test(){}

D、public 

test(){} 

A

27、已知如下类说明:

Test 

private 

1.0;

12;

n=1;

arg[]) 

Test();

如下哪个使用是正确的?

t.f

B、this.n

C、Test.m

D、Test.n 

28、已知如下代码:

Example{

str;

Example(){

4:

str= 

example"

5:

6:

Example(String 

s){

7:

str=s;

8:

9:

10:

Demo 

extends 

11:

12:

13:

() 

14:

Example 

ex 

Example("

Good"

15:

Demo("

16:

哪句语句会导致错误?

line 

3

B、line 

6

C、line 

10

D、line 

14

E、line 

15 

E

29、已知如下类定义:

Base 

(){ 

//... 

){ 

protected 

fun( 

Child 

member 

methods

如下哪句可以正确地加入子类中?

//...}

B、void 

fun 

C、protected 

C,D

30、如下哪个语句是正确的?

In 

Java 

single 

inheritance 

allowed, 

which 

makes 

code 

more 

reliable.

B、A 

subclass 

inherits 

all 

methods 

including 

the 

constructor 

from 

superclass.

C、 

implement 

as 

many 

interfaces 

needed.

implements 

an 

interface, 

it 

define 

of 

interface 

A,C

31、在如下源代码文件Test.java中, 

哪个是正确的类定义?

test 

0;

test(int 

x) 

this.x 

x;

x=0;

Test(int 

T1, 

T2 

(int 

T1{

x){

E、protected 

T2{

this.x=x;

B,D

32、Person, 

Student 

和Teacher 

都是类名。

这些类有以下继承关系。

Person

|

---------------

Teacher

并且在Java源代码中有如下表达式:

Person 

Student();

如下哪个语句是正确的?

The 

expression 

legal.

B、The 

illegal.

C、Some 

errors 

compile.

D、Compile 

correct 

but 

wrong 

running. 

33、当Frame改变大小时,放在其中的按钮大小不变,则使用如下哪个layout?

FlowLayout

B、CardLayout

C、North 

South 

BorderLayout

D、East 

West 

E、GridLayout

34、当Frame改变大小时,放在其中的按钮大小不变,则使用如下哪个layout?

35、如下哪个方法可以从WindowEvent获取事件源?

getFrame()

B、getID()

C、getSource()

D、getWindow() 

36、以下哪个有关事件监听器的语句是正确的?

Multiple 

listeners 

attached 

to 

one 

component.

B、Only 

listener 

C、One 

receive 

process 

events 

multiple 

components.

D、One 

only 

37、监听器接口的方法返回值是什么?

int

B、String

C、void

D、Object

E、AWTEvent 

38、下面哪个事件监听器在Java中有事件适配器?

MouseListener

B、KeyListener

C、ActionListener

D、ItemListener

E、WindowListener 

A,B,E

39、下面哪个方法与applet的显示无关?

update()

B、draw()

C、repaint()

D、paint() 

40、已知如下说明:

TextArea 

ta 

("

Hello"

 

5);

maximum 

number 

characters 

in 

5.

displayed 

height 

lines 

otherwise 

constrain.

C、The 

string 

use 

fonts.

D、The 

strings 

are 

editable. 

41、请问如下哪个方法可以将MenuBar加入Frame中?

setMenu()

B、setMenuBar()

C、add()

D、addMenuBar() 

42、下面哪个不是Java中的容器?

ScrollPane

B、Canvas

C、Scrollbar

D、Applet

E、Dialog 

B,C

43、下面哪个方法可用于定义新线程类?

Runnable 

interface

B、add 

run() 

method 

class

C、create 

instance 

Thread

D、extend 

Thread 

44、下面哪个stream是node流?

FileInputStream

B、BufferedInputStream

C、PushbackInputStream

D、ByteArrayInputStream 

45、哪个类可用于处理Unicode?

InputStreamReader

B、BufferedReader

C、Writer

D、PipedInputStream 

A,B

展开阅读全文
相关资源
猜你喜欢
相关搜索

当前位置:首页 > 医药卫生 > 药学

copyright@ 2008-2022 冰豆网网站版权所有

经营许可证编号:鄂ICP备2022015515号-1