ab
2020
8080
8020
第1题:
A、in_file = open('input.txt','w')
B、in_file = open('input.txt',r)
C、in_file = open('input.txt','r')
D、都不正确
第2题:
假定用下面的语句打开文件: Open"Filcl.txt"For Input As#1 则不能正确读文件的语句是( )。
A.Input#1,ch$
B.Line Input#1,ch$
C.ch$一Input$(5,#1)
D.Read#1,ch$
第3题:
顺序执行下面命令之后,屏幕显示的结果是【 】。
INPUT T0 XX &&输入:.T.
?XX.AND.XX XX
第4题:
在J2EE中,下面的代码中出现编译错误的是()。
A.Filef=newFile("/","autoexec.bat");
B.DataInput Streamdin=new Data Input Stream(new File Input Stream("autoexec.bat"));
C.Input Stream Readerin=new Input Stream Reader(System.in);
D.Output Stream Writer out=new Output Stream Writer(System.in);
第5题:
读数据文件的操作可以通过下列 ______ 语句来实现。
A.Input#和Get#
B.Read和Line Input#
C.Get#和Line Input#
D.Line Input# 和Input#
第6题:
下列命令语句正确的是()
A、INPUT〃请输入账号〃TOzh
B、INPUT〔2001-03-01〕TOrq
C、C.INPUT〃T〃TOsa
D、INPUT〃∧2001-03-01〃TOzh
第7题:
使用Do While循环从打开的文件中逐条读取记录。以下能够正确读取数据的程序段是
A.Open "c:\File1.txt" For Input As #1 Do While Not EOF() Line Input #1, strLine Loop
B.Open "c:\File1.txt" For Input As#1 Do While Not EOF(#1) Line Input #1, strLine Loop
C.FileNo=FreeFile Open FileNo For Input As #1 Do While Not EOF(FileNo) Line Input #1, strLine Loop
D.FileNo=FreeFile Open FileNo For Input As #1 DoWhile Not EOF(#FileNo) Line Input #1, strLine Loop
第8题:
要进行随机文件的读写,可使用下面的( )语句。
A.Line Input #和Print#
B.Input #和 Write #
C.Get #和 Put#
D.A、B、C均可
第9题:
A. < input type=submit >
B. < input type=iamge >
C. < input type=text >
D. < input type=hide >
第10题:
下面程序运行的结果是( )。 #include<iostream> using namespace std; class A{ protected: int a; public: void input(int i) {a=i;} }; class B{ protected: int a; public: void input(int j) {a=j;} }; class C: public A, public B { int x; public: void input() {x=A::a * B::a;cout<<x<<endl;} }; void main() { C c; c.A::input(5); c.B::input(8); c.input(); }
A.5
B.8
C.40
D.编译出错