填空题

软件维护活动包括以下几类:改正性维护、适应性维护、 【5】 维护和预防性维护。

【参考答案】

完善性
<上一题 目录 下一题>
热门 试题

单项选择题
编写如下事件过程: Private Sub Form Mouse Down(Button As Integer,Shift As Integer,X As Single, Y As Single) If Shift=6 And Button=2 Then Print BBBB End If End Sub 程序运行后,为了在窗体上输出 BBBB ,应执行的操作为_______。
A.同时按下Shift键和鼠标左键
B.同时按下Shift键和鼠标右键
C.同时按下Ctrl、Alt键和鼠标左键
D.同时按下Ctrl、Alt键和鼠标右键
单项选择题
在窗体上画一个命令按钮,其名称为Command1,然后编写如下程序: Function Func(ByVal x As Integer,y As Integer) y=x*y If y>0 Then Func=x Else Func=y End If End Function Private Sub Command1_Click() Dim a As Integer,b As Integer a=3 b=4 c=Func(a,B) Print a= ;a Print b= ;b Print C= ;c End Sub 程序运行后,单击命令按钮,其输出结果为:_______。
A.a=3 b=12 c=3
B.a=3 b=4 c=3
C.a=3 b=4 c=12
D.a=13 b=12 c=12
相关试题
  • 假定建立了一个工程,该工程包括两个窗体,...
  • 文件的打开和关闭语句分别是 【10】 和...
  • 在窗体上画一个命令按钮,然后编写如下事件...
  • 假定有如下程序代码,程序运行后,把鼠标光...
  • 在执行KeyPress事件过程时,KeyASCII是所按...