网友您好, 请在下方输入框内输入要搜索的题目:

题目内容 (请给出正确答案)

● A well-designed system should be(73).

①easily understood

②reliable

③straightforward to implement

④straightforward to maintain

(73)

A.①②

B.①③④

C.②③④

D.①②③④


参考答案

更多 “ ● A well-designed system should be(73).①easily understood②reliable③straightforward to implement④straightforward to maintain(73)A.①②B.①③④C.②③④D.①②③④ ” 相关考题
考题 ●Software designis a (66) process.It requires acertain (67) of flair on the partof the designer.Design can not be learned from a book.It must be practiced and learnt by experienceand study of existing systems.A well (68) software system is straightforward to implementand maintain,easily (69) and reliable.Badly (68) software systems,although theymay work are (70) to be expensive to maintain,difficult to test and unreliable.(66) A.createB.createdC.creatingD.creative(67) A.amountB.amountedC.mountD.mounted(68) A.designB.designedC.designingD.designs(69) A.understandB.understandsC.understandingD.understood(70) A.likeB.likelyC.unlikeD.unlikely

考题 ● Fair and (73) competition in government procurement around the world is good business and good public policy. Competitive pricing, product (74)and performance improvements result from competitive practices and help ensure that government authorities get the best (75)for the public they serve.(73)A. openB. continueC. dependentD. reliable(74)A. recessionB. innovationC. crisisD. ability(75)A. helpB. serverC. valueD. policy

考题 A well-designed system should be(73)。①easily understood②reliable③straightforward to implement④straightforward to maintainA.①②B.①③④C.②③④D.①②③④

考题 Fair and (73) competition in government procurement around the world is good business and good public policy.Competitive pricing,product (74) and performance improvements result from competitive practices and help ensure that government authorities get the best (75) for the public they serv(73)A.openB.continueC.dependentD.reliable

考题 I ()have been here, but I()not find the time.A. could; couldB. might; couldC. should; couldD. should; would

考题 Software design is a(71)process .It requires a certain(72)of flair on the part of the designer. Design can not be learned from a book .It must be practiced and learnt by experience and study of existing systems .A well(73)software system is straightforward to implement and maintain ,easily(74)and reliable .Badly(73)software systems ,although they may work are(75)to be expensive to maintain ,difficult to test and unreliable.A.createB.createdC.creatingD.creative

考题 If you want to go to the movie tonight, so__________I. A.do B.am C.will D.should

考题 I__________have been there,but I__________not find the time.A.should;would B.should;could C.might;could D.could;could

考题 下列选项中,循环会无限执行的是______。A.int i = 1 ; while (i < 10) System .out .print(“ ” + i) ;B.for(int i = 1 ; i < 10 ;i ++) System .out .print(“ ” + i);C.for(int i = 10 ; i > 0 ;i --) System .out .print(“ ” + i);D.int i = 1 ; while (true) { System .out .print(“ ” + i); i ++ ; if (i > 5) break ;