How did he make his way out in the end?
A. The vice-president found him.
B. Some one opened the elevator.
C. The elevator began to work on Tuesday.
D. He found a door in the elevator.
第1题:
I am hungry. So ______ he.
A、does
B、is
C、do
D、did
第2题:
A.one…another
B.one…the other
C.one…the others
D.some…others
第3题:
编译和执行以下代码,输出结果是( )。 int i=1; switch (i) { case 0: System.out.print("zero,"); break; case 1: System.out.print("one,"); case 2: System.out.print("two,"); default: System.out.println("default"); }
A.one,
B.one,two,
C.one,two,default
D.default
第4题:
A.
var s []ints = append(s,1)
B.
var m map[string]intm["one"] = 1
C.
var s []ints = make([]int, 0)s = append(s,1)
D.
var m map[string]intm = make(map[string]int)m["one"] = 1
第5题:
Ada: How's the young man?
Bill:______
A、He's twenty.
B、He's a doctor.
C、He's much better.
D、He's Dick.
第6题:
有如下代码段:
switch ( x ){
case 1:System.out.println("One");break;
case 2:
case 3:System.out.println("Two");break;
default:System.out.println("end");
}
变量x的取值下列哪些情形时,能使程序输出"Two" 。
A. 1
B. 2
C. 3
D. default