康有为《登万里长城》中有“清时堡堠传烽静,出塞山川作势雄”的诗句,句中“清时”指的是()。
A.清明节
B.清秋时节
C.清朝
D.没有战争的年代
参考答案:D
Extreme Programming (XP) is a discipline of software development with (71) of simplicity, communication, feedback and courage. Successful software development is a team effort-not just the development team, but the larger team consisting of customer, management and developers. XP is a simple process that brings these people together and helps them to succeed together. XP is aimed primarily at object-oriented projects using teams of a dozen or fewer programmers in one location. The principles of XP apply to any (72) project that needs to deliver quality software rapidly and flexibly.
An XP project needs a(an) (73) customer to provide guidance. Customers, programmers, managers, are all working (74) to build the system that’s needed.Customers-those who have software that needs to be developed-willleam simple, effective ways to (75) what they need, to be sure that they are getting what they need, and to steer the project to success.
(74)处填()。
A.together
B.by themselves
C.separately
D.alone
有如下程序: #include(iostream) using namespace std; class TestClass protected: TestClass()couti(cout<<‘x’; TestClass(char c)cout<<c;; class TestClassl:publicTestClass public: TestClassl(char c)cout<<c;; int main() TestClassl d1(‘y’); return 0; 执行这个程序,屏幕上格显示输出( )。
A.y B.yx C.xy D.yy