A.the computer can memorize
B.can the computer memorize
C.do the computer memorize
D.can memorize the computer
第1题:
A.选择Analyze—nonparametrictests——1-samplek-s的主对话框
B.选择Analyze—nonparametrictests——2independent-samplek-s的主对话框
C.选择Analyze—nonparametrictests——Kindependent--samplek-s的主对话框
D.选择Analyze—nonparametrictests——2related-samplek-s的主对话框
E.以上都不正确
第2题:
写出下列程序的运行结果【 】。
include <iostream.h>.
include <fstream.h>
include <stdlib.h>
void main()
{
fstream outfile, infile;
outfile.open("data.clat", ios:: out);
if(!outfile)
{
cout<<"Can't open the file."<<end1;
abort();
}
outfile<<" 1234567890"<<end1;
outfile<<"aaaaaaaaa"<<end1;
outfile<<"**********"<<end1;
outfile.close();
infile.open("data. dat ", ios:: in);
if(!infile)
{
cout<<"Can't open the file."<<end1;
abort();
}
char line[80];
int I=0;
while(!infile. eof())
{
I++;
infile.getline(line, sizeof(line));
cout<<I<<":"<<line<<end1;
}
infile.close();
}
第3题:
第4题:
A.Capture,analyze,preprocess,replay
B.Capture,preprocess,analyze,replay
C.Capture,preprocess,replay,analyze
D.Analyze,capture,preprocess,replay
E.Noneoftheabove
第5题:
第6题: