【名词&注释】
生命周期(life cycle)、人机交互(human-computer interaction)、软件开发(software development)、设计阶段(design stage)、不存在(there is no)、驱动程序(driver)、事件监听器(event sniffer)、字符串长度(string length)、抽象类(abstract class)、结束符(end fent mark)
[单选题]栈底至栈顶依次存放元素A、B、C、D,在第五个元素E入栈前,栈中元素可以出栈,则出栈序列可能是
A. A
B. B
C. C
D. E
E. D
F. DCBEA
查看答案&解析查看所有试题
学习资料:
[单选题]设计软件结构是在软件生命周期的( )。
A. 软件定义期
B. 软件开发期
C. 软件维护期
D. 以上3个都不是
[单选题]有以下程序
A. include
B. main()
C. { char p[]={′a′, ′b′, ′c′},q[10]={ ′a′, ′b′, ′c′};
D. printf("%d%d\n",strlen(p),strlen(q));}
E. 以下叙述中正确的是
F. 在给p和q数组置初值时,系统会自动添加字符串结束符(end fent mark),故输出的长度都为3
G. 由于p数组中没有字符串结束符(end fent mark),长度不能确定,但q数组中字符串长度(string length)为3
H. 由于q数组中没有字符串结束符(end fent mark),长度不能确定,但p数组中字符串长度(string length)为3
I. 由于p和q数组中都没有字符串结束符(end fent mark),故长度都不能确定
[单选题]下列关于使用内部类的原因叙述中不正确的是
A. 一个内部类的对象可访问外部类的成员方法和变量,包括私有的成员
B. 实现事件监听器(event sniffer)时,采用内部类、匿名类编程非常容易实现其功能
C. 编写事件驱动程序,内部类很方便
D. 内部类就是特殊的抽象类(abstract class),所以便于人机交互
[单选题]若定义:float x;int a,b;,则正确的switch语句是( )。
A. switch(x) { case1.0:cout"*\n"; case2.0:cout"**\n";
B. switch(x) { case 1.2:cout"*\n"; case 3:cout"**\n"; }
C. switch(a+b) { case 1.0:cout"*\n"; case 1+2:cout"**\n ";
D. switch(a+b) { case 1:cout"*\n"; case 2:cout"**\n";
[单选题]以下程序的输出结果是( )。 int a=5; float x=3.14; a*=x*(‘E’ - ‘A’); printf(“%f\n”,(float)a);
A. 62.000000
B. 62.800000
C. 63.000000
D. 62
本文链接:https://www.51ksbd.net/show/pq4lrx.html