A、for
B、since
C、at
D、from
第1题:
第2题:
I'd never achieve my dreams ______ here.
A: working
B: worked
C: work
D: to work
第3题:
A.has
B.is
C.are
D.have
第4题:
A.to live
B.living
C.live
D.lived
第5题:
A.X
B.y
C.j
D.i
第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);