此题为判断题(对,错)。
第1题:
A. s := make([]int)
B. s := make([]int, 0)
C. s := make([]int, 5, 10)
D. s := []int{1, 2, 3, 4, 5}
第2题:
It was raining outside, I ( ) one umbrella and walked out.
A.picked up
B.take up
C.have
D.make
第3题:
A. make, think
B. makes, think
C. makes, to think
D. make, thinking
第4题:
2010年,MAKE奖的全球级奖项细分为全球MAKE奖和全球独立运营机构MAKE奖。
第5题:
若类A和类B的定义如下: class A { int i,j; public: void get(); //… } ; class B:A//默认为私有派生 { int k; public: void make(); //… }; void B::make() { k=i*j; } 则上述定义中, ( )是非法的表达式。
A.void get();
B.int k;
C.void make();
D.k=i*j;
第6题:
A.keep…from
B.keep…up
C.stop…to
D.make…from
第7题:
若类A和类B的定义如下: class A { public: int i,j; void get(); }; class B:A{ int i, j; protected; int k; public: void make(); }; void B: :make()(k=i*j;} 则其中 ______ 是非法的表达式。
A.void get();
B.int k;
C.void make();
D.k=i*j;
第8题:
31. She couldn’t _________ her words _________by the students.
A. get , understanding
B. get, understood
C. make,to understand
D. make,understand
第9题:
若类A和类B的定义如下: class A { int i, public: void get(); / /... }; class B:A//默认为私有派生 { int k; public: void make(); / /... }; void B: :make() { k=i*j; } 则上述定义中, ( )是非法的表达式。
A.void get();
B.int k:
C.void make();
D.k=i*j;
第10题:
若类A和类B的定义如下,则上述定义中, 是非法的表达式。 class A { int i,j; public: void get(); //… }; class B : A //默认为私有派生 { int k; public: void make(); //… }; void B :: make() { k=i*j;}
A.void get();
B.int k;
C.void make();
D.k=i*j;