niusouti.com

—Hello, May I speak to Zhang Hua —___________________I'm afraid he isn't in at the moment.A、OK, please wait .B、Yes, I will ask him to answer the phone.C、One moment, please.

题目
—Hello, May I speak to Zhang Hua —___________________I'm afraid he isn't in at the moment.

A、OK, please wait .

B、Yes, I will ask him to answer the phone.

C、One moment, please.


相似考题
更多“—Hello, May I speak to Zhang Hua —___________________I'm afraid he isn't in at the moment. ”相关问题
  • 第1题:

    I’d love to have a break, but I can't () the time now.

    A.spare

    B.spend

    C.speak


    正确答案:A

  • 第2题:

    – Nice weather, isn't it? – ( ).

    A. I'm not sure

    B. You know it well

    C. Yes, it is

    D. Yes, it isn't


    正确答案:C

  • 第3题:

    输入hello↙,写出下面程序的运行结果。 #include <stdio.h> #include <string.h> int main() { char s[80],t[200]; int i,sl ; gets(s); sl = strlen(s); for(i=0 ;i<sl ;i++) t[i]=s[sl-i-1] ; for (i=0; i<sl; i++) t[sl+i] = s[i]; t[sl+i]='0' ; puts(t); return 0; }


    ollehhello

  • 第4题:

    ____ I?know,?there?isn’t?such?a?word?in?English.

    A、As much as

    B、So far as

    C、As long as

    D、As soon as


    参考答案:B

  • 第5题:

    有以下程序段#include <stdio.h>void fun(char*fname,char*st){ FILE * myf; int i; myf=fopen(fname,"w"); for(i=0;i<strlen(st);i++)fputc(st[i],myf); fclose(myf);}main(){ fun("test.t","new world"); fun("test.t","hello,");}程序执行后,文件test.t中的内容是A.hello, B.new worldhello,C.new world D.hello,rld


    正确答案:D
    本题主要考查文件的操作。在本题的程序中,首先定义了一个无返回值的函数fun,该函数带有两个指针类型的形参,其中第一个形参指向需要被操作文件的文件名,而第二个形参指向被操作的字符串。在函数体中,首先定义一个文件指针,然后以只写的方式打开第一个形参所指向的文件,接着执行for循环,循环结束的条件是循环变量小于被操作字符串的长度,循环体中的程序fputc(st[i],myf);的功能是将字符串中的当前字符输入到文件中。由这些分析我们可以知道,函数fun的作用是将字符串的内容写入到文件中。
    在主函数中,两次调用函数fun,当第一次调用时,写入文件的内容为new world,然后第二次调用函数,此时打开文件,文件的指针重新回到开始,然后往文件中写内容“hello,”,由于此时文件中已经有内容“new world”,则需要覆盖前面一部分的内容,因此,程序的最终输出结果是hello,rld,本题的正确答案选D。

  • 第6题:

    下面的程序执行后,文件test.t中的内容是 ()。 #include <stdio.h> void fun(char *fname,char *st) {FILE *myf;int i; myf=fopen(fname,"w"); for(i=0;i<strlen(st);i++) fputc(st[i],myf); fclose(myf); } int main(void) { fun("test.t","new world"); fun("test.t","hello,"); return 0; }

    A.hello,

    B.new worldhello,

    C.new world

    D.hello,rld


    hello,