此题为判断题(对,错)。
第1题:
阅读以下说明和java代码,将应填入(n)处的字句写在对应栏内。
[说明]
本程序使用类来管理员工的通讯地址信息。已知程序的输出为:
输出记录:5
姓名:王丽华
街道地址:中华路15号
市:襄樊市
省:湖北省
邮政编码:430070
[Java代码]
public class Employee{
protected String (1);
protected String street;
protected String city;
protected String prov;
protected String post;
protected int no;
public Empbyee(){}
public Employee(String name,String street,String city,String prov,String post, (2) ){
this.name=name;
this.street=street;
this.city=city;
this.prov=prov;
this.post=post;
this.no=no;
}
public static void main(String[]args){
Employee emp=new Employee(“王华”,“中华路15号”,“武汉市”,“湖北省”,“430070”,1);
emp.changeName(“王丽华”);
(3) (“襄樊市”);
emp.changeNo(5);
(4);
}
void changeName(String name){this.name=name;}
void changeStreet(String street){this.street=street;}
void changeCity(String city){this.city=city;}
void changeProv(String prov){this.prov=prov;}
void changeNo(int no){(5);}
void display(){
System.out.println(“输出记录:”+this.no);
System.out.Println(“姓名:”+this.name);
System.out.println(“街道地址:”+this.street);
System.out.println(“市:”+this.city);
System.out.println(“省:”+this.prov);
System.out.println(“邮政编码:”+this.post);
}
}
第2题:
在下面附属类方法中的下划线处应填入的正确参数是public void writeData( )throws IOException{ GregorianCalendar calendar=new GregorianCalendar(); calendar,setTime(hireDay); out.println(name+"|" +salary+"|" +calendar.get(Calendar.YEAR)+"|" +(calendar.get(Calendar.MONTH)+1)+"|" +calendar.get(Calendar.DAY_OF_MONTH)):}
A.Employee[]e
B.employee.dat
C.PrintWriter out
D.BufferedWriter
第3题:
名词life的复数形式lives (n.)和动词live的单数形式lives (v.),尾部-s的发音不相同。
第4题:
#include <fstream>
#include <iostream>
using namespace std;
int main()
{
fstream inout;
inout.open("city.txt",ios::out);
inout<<"Dallas"<<" "<<"tonghua"<<" "<<"长春"<<" " ;
inout.close();
inout.open("city.txt",ios::app | ios::out);
inout<<"罗马"<<" "<<"巴黎"<<" ";
inout.close();
char city[20];
inout.open("city.txt",ios::in);
while(!inout.eof())
{inout>>city;
cout<<city<<" ";
}
inout.close();
system("PAUSE");
return 0;
}
定义一个字符型数组city[20],将从文本文件“city.txt”所读取的数据,暂时存在city[20]中,然后通过输出函数cout将数据输出。
第5题:
A.全速率—Couple半速率—Single半速率
B.全速率—Single半速率—Couple半速率
C.Couple半速率—Single半速率—全速率
D.Couple半速率—全速率—Single半速率
E.Single半速率—全速率—Couple半速率
第6题:
以下关于VDB函数的语法正确的是()。
A.VDB(cost,salvage,life,period,factor)
B.VDB(cost,salvage,life,period,month)
C.VDB(cost,salvage,life,per)
D.VDB(cost,salvage,life,start-period,end-period,factor,no-switch)