更多“I have lived here () 1997. ”相关问题
  • 第1题:

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


    正确答案:had

  • 第2题:

    I'd never achieve my dreams ______ here.

    A: working

    B: worked

    C: work

    D: to work


    参考答案:A

  • 第3题:

    Here ________ a new pair of shoes for you.

    A.has

    B.is

    C.are

    D.have


    正确答案:B
    解析:本题考查主谓一致的用法。本句主语是 “a new pair of shoes”,中心词是 “pair,所以应该视为单数。固定结构 “here is...”表达 “这是......”之意。句意:“这双新鞋送给你。”

  • 第4题:

    The fighter would rather die with his head high than ____ with his knees bent.

    A.to live

    B.living

    C.live

    D.lived


    答案:C

  • 第5题:

    现有:publicclassTestDemo{privateintX-2;staticinty=3;publicvoidmethod(){finalinti=100;intj=10;classCinner{publicvoidmymethod(){//Here}}}}在Here处可以访问的变量是哪些?()

    A.X

    B.y

    C.j

    D.i


    参考答案:A, B, D

  • 第6题:

    设有类定义如下:

    class Base{

    public Base(int i){}

    }

    public class MyOver extends Base{

    public static void main(String arg[]){

    MyOver m = new MyOver(10);

    }

    MyOver(int i){

    super(i);

    }

    MyOver(String s, int i){

    this(i);

    //Here

    }

    }

    以下哪条语句可以安排在//Here处 ?

    A.MyOver m = new MyOver();

    B.super();

    C.this("Hello",10);

    D.Base b = new Base(10);


    正确答案:D