JAVA程序设计》期末考试试题 (三)
一、单项选择题
1、如下哪个是Java中的标识符(D
Apublic      Bsuper        C3number      Dwidth
2、如下哪个是Java中的标识符(A )
Afieldname    Bsuper        C3number      D#number
3、已知如下定义:String s = "story"; 下面哪个语句不是合法的( C)
As += "books";                Bs = s + 100;
Cint len = s.length;                DString t = s + “abc”;
4、如下哪个是Java中有效的关键字(C)
Aname        Bhello        Cfalse         Dgood
5、下面的代码段执行之后count的值是什么(  D  )
    int count = 1;
    for (int i = 1; i <= 5; i++) {
        count += i;
    }
    System.out.println(count);
A5        B1            C15          D16
6、定义一个类,必须使用的关键字是( B )
Apublic        Bclass        Cinterface        Dstatic
7、定义一个接口必须使用的关键字是(  C   
Apublic        Bclass        Cinterface        Dstatic
8、如果容器组件p的布局是BorderLayout,则在p的下边中添加一个按钮b,应该使用的语句是( C 
    Ap.add(b);                    Bp.add(b,"North");
    Cp.add(b,"South");            Db.add(p,"North");
9、声明并创建一个按钮对象b,应该使用的语句是(  A 
AButton b=new Button();        Bbutton b=new button();
CButton b=new b();            Db.setLabel(“确定”);
11、下列哪一个import命令可以使我们在程序中创建输入/输出流对象(C
Aimport java.sql.*;            Bimport java.util.*;
Cimport java.io.*;            Dimport java.*;
13、如果需要从文件中读取数据,则可以在程序中创建哪一个类的对象(A
AFileInputStream            BFileOutputStream
CDataOutputStream        DFileWriter
二、填空题
1、如果将类MyClass声明为public它的文件名称必须是Myclass才能正常编译。
2Java程序中的单行注释符是( // ),多行注释符是(/*…*/ )。
3Java中布尔类型的常量有两种,它们是(false)和(true)。
4Java中用于定义小数的关键字有两个:(float double),后者精度高于前者。
5Java中用于两个数相等比较的运算符是:(==),用于不相等比较的运算符是(!=)。
6、在Java中定义一个字符串类型的变量str的语句是:String str; ,定义一个具有10个元素的整型数组a的语句是:int[] a=new int[10];
7、导入mypackage包中的所类的命令是import mypackage
8、当声明一个数组int arr[] = new int[5]; 时,这代表这个数组所保存的变量类型是(int),数组名是(arr),数组的大小为(5),数组元素下标的使用范围是(0-4
9、假设x=13y=4,则表达式x%y != 0的值是(true),其数据类型是(boolean)。
10、异常处理是由(try catch)、(throws)和finally块三个关键所组成的程序块。
11、以下程序段的输出结果是(三角形)
    int x = 5, y = 6, z = 4;
    if (x + y > z && x + z > y && z + y > x)
        System.out.println("三角形");
    else
        System.out.println("不是三角形");
12、下面程序段的执行结果是(65432
    int a[] = { 2, 3, 4, 5, 6 };
    for (int i = a.length - 1; i >= 0; i--)
        System.out.print(a[i] + "");
三、程序阅读题
java重写和重载的区别1以下程序的输出结果为_Peter is 17 years old!_
public class Person {
    String name;
    int age;
    public Person(String name, int age) {
        this.name = name;
        this.age = age;
    }
    public static void main(String[] args) {
        Person c = new Person("Peter", 17);
        System.out.println(c.name + " is " + c.age + " years old!");
    }
}
2以下程序的输出结果为__课程号:101 课程名:ASP  学分:3 ___
public class Course {
    private String cNumber;
    private String cName;
    private int cUnit;
    public Course(String number, String name, int unit) {
        cNumber = number;
        cName = name;
        cUnit = unit;
    }
    public void printCourseInfo() {
        System.out.println("课程号:" + cNumber + " 课程名:" + cName + " 学分:" + cUnit);
    }
}
class CourseTest {
    public static void main(String[] args) {
        Course c;
        c = new Course("101", "ASP", 3);
        c.printCourseInfo();
    }
}
3以下程序的输出结果为__汤姆猫体重:20.0 ___
public class Tom {
    private float weight;
    private static String name;
    public void setWeight(float weight) {
        this.weight = weight;
    }
    private void out() {
        System.out.println(name + "体重:" + weight + "");
    }
    public static void main(String[] args) {
        Tom.name = "汤姆猫";
        Tom cat = new Tom();
        cat.setWeight(20);
        cat.out();
    }
}
4以下程序的输出结果
_姓名:Tom 年龄:15 家庭住址:金水区 电话:66123456  学校:九中_
public class Father {
    String name, address, tel;
    int age;
    public Father(String name, int age) {
        this.name = name;
        this.age = age;
    }
    void out() {
        System.out.print("姓名:" + name);
        System.out.print(" 年龄:" + age);
    }
    void outOther() {
        System.out.print(" 家庭住址:" + address);
        System.out.print(" 电话:" + tel);
    }
}
class Son extends Father {

版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系QQ:729038198,我们将在24小时内删除。