niusouti.com
参考答案和解析

正确答案:A
解答参考:A 本题回答为对不起,小姐,我不知道。我也是新生。由此推断,问题是问路,选项B、C、D都非问路句型,故选A。

更多“–()? – I don’t know, Miss. I’m a new student here myself. ”相关问题
  • 第1题:

    ____ 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

  • 第2题:

    设有如下代码:

    class Base{}

    public class MyCast extends Base{

    static boolean b1=false;

    static int i = -1;

    static double d = 10.1;

    public static void main(String argv[]){

    MyCast m = new MyCast();

    Base b = new Base();

    //Here

    }

    }

    则在 //Here处插入哪个代码将不出现编译和运行错误。

    A.b=m;

    B.m=b;

    C.d =i;

    D.b1 =i;


    正确答案:AC

  • 第3题:

    下列程序段的时间复杂度为()。for(i=0;i<m;i++)for(j=0;j<t;j++)e[i][j]=0;for(i=0;i<m;i++)for(j=0;j<t;j++)for(k=0;k<n;k++)c[i][j]_c[i][j]+a[i][k]×b[k][j];

    A.O(m×n×t)
    B.O(m+n+t)
    C.O(m×t+n)
    D.O(m+n×t)

    答案:A
    解析:
    在程序段中,有两段循环程序,第一段是一个双层嵌套循环,另一个是三层嵌套循环,所以基本操作是c[i][j]=c[i][j]+a[i][k]×b[k][j],此基本操作共执行m×t×n次。

  • 第4题:

    I’d rather you ________ make any comment on the issue for the time being.

    A) don’t     B) wouldn’t     C) didn’t            D) shouldn’t    

     


    选C
    would rather that……"宁愿……",that从句中用过去时表示现在或将来要做的事。

  • 第5题:

    -- Ann is in hospital.

    -- Oh, really? I __ know. I __ go and visit her.

    A. didn’t; am going to B. don’t; would

    C. don’t; will D. didn't; will


    正确答案:D

  • 第6题:

    下列程序段的时间复杂度是()。 for(i=0; i<m; i++) for(j=0; j<t; j++) c[i][j]=0; for(i=0; i<m; i++) for(j=0; j<t; j++) for(k=0; k<n; k++) c[i][j]=c[i][j]+a[i][k]*b[k][j];

    A.O(m+n+t)

    B.O(m+n*t)

    C.O(m*t+n)

    D.O(m*n*t)


    O(n^2)