I have lived here () 1997. A、forB、sinceC、atD、from

I have lived here () 1997.

A、for

B、since

C、at

D、from


相关考题:

3. —Come and join us,Jimmy !—I-m sorry,but I-m really busy now.lf I _______ time,l would certainly go.A. will haveB. have hadC. hadD. have

If only we______(have)a phone! I'm tired of waiting outside the public phone box.

-Would you like to go to the cinema?-I'd _____to go to the museum.A. ratherB. PreferC. have

The house rent is expensive.I’ve got about half the space I had at home and I'm paying ( ) here. A、three times as muchB、as much three timesC、much as three timesD、as three times much

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

The fighter would rather die with his head high than ____ with his knees bent. A.to liveB.livingC.liveD.lived

I'd never achieve my dreams ______ here.A: workingB: workedC: workD: to work

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

Here ________ a new pair of shoes for you. A.hasB.isC.areD.have

设有类定义如下: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);