Software design is a(46) process. It requires a certain amount of fl air on the part of the(47). Design can not be learned from a book . It must be practiced and learnt by experience and study of existing systems. A well(48) software system is straightforward to implement and maintain , easily(49) and reliable. Badly(48) software systems, although they may work are(50) to be expensive to maintain , difficult to test and unreliable.
A.create
B.creative
C.creating
D.created
第1题:
A passenger plane is able to carry a fixed weight, including passengers and fuel.Which wing design would be best for such a plane?
A.Design 1
B.Design 2
C.Design 3
D.Design 4
To handle the question, you need to infer that the “best” design would be one that is most efficient in terms of its lift-to-drag ratio as well as in terms of fuel consumption. Fortunately,Tables 1 and 2 each show that design 2 is most efficient.
第2题:
Given the following DDL for the PARTS table:CREATE TABLE parts (part_no INT(9) NOT NULL, part_name VARCHAR(24), part_remain INT(9));All part numbers entered will be different and all rows should be displayed in order of increasing part numbers whenever the table is queried. Which of the following create index statements will meet this criteria and require the least amount of storage for the index object?()
A.CREATE UNIQUE INDEX idx_partno ON parts(part_no)
B.CREATE UNIQUE INDEX idx_partno ON parts(part_name ASC)
C.CREATE UNIQUE INDEX idx_partno ON parts(part_name, part_no ASC)
D.CREATE UNIQUE INDEX idx_partno ON parts(part_no, part_name ASC)
第3题:
The Estimate Activity Resource process is closely coordinated with the (73)process.
(73)
A. Estimate Costs
B. Sequence Activities
C. Plan Communications
D. Conduct Procurements
第4题:
The stages within the development phase of the software life cycle are ( 71 ).
A.design, analysis, implementation, and testing
B.analysis, design, implementation, and testing
C.analysis, design, testing, and implementation
D.design, analysis, testing, and implementation
第5题:

A. Design 1 is a looped triangle design.
B. Design 2 is a looped triangle design.
C. Design 2 achieves quick convergence using RSTP.
D. Both designs supportstateful services at the aggregation layer.
E. Design 2 is the most widely deployed in enterprise data centers.
第6题:
以下()SQL语句可以查询出课程名中只包含“_design”字符串的课程信息。
A.select * from course where cname like '%_design%'
B.select * from course where cname like '%_design%' escape ''
C.select * from course where cname like '%#_design%' escape '#'
D.select * from course where cname like '%*_design%' escape '*'