单项选择题

下列不属于软件工程3个要素的是( )。

A.工具
B.过程
C.方法
D.环境
<上一题 目录 下一题>
热门 试题

单项选择题
设在工程中定义了如下类型: Type stutype ino As Integer strname As String*20 strsex As String* 1 smark As Single End Type在窗体上正确使用这个类型的是下列哪个操作( )。
A.Sub Commandl_Click0
Dim student As Stutype
With student
.ino = 12
. strname = smith
.strsex =
.smark = 89
End With
End Sub
B.Sub Commandl_Click0
Dim student As Stutype
With student
.ino = 12
.strname = "smith"
.strscx = "男"
.smark = 89
End With
End Sub
C.Sub Commandl_Click0
Dim student As Stutype
With Stutype
ino = 12
.strname = "smith"
.strsex = "男"
.smark = 89
End With
End Sub
D.Sub Command1 _Click()
Dim student As Stutype
With student
.ino = 12
.strname = "smith"
.strsex = "男"
.smark = 89
End student
End Sub
单项选择题
下列程序段运行后窗体上输出结果为( )。 Private Sub Command1 Click() a=5:b=4:c=3:d=2 X=3>2*b Or a=c And b<>C Or c>d Print X End Sub
A.1
B.True
C.False
D.2
相关试题
  • 下列程序的功能是:将字符串“abcde”逆序...
  • 下列程序弹出对话框中按钮的个数为____...
  • 在程序运行时,可以通过______方法来...
  • 组合框有3种不同的类型,这3种类型是下拉...
  • 变量未赋值时,数值型变量的值为_____...