单项选择题

表达式Val(".123E2")的值是( )。

A.123
B.12.3
C.0
D.123e2CD
<上一题 目录 下一题>
热门 试题

单项选择题
设在工程中定义了下列类型: Type Stutype ino As Integer strname As String*20 strsex As String*1 smark As Single End Type 在窗体上正确使用这个类型的是下列哪个操作( )。
A.Sub Command1_Click()

Dim student As Stutype

With student

.ino=12

.Strname=smith

.strsex=男

.smark=89

End With

End Sub
B.Sub Command1_Click()

Dim Student As Stutype

With student

.ino=12

.strname="smith"

.strsex="男"

.smark=89

End With

End Sub
C.Sub Comnland1_Click()

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
单项选择题
数据的存储结构是指( )。
A.数据所占的存储空间
B.数据的逻辑结构在计算机中的存放形式
C.数据在计算机中的顺序存储方式
D.存储在计算机外存中的数据
相关试题
  • 在窗体上画一个名称为“Command1”、标题...
  • 下列程序段的执行结果是( )。 Dim A(...
  • 有下列函数过程: Function fun1(ByVal...
  • 在窗体下画两个文本框Text1和Text2,一个...
  • 在窗体上放置一个命令按钮Command1,并编...