niusouti.com

— I'm afraid I have spilled some coffee on the table cloth.— ____________A.Oh, don't worry about that.B.You needn’t apologize.C.I feel sorry for that.D.Oh, you shouldn’t have done that.

题目
— I'm afraid I have spilled some coffee on the table cloth.— ____________

A.Oh, don't worry about that.

B.You needn’t apologize.

C.I feel sorry for that.

D.Oh, you shouldn’t have done that.


相似考题
更多“— I'm afraid I have spilled some coffee on the table cloth.— ____________ ”相关问题
  • 第1题:

    —I'd met Smith several times before.—So (have) ( ) I.


    正确答案:had

  • 第2题:

    --I' d like ___________ information about the management of your hotel, please.
    --Well, you could haveword with the manager, which might be helpful.

    A.some ; a
    B.an ; some
    C.some; some
    D.an; a

    答案:A
    解析:
    information在此为不可数名词,故可排除B、D两个选项;have a word with sb.为固定短语。意思是“跟……说句话”。

  • 第3题:

    下面()仅输出m的大于1的最小因子。

    A.for (i =2; i<=m-1; i++) if (m % i == 0) { printf("%d is 最小因子n", i); break; }

    B.for (i =2; i<=m-1; i++) if (m % i == 0) { printf("%d is 最小因子n", i); continue; }

    C.for (i =2; i<=m-1; i++) if (m % i == 0) { printf("%d is 最小因子n", i); }

    D.i=2; while (m % i != 0) i++; printf("%d is 最小因子n", i);


    A

  • 第4题:

    A: I’d like ________ information about the school. B: You could have ________ word with the schoolmaster.

    A.some / a

    B.an / some

    C.some / some


    参考答案:A

  • 第5题:

    Most operating systems have a standard set of ( ) to handle the processing of all input and output instructions.

    A.spreadsheet
    B.control instructions
    C. I/O operation
    D.datA.table

    答案:B
    解析:
    翻译:

    大多数操作系统都有一套标准的(71)处理所有的输入和输出指令。

    A. 电子表格 B. 控制指令

    C. I/O操作 D. 数据表

  • 第6题:

    下面()是正确的判断素数程序(m>1)。

    A.j=0; for (i =2; i<=m-1; i++) if (m % i != 0) j++; if(j==m-2) printf(“%d是素数n", m);

    B.j=0; for (i =2; i<=m-1; i++) if (m % i == 0) j++; if(j==0) printf(“%d是素数n", m);

    C.flag=0; for (i =2; i<=m-1; i++) if (m % i == 0) flag=1; if(flag==0) printf(“%d是素数n", m);

    D.for (i =2; i<=m-1; i++) if (m % i == 0) i=m+2; if(i==m+3) printf(“%d是素数n", m);


    D