位置:首页 > 题库频道 > 其它分类 > 计算机其它 > 二级二级C++全国计算机等级考试 二级C++ 笔试模拟试题(一)

下列语句不能够用于打开C根目录下文件test.txt的语句是

发布时间:2024-07-09

A.ifstream fin; fin.open("C:\\test.txt");

B.ifstream fin("C:\\test.txt");

C.A)和B)

D.ifstream fin; fin("C:\\test.txt");

试卷相关题目

  • 1如果表达式--x+y中,--是作为成员函数重载的, +是作为成员函数重载的,则该表达式还可为

    A.y.operator+(x.operator--(0))

    B.y.operator+(x.operator--())

    C.y.operator+(operator--(x,0))

    D.operator+(x.operator--())

    开始考试点击查看答案
  • 2下面程序的结果是#include<iostream.h>class test { private:int num;public:test();int getint(){return num;}~test();};test :: test(){ num =0;}test::~test(){ cout<<"Destructor is active"<<endl;}void main(){ test x[3];cout<<"Exiting main"<<endl;}

    A.Exiting mainDestructor is activeDestructor is activeDestructor is active

    B.Exiting mainDestructor is activeDestructor is active

    C.Exiting mainDestructor is active

    D.Exiting main

    开始考试点击查看答案
  • 3关于抽象类下面说法正确的是

    A.抽象类就是其中有函数定义但没有实现的类

    B.抽象类是可以被实例化的

    C.派生类不能成为抽象类

    D.抽象类的子类必须实现父类中的纯虚函数

    开始考试点击查看答案
  • 4关于友元的概念错误的是

    A.友元函数没有this指针

    B.调用友元函数时必须在它的实参中给出要访问的对象

    C.一个类的成员函数也可以作为另一个类的友元函数

    D.只能在类的公有段声明友元

    开始考试点击查看答案
  • 5下面程序应能对两个整型变量的值进行交换。以下正确的说法是#include<iostream.h>void swap(int p,int q){ int t;t=p;p=q;q=t;}void main(){  int a=10,b=20;cout << a << " " << b;swap(&amp;a,&amp;b);cout << a << " " << b;}

    A.该程序完全正确

    B.该程序有错,只要将语句swap(&a,&b);中的参数改为a,b即可

    C.该程序有错,只要将swap()函数中的形参p和q以及t均定义为指针(执行语句不变)即可

    D.以上说法都不对

    开始考试点击查看答案
  • 6以下哪个基类中的成员函数表示纯虚函数?

    A.virtual void vf (int)

    B.void vf (int)=0

    C.virtual void vf(=0)

    D.virtual void yf(int){ }

    开始考试点击查看答案
  • 7下面程序输出的结果是#include<iostream.h>void main(){ int i;int a[3][3]={1,2,3,4,5,6,7,8,9};for(i=0;i<3;i++)cout << a[i][i] << " ";}

    A.1 5 9

    B.7 5 3

    C.3 5 7

    D.5 9 1

    开始考试点击查看答案
  • 8派生类继承基类的方式有

    A.public

    B.private

    C.protected

    D.以上都对

    开始考试点击查看答案
  • 9下列程序的运行结果为#include<iostream.h>class Location {protected:int X, Y;public:void SetX(int myx){X=myx;}void SetY(int myy){Y=myy;}void showxy(){cout << "X=" << X << " " << "Y=" << Y <<endl;}};class Rectangle : public Location{private:int H, W;public:void SetH(int myh){H=myh;}void SetW(int myw){W=myw;}void show(){ cout << "X=" << X << " " << "Y=" << " " << Y << " " << "H=" << H << " " << "W=" << W << endl;}};void main(){ Rectangle r1;r1.SetX (3);r1.SetY (5);r1.SetH (4);r1.SetW (6);r1.showxy();r1.show();}

    A.X=3 Y=5X=3 Y=5 H=4 W=6

    B.X=3 Y=5X=3 Y=5 H=3 W=6

    C.X=3 Y=5X=3 Y=4 H=4 W=6

    D.X=3 Y=5X=3 Y=3 H=4 W=6

    开始考试点击查看答案
  • 10有以下程序#include<iostream.h>void ss(char *s,char t){ while(*s){ if(*s==t)*s=t-′a′+′A′;s++;}}void main(){ char str1[100]="abcddfefdbd",c=′d′;ss(str1,c); cout << str1;}程序运行后的输出结果是

    A.ABCDDEFEDBD

    B.abcDDfefDbD

    C.abcAAfefAbA

    D.Abcddfefdbd

    开始考试点击查看答案
返回顶部