itgle.com

who's that woman standing by our English teacher? It _be Jims mother, I'm not sureA.canB.shouldC mightD.must

题目

who's that woman standing by our English teacher? It _be Jims mother, I'm not sure

A.can

B.should

C might

D.must


相似考题
更多“who's that woman standing by our English teacher? It _be Jims mother, I'm not ”相关问题
  • 第1题:

    Woman:Hello,Mr.Johnson′s office.
    Man:Good morning.56?
    Woman:Sorry,he′s in a meeting at the moment.57?
    Man:Yes.This is Steve Lee from Brightlight Systems.58?
    Woman:Tomorrow afternoon in your office.
    Man:59.
    Woman:Okay.60.
    Man:Thank you.

    第60题的答案是()

    A.Can I speak to Mr.Johnson,please
    B.I′ll tell him you′ve called
    C.I′ll give him the message
    D.What can I do for you
    E.Can you tell him that we can meet tomorrow afternoon in my office
    F.Can I take a message
    G.Can you ask him to call me back as soon as possible
    H.That′s right

    答案:C
    解析:

  • 第2题:

    Woman:Hello,Mr.Johnson′s office.
    Man:Good morning.56?
    Woman:Sorry,he′s in a meeting at the moment.57?
    Man:Yes.This is Steve Lee from Brightlight Systems.58?
    Woman:Tomorrow afternoon in your office.
    Man:59.
    Woman:Okay.60.
    Man:Thank you.

    第57题的答案是()

    A.Can I speak to Mr.Johnson,please
    B.I′ll tell him you′ve called
    C.I′ll give him the message
    D.What can I do for you
    E.Can you tell him that we can meet tomorrow afternoon in my office
    F.Can I take a message
    G.Can you ask him to call me back as soon as possible
    H.That′s right

    答案:F
    解析:

  • 第3题:

    写出以下程序的运行结果: int main() { int m,s,i; for(m=2;m<10;m++) { s=0; for(i=1;i<m;i++) if((m%i)==0) s=s+i; if(s==m) printf(“%d”,m); } return 0; }


    10

  • 第4题:

    Woman:Hello,Mr.Johnson′s office.
    Man:Good morning.56?
    Woman:Sorry,he′s in a meeting at the moment.57?
    Man:Yes.This is Steve Lee from Brightlight Systems.58?
    Woman:Tomorrow afternoon in your office.
    Man:59.
    Woman:Okay.60.
    Man:Thank you.

    第58题的答案是()

    A.Can I speak to Mr.Johnson,please
    B.I′ll tell him you′ve called
    C.I′ll give him the message
    D.What can I do for you
    E.Can you tell him that we can meet tomorrow afternoon in my office
    F.Can I take a message
    G.Can you ask him to call me back as soon as possible
    H.That′s right

    答案:E
    解析:

  • 第5题:

    Woman:Hello,Mr.Johnson′s office.
    Man:Good morning.56?
    Woman:Sorry,he′s in a meeting at the moment.57?
    Man:Yes.This is Steve Lee from Brightlight Systems.58?
    Woman:Tomorrow afternoon in your office.
    Man:59.
    Woman:Okay.60.
    Man:Thank you.

    第59题的答案是()

    A.Can I speak to Mr.Johnson,please
    B.I′ll tell him you′ve called
    C.I′ll give him the message
    D.What can I do for you
    E.Can you tell him that we can meet tomorrow afternoon in my office
    F.Can I take a message
    G.Can you ask him to call me back as soon as possible
    H.That′s right

    答案:H
    解析:

  • 第6题:

    29、如下程序的输出结果是 int main() { char books[][20]={"English","Math","Physical"}; int i,j; for(i=0;i<3;i++) { strcat(books[i],"book"); } printf("%s",&books[i-1][3]); return 0; }

    A.Physicalbook

    B.sical

    C.Physical

    D.sicalbook


    B 解析: 本题涉及字符串最基本的两个概念:①字符串的长度是指字符串中字符的个数,但不包括字符串结束符;②以反斜杠“\\”开头的特殊字符序列,意思是把反斜杠后面的字符序列转换成特定的含义,而不是原来的含义,不包含在字符串长度之内,“\\”连同后面的字符为一个长度。