【单选题】【消耗次数:1】
They ______ thankful to have the opportunity to further their studies.
would like to be
ought to be
would rather be
had better be
参考答案:
复制
纠错
相关题目
【单选题】 Would you like ____ further education?
①  get
②  to get
③  getting
④  to getting
【单选题】 — Would you like to have some icecream?— _______________
①  I don’t know.
②  No,thanks.
③  I dont like it.
④  I like it.
【单选题】 Would you like to have dinner with us this evening?
①  OK, but I have to go to a meeting now
②  No, I can’t
③  I’d love to, but this evening I have to go to the airport to meet my parents
④  I don’t know
【单选题】 30. -Would you like to have tea or coffee? - ____.
①  Either will do
②  Neither do I
③  It doesn’t matter
④  Yes, please
【单选题】 If I had remembered __________ the window, the thief would not have got in.
①  to close
②  closing
③  to have closed
④  having closed
【判断题】 I’m____inclined_____ to think that most children would like their teachers to be their friends rather than their commanders.
①  正确
②  错误
【单选题】 We are going to have a singing party tonight. Would you like to join us?___________
①  I’m afraid not, because I have to go to an important meeting.
②  Of course not. I have no idea.
③  No, I can’t.
④  That’s all set.
【单选题】 We are going to have a dancing party tonight. Would you like to join us?
①  I’m afraid not. Because I have an appointment with my dentist tonight
②  Of course not. I have no idea
③  No, I can’t
④  That’s all set
【单选题】 I had to complete the assignment by Friday [] otherwise, I would have failed the course.
①  comma
②  semicolon
【单选题】 —Would you like some orange juice?—________________.
①  Yes, I would.
②  No, thank you.
③  Im full.
④  I dont like juice.
随机题目
【单选题】 C语言的if语句嵌套时,if与else的配对关系是().
①  每个else总是与它上面的最近的if配对
②  每个else总是与最外层的if配对
③  每个else与if的配对是任意的
④  每个else总是与它上面的if配对
【单选题】 下列合法的数组定义是()
①  inta[]=string;
②  inta[5]={0,1,2,3,4,5};
③  chara=string;
④  chara[]={0,1,2,3,4,5};
【单选题】 已知字母a的ASCII十进制代码为97,则执行下列语句后的输出结果为(). chara=a;a--; printf(%d,%c\n,a+2-0,a+3-0);
①  b,c
②  a--运算不合法,故有语法错
③  98,c
④  格式描述和输出项不匹配,输出无定值
【单选题】 以下程序段运行后s的值是()。 int a[3][3]={1, 2, 3, 4, 5, 1, 2, 3, 4} ; int i, j, s=1; for(i=0; i for(j=i+1; j s+=a[i][j];
①  6
②  120
③  7
④  240
【单选题】 穷举法的基本要素中确定判断条件一般采用()结构。
①  顺序结构
②  选择结构
③  循环结构
④  递归结构
【单选题】 若intx,y;doublez;以下不合法的scanf函数调用语句是()。
①  scanf(%d%lx,%le,x,y,z);
②  scanf(%2d*%d%lf,x,y,z);
③  scanf(%x%*d%o,x,y);
④  scanf(%x%o%6.2f,x,y,z);
【单选题】 下列语句中,哪一个可以输出26个大写英文字母()。
①  for(a=A;a=Z;printf(%c,++a));
②  for(a=A;aZ;a++)printf(%c,a);
③  for(a=A;a=Z;printf(%c,a++));
④  for(a=A;aZ;printf(%c,++a));
【单选题】 下列能正确定义一维数组a的语句是()。
①  inta(10);
②  intn=10,a[n];
③  intn;scanf(%d,n)inta[n];
④  #definen10inta[n];
【单选题】 下列叙述中,错误的一条是()
①  scanf()函数可以用来输入任何类型的多个数据
②  数组名作函数参数时,也采用值传递方式
③  如果行参发生改变,不会改变主调函数的实参值
④  函数实参与行参的类型应一致
【多选题】 下列选项中事件说法传递不正确的是()
①  事件可以传递给Service并进行处理
②  事件只能在UI界面中通过视图传递
③  事件既可以在Service中传递,也可以在UI控件之间传递
④  以上都不对