好文档 - 专业文书写作范文服务资料分享网站

《JAVA语言程序设计》期末考试试题及答案 

天下 分享 时间: 加入收藏 我要投稿 点赞

A、程序员必须创建一个线程来释放内存 B、内存回收程序负责释放无用内存 C、内存回收程序允许程序员直接释放内存 D、内存回收程序可以在指定的时间释放内存对象 10.以下哪个关键字可以用来对对象加互斥锁?( )

A、transient static

11.以下代码段执行后的输出结果为( )

int x =-3; int y =-10; System.out.println(y%x);

-1

B、2

C、1

D、3

A、

B、synchronized

C、 serialize

D

12.有以下程序片段,下列哪个选项不能插入到行1。( )

1.

2 .public class Interesting{ 3. //do sth 4.}

A、import java.awt.*; C、class OtherClass{ } 13. 设有下面两个赋值语句:

a = Integer.parseInt(“12”);

b = Integer.valueOf(“12”).intValue(); 下述说法正确的是( )。 A、a是整数类型变量,b是整数类对象。 B、a是整数类对象,b是整数类型变量。 C、a和b都是整数类对象并且值相等。 D、a和b都是整数类型变量并且值相等。

14.FilterOutputStream是BufferedOutputStream、DataOutputStream及PrintStream的父类,以下哪个类可能是FilterOutputStream构造函数的参数类型? A、OutputStream C、InputStream

B、File

B、package mypackage; D、public class MyClass{ }

D、BufferedOutputStream

15.在编写Java Applet程序时,需在程序的开头写上( )语句。

A、import java.awt.* ; C、import java.io.* ; 16.类Parent、Child定义如下:

1.

public class Parent

2.{ public float aFun(float a, float b) throws 3. IOException { } 4.}

5.public class Child extends Parent{ 6. 7.}

将以下哪种方法插入行6是不合法的。( ) A、float aFun(float a, float b){ }

B、public int aFun(int a, int b)throws Exception{ } C、public float aFun(float p, float q){ }

D、public int aFun(int a, int b)throws IOException{ }

17.在使用interface声明一个接口时,只可以使用( )修饰符修饰该接口。

A、private

B、protected

C、private protected

D、public

B、import java.applet.Applet ; D、import java.awt.Graphics ;

18、有以下方法的定义,请选择该方法的返回类型( )。

ReturnType method(byte x, double y) { }

B、short

C、int

D、double

return (short) x/y*2;

A、byte

19、关于以下代码段的说法正确的是( )

1.String s=\

2.StringBuffer s1=new StringBuffer(\3.if(s.equals(s1)) 4. s1=null; 5.if(s1.equals(s)) 6. s=null;

A、第1行编译错误,String的构造器必须明确调用

B、第3行编译错误,因为s与s1有不同的类型 C、编译成功,但执行时在第5行有异常抛出 D、编译成功,过程中也没有异常抛出

20、编译并运行以下程序,以下描述哪个选项是正确的( )

1. class X{

2. protectied String toString( )i{ 3. 4. }

A、编译通过运行无异常 C、行2出错,不能成功编译 三.程序阅读题

1.以下程序的输出结果为 相等 。

class StringTest1 { }

2.以下程序段的输出结果为 5 6 7 8 9 。

public class TestArray {

public static void main(String args[ ]){

int i , j ;

int a[ ] = { 5,9,6,8,7};

public static void main(String[] args) { }

String s1=\

String s2=new String(\if(s1.equals(s2)){ }

System.out.println(\相等\System.out.println(\不相等\}else{

B、编译通过但运行时出错 D、不能成功编译,行3出错

return super.toString();}

for ( i = 0 ; i < a.length-1; i ++ ) {

int k = i;

for ( j = i ; j < a.length ; j++ )

if ( a[j]

}

for ( i =0 ; i

System.out.print(a[i]+\ \

System.out.println( ); } }

3.写出以下程序的功能。

import java.io.*; public class TestFile {

public static void main(String args[]) throws Exception {

BufferedReader br = new BufferedReader(

new InputStreamReader(System.in));

BufferedWriter bw = new BufferedWriter(new FileWriter(“input.txt\ String s; while (true)

{

System.out.print(\请输入一个字符串: \ System.out.flush(); s=br.readLine(); if (s.length()==0) break; bw.write(s); bw.newLine(); } bw.close();

} }

功能:从键盘逐一输入字符串,逐一输出至input.txt文件中,直至输入空行。

4.阅读以下程序,写出输出结果。

class Animal { Animal() {

System.out.print (\ \ } }

public class Dog extends Animal { Dog() {

System.out.print (\ }

public static void main(String[] args) { Dog snoppy= new Dog(); } }

输出结果:Animal Dog

《JAVA语言程序设计》期末考试试题及答案3(应考

必备题库)

一、单项选择题

1、如下哪个是Java中的标识符()

A、public

2、如下哪个是Java中的标识符( )

A、fieldname B、super

3、已知如下定义:String s = \下面哪个语句不是合法的( )

C、3number D、#number

B、super

C、3number D、width

《JAVA语言程序设计》期末考试试题及答案 

A、程序员必须创建一个线程来释放内存B、内存回收程序负责释放无用内存C、内存回收程序允许程序员直接释放内存D、内存回收程序可以在指定的时间释放内存对象10.以下哪个关键字可以用来对对象加互斥锁?()A、transientstatic11.以下代码段执行后的输出结果为()intx=-3
推荐度:
点击下载文档文档为doc格式
35tdw6795t8mqar1rud16ehs64cxfu011xw
领取福利

微信扫码领取福利

微信扫码分享