【单选题】【消耗次数:1】
Its the second time that I __________ in Shanghai ! What great changes have taken place in Shang Hai. It is ten years since I __________ it last time.
have been ; left
had been ; left
have been ;had left
went ;had left
参考答案:
复制
纠错
相关题目
【单选题】 He left in such a hurry that I _______ had time to thank him.
①  almost
②  even
③  hardly
④  nearly
【单选题】 If the whole program __________ beforehand, a great deal of time and money would have been lost.
①  was not planned
②  were not planned
③  would not be planned
④  had not been planned
【单选题】 Tom: It’s the most delicious fruit I have had a long time.
①  I’m so glad you like it.
②  You are not hungry now.
③  I like eating this fruit, too.
④  You should like it.
【单选题】 It is ten years ___ I left home.
①  when
②  after
③  since
④  as
【判断题】 A: Have you been wasting time on computer games again? B: Not really. I’ve been studying a lot and I need a break.
①  正确
②  错误
【单选题】 I came to?Beijing?in 1991 and have been ?[填空] here ever since.
①  live
②  lives
③  lived
④  living
【单选题】 I hope ___ the little ___ I have been able to do has been of some use.
①  that; that
②  /; by which?
③  what; what
④  /; with which
【单选题】 If I had had enough time, I __________ it well.
①  would do
②  would have done
【单选题】 He ____ have left the campus, for I saw in the classroom just a minute ago
①  mustn’t
②  shouldn’t
③  couldn’t
④  oughtn’t
【单选题】 I have been at home [填空]Sunday.
①  on
②  for
③  at
④  since
随机题目
【单选题】 函数模板定义如下: templateMax( T a, T b ,T c){c=a+b;}下列选项正确的是( )
①  int x, y; char z; Max(x, y, z);
②  double x, y, z; Max( x, y, z);
③  int x, y; float z; Max( x, y, z);
④  float x; double y, z; Max( x,y, z);
【单选题】 实现两个相同类型数加法的函数模板的声明是()
①  add(T x,T y)
②  T add(x,y)
③  T add(T x,y)
④  T add(T x,T y)
【单选题】 类模板的使用实际上是将类模板实例化成一个( )。
①  函数
②  对象
③ 
④  抽象类
【单选题】 设有函数模板templateQ Sum(Q x,Q y) {return (x)+(y);} 则下列语句中对该函数模板错误的使用是()
①  Sum(10,2);
②  Sum(0,7);
③  Sum(2f,0f);
④  Sum(“AB”,”CD”);
【单选题】 当使用ifstream定义一个文件流,并将一个打开文件的文件与之连接,文件默认的打开方式为( )
①  ios::in
②  ios::out
③  ios::trunc
④  ios::binary
【单选题】 若定义:string str; 当语句cinstr; 执行时,从键盘输入:Microsoft Visual Studio 0! 所得的结果是str=( )。
①  Microsoft Visual Studio 0!
②  Microsoft
③  Microsoft Visual
④  Microsoft Visual Studio 0
【单选题】 下列有关模板的描述错误的是( )。
①  模板把数据类型作为一个设计参数,称为参数化程序设计。
②  使用时,模板参数与函数参数相同,是按位置而不是名称对应的。
③  模板参数表中可以有类型参数和非类型参数。
④  类模板与模板类是同一个概念。
【单选题】 类模板的实例化( )。
①  在编译时进行
②  属于动态联编
③  在运行时进行
④  在连接时进行
【单选题】 下面对模板的声明,正确的是( )。
①  template
②  templateclass T1, T2
③  templateclass T1, class T2
④  templateclass T1; class T2
【单选题】 从一个文件中读一个字节存于char c; 正确的语句为( )
①  file.read(reinterpret_cast const char * c), sizeof(c));
②  file.read(reinterpret_cast char * c), sizeof(c));
③  file.read(const char *)(c), sizeof(c));
④  file.read((char *)c,sizeof(c);