A、within
B、till
C、by
D、at
第1题:
[A] pushed
[B] got
[C] made
[D] managed
第2题:
Jeff's favorite food is chicken.(同义句转换)
Jeff_______ chicken_______.
第3题:
如何给本章习题选项赋值?
A.answerA:app.globalData.question[realIndex].option[listABCD[0]],
B.answerA:app.globalData.question[this.data.realIndex].option[this.data.listABCD[0]],
C.answerA:app.globalData.answer[this.data.realIndex].choice[this.data.listABCD[0]],
D.answerA:option[this.data.listABCD[0]],
第4题:
CMM(Capability Maturity Model)是由美国国防部DOD指定CMU的软件工程研究所SEI研究出来的一套过程规范,它将软件过程的成熟度分为(62)。
A.Initial, Defined, Managed, Repeatable, Optimizing
B.Initial, Repeatable, Managed, Defined, Optimizing
C.Initial, Repeatable, Defined, Managed, Optimizing
D.Initial, Managed, Defined, Repeatable, Optimizing
第5题:
第6题:
下列对枚举类型的使用的代码中错误的是()。
A.enum {no, yes, none}answer; if (answer == yes) { printf("Yesn"); }
B.enum response{no = -1, yes = 1, none = 0}; enum response answer;
C.answer = yes; printf("%d", answer);
D.answer = "yes"; printf("%s", answer);