【单选题】【消耗次数:1】
A: Would you like me to feed your cats while youre on your holiday? B: [填空].
I appreciate it, but Ive already fed them
No problem, I was more than glad to do it
Thanks for offering your help, but my sisters going to do it
Certainly, feeding cats is my favorite pastime
参考答案:
复制
纠错
相关题目
【判断题】 A: How do you find your job? B: My friend recommended it to me.
①  正确
②  错误
【单选题】 A: Can I help you? B: [填空]. Where do I pay my fees?
①  Thank you
②  As you please
③  Yes, you can
④  Yes, please
【判断题】 A: Do you think I could borrow your bicycle? B: Take your time.
①  正确
②  错误
【单选题】 What do you eat for your meal? --- I eat [填空] .
①  a egg and some breads
②  an egg and some bread
③  an egg and some breads
【单选题】 What are we going to do? I am ________ your suggestion.
①  in
②  at
③  by
④  on
【单选题】 Do you think I could borrow your dictionary?
①  Yes, you may borrow
②  Yes, go on
③  Yes, help yourself
④  It doesn’t matter
【单选题】 Would you mind _____ your radio a little bit? I cant concentrate on my work.
①  turning on
②  turning down
③  turning to
④  turning in
【判断题】 A: Do you like your job? B: Im a nurse.
①  正确
②  错误
【判断题】 A: What do you do? B: I do well in my studies.
①  正确
②  错误
【单选题】 -I hope you don’t mind my pointing out your mistakes.- ____.
①  Of course
②  You’re welcome
③  Certainly not
④  Yes, I do
随机题目
【单选题】 穷举法的基本要素中确定判断条件一般采用()结构。
①  顺序结构
②  选择结构
③  循环结构
④  递归结构
【单选题】 若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控件之间传递
④  以上都不对
【多选题】 在C语言中,以下关于文件的说法叙述中正确的是()
①  C语言中对二进制文件的访问速度比文本文件快
②  在计算机中,一个整型的数据既可以用ASCII码形式存储,也可以用二进制形式存
③  语句FILE?fp;定义了一个名为fp的文件指针
④  C语言中的文本文件以ASCII码形式存储数据
【多选题】 以下假设变量都已经正确定义,以下能实现两数交换的是;()
①  t=a;a=b;b=t;
②  t=b;b=a;a=t;
③  a=t;b=t;t=a;
④  b=t;a=b;a=t;
【多选题】 利用数组可以很方便的对多个数据进行()操作。
①  求和
②  求平均
③  求最大值
④  求最小值
【多选题】 返回语句的作用包含以下哪些项()
①  利用返回语句能立即从所有的函数中退出,即返回到调用的程序中去
②  返回语句能返回值
③  返回语句的主要作用是结束循环的判断
④  返回语句在程序是只能起分隔作用