单项选择题

软件测试的过程是
Ⅰ.集成测试 Ⅱ.验收测试 Ⅲ.系统测试 Ⅳ.单元测试

A) Ⅰ、Ⅱ、Ⅲ、Ⅳ
B) Ⅳ、Ⅲ、Ⅱ、Ⅰ
C) Ⅳ、Ⅰ、Ⅱ、Ⅲ、
D) Ⅱ、Ⅰ、Ⅳ、Ⅲ
<上一题 目录 下一题>
热门 试题

单项选择题
要求当鼠标在图片框Picture1中移动时,立即在图片中显示鼠标的位置坐标。下面能正确实现上述功能的事件过程是( )。
A) Private Sub Picture1_MouseMove(Button As Integer,Shift As integer,XAs Single,Y As Single)
Picture1.Print X,Y
EndSub
B) Private Sub Picture1_MouseMove(Button As Integer,Shift As Integer,XAs Single,Y As Single)
Print X,Y
EndSub
C) Private Sub Picture1_MouseDown(Button As Integer,Shift As Integer,XAs Single,Y As Single)
Picture.Print X,Y
End Sub
D) Private Sub Form_MouseMove(Button As Integer Shift As Integer,XAs Single,Y As Single)
Picture1.Print X,Y
End Sub
单项选择题
将任意一个正的两位数N的个位数与十位数对换的表达式为( )。
A.(N-Int(N/10)*10)*10+Int(N/10)
B.N-Int(N)/10*10+Int(N)/10
C.Int(N/10)+(N-Int(N/10))
D.(N-Int(N/10)*10+Int(N/10)
相关试题
  • 面向对象的模型中,最基本的概念是对象和_...
  • 执行下面的程序段后,S的值为______...
  • 以下程序段的功能是:从文本框中输入一个数...
  • 在窗体上有一个过程函数,然后编写如下事件...
  • 在窗体上画一个名为Command1的命令按钮,...