此题为判断题(对,错)。
第1题:
A、three times as much
B、as much three times
C、much as three times
D、as three times much
第2题:
A.X
B.y
C.j
D.i
第3题:
设有类定义如下:
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);
第4题:
I'd never achieve my dreams ______ here.
A: working
B: worked
C: work
D: to work
第5题:
If any beasts comes at you, I()stay with you and help you.
A、am going to
B、will
C、can
第6题: