填空题

软件生命周期包括8个阶段。为了使各时期的任务更明确,又可分为3个时期:软件定义期、软件开发期、软件维护期。编码和测试属于 【3】 期。

【参考答案】

软件开发
<上一题 目录 下一题>
热门 试题

填空题
在深度为5的完全二叉树中,度为2的结点数最多为 【1】 。
单项选择题
有以下程序 #include <iostream> #include <string> using namespace std; class base { private: char baseName[10]; public: base() { strcpy(baseName, Base ); } virtual char *myName() { return baseName; } char *className() { Return baseName; } }; class Derived: public base { private: char derivedName[10]; public: Derived() { strcpy(derivedName, Derived ); } char *myName() { return derivedName; } char *className() { return derivedName; } }; void showPtr(base &p) { cout<<p.myName()<< <<p.className(); } int main() { base bb; Derived dd; showPtr(dd); return 0; } 运行后的输出结果为
A.Derived Base
B.Base Base
C.Derived Derived
D.Base Derived
相关试题
  • 有如下程序:#include <iostream>using...
  • 有以下程序#include <iostream>using ...
  • 已知 int DBL(int n){return n+n;...
  • 在下面横线上填上适当的语句,完成程序。#...
  • 下列程序的输出结果是 【10】 。#incl...