【单选题】【消耗次数:1】
A: I doubt whether the Chinese Football Team can win the game this time. B: [填空].
Thats true
Its hard to say
I like the team
I dont believe it
参考答案:
复制
纠错
相关题目
【单选题】 I doubt whether the Chinese Football Team can win the game this time.____________
①  That’s true.
②  It’s hard to say.
③  I like the team.
④  I don’t believe it.
【单选题】 I doubt[填空] we can finish it on time.
①  not
②  and
③  so
④  if
【单选题】 I`m sure the red team will ______the game.
①  win
②  beat
③  defeat
④  succeed
【判断题】 A: Its fine today, and I dont love to stay indoors. B: I dont like it, too.
①  正确
②  错误
【单选题】 A: I dont like the sports programs on Sundays. B: [填空].
①  So do I
②  Neither am I
③  So am I
④  Neither do I
【判断题】 A: I have failed. I dont know why I did so badly. B: Thats all right.
①  正确
②  错误
【单选题】 08. It is not that I do not like plays. The reason why I did not go to the theater last night was that I could not ____ the time.
①  offer
②  leave
③  affor
④  manage
【单选题】 The Brownings have not ____ yet and I doubt whether they will come.
①  turned in
②  turned out
③  turned up
④  turned to
【单选题】 Her team have helped her to get ( ) the difficult time.
①  across
②  away
③  through
④  around
【判断题】 A: How do you like this flat? B: I dont like it.
①  正确
②  错误
随机题目
【判断题】 无论何种具体的系统,均可以分解为输入、处理、输出、反馈和控制等五个基本要素。
①  正确
②  错误
【判断题】 企业是一种基本的经济组织,是管理信息系统的主要研究对象。
①  正确
②  错误
【单选题】 以下正确的函数原型语句是()。
①  double fun(int x,int y)
②  double fun(int x;int y)
③  double fun(int,int);
④  double fun(int x,y);
【单选题】 下列()的调用方式是引用调用。
①  形参和实参都是变量
②  形参是指针,实参是地址值
③  形参是引用,实参是变量
④  形参是变量,实参是地址值
【单选题】 在下面的一维数组定义中,哪一个有语法错误。()
①  int a[]={1,2,3};
②  int a[10]={0};
③  int a[];
④  int a[5];
【单选题】 以下函数的返回结果是( )。 int function(char *x) { char *p=x; while(*p++); return(p-x-1); }
①  求字符串的长度B.将字符串x连接到字符串p后面
②  将字符串x复制到字符串p中
③  将字符串x反向存放
【单选题】 设有如下函数定义 int f(char *s) { char *p=s; while(*p!=’\0’) p++; return(p-s); } 在主函数中用cout<<f(“good”)调用上述函数, 则输出结果为( )。
①  3
②  4
③  5
④  6
【单选题】 以下说法中正确的是()。
①  C++程序总是从第一个定义的函数开始执行
②  C++程序总是从main函数开始执行
③  C++函数必须有返回值,否则不能使用函数
④  C++程序中有调用关系的所有函数必须放在同一个程序文件中
【单选题】 以下正确的说法是()。
①  用户调用标准库函数前,必须重新定义
②  用户可以重新定义标准库函数,若如此,该函数将失去原有含义
③  系统不允许用户重新定义标准库函数
④  用户调用标准库函数前,不必使用预编译命令将该函数所在文件包括到用户源文件中
【单选题】 在下面的字符数组定义中,哪一个有语法错误。()。
①  char a[20]=”abcdefg”;
②  char a[]=”x+y=55.”;
③  char a[15];
④  char a[10]=’5’;