【名词&注释】
设计阶段(design stage)、软件产品(software product)、表达式、存储空间(storage space)、基础上(basis)、文本框(text box)、大小写、字符串变量(character string variable)、小写字母、不成立(doubtlessness)
[单选题]检查软件产品是否符合需求定义的过程称为 ______ 。
A. 确认测试
B. 集成测试
C. 验证测试
D. 验收测试
查看答案&解析查看所有试题
学习资料:
[单选题]若已定义 int a[]={0,1,2,3,4,5,6,7,8,9},*p=a,i; 其中0≤i≤9,则对a数组元素不正确的引用是
A. a[p-A)
B. *(&a[i])
C. p[i]
D. a[10]
[单选题]有以下程序: #includestring.h> main() {char p[20]={'a','b','c','d'),q[]="abc",r[]="abcde" strcat(p,r);strcpy(p+strlen(q),q); printf("%d\n",sizeof(p)); } 程序运行后的输出结果是( )。
A. 6
B. 11
C. 7
[单选题]编写了如下事件过程: Private Sub Form_MouseDown(KeyCode As Integer,Shift As Integer) If (Button And 3)=3 Then Print"AAAA" End If End Sub 程序运行后,为了在窗体上输出“AAAA”,应按下的鼠标键是
A. 左
B. 右
C. 同时按下左和右
D. 按什么键都不显示
[单选题]在窗体上画一个命令按钮Command1和两个文本框,名称分别为Text 1和 Text 2 Text 2。编写如下两个事件过程: Dim str As String, strl As String Private Sub form_load() TextText = " " TextText = " " TextEnabled = False TextEnabled = False End Sub Private Sub Form. KeyPress(KeyAscii As Integer) str= str&Chr(KeyAscii) End Sub Private Sub Form_KeyDown(KeyCode As Integer, Shift As Integer) str1 = strl&Chr(KeyCode) End Sub Private Sub Command1_Click() TextText =str TextText = str1 str= " " str1= " " End Sub 当在设计阶段把窗体KeyPreview属性设置为True时,程序运行过程中,在键盘上输入小写字母abc,然后单击命令按钮,则文本框Text1中显示的内容为 ______ 。
A. abc
B. 不显示任何信息
C. ABC
D. 出错
[单选题]当使用fstram流类定义一个流对象并打开一个磁盘文件时,文件的隐含打开方式为
A. ios::in
B. ios::out
C. ios::int | ios::out
D. 没有
[单选题]有如下说明: int a[10]={1,2,3,4,5,6,7,8,9,10},*p=a; 则数值为9的表达式是______。
A. *p+9
B. *(p+8)
C. *p+=9
D. p+8
本文链接:https://www.51ksbd.net/show/zzo8ye.html