( 13 )有如下用户定义类型及操作语句:
Type Student
SNo As String
SName As String
SAge As Integer
End Type
Dim Stu As Student
With Stu
. SNo = "200609001 ”
.SName = ” 陈果果 ”
.Age 二 19
End With
执行 MsgBox Stu.Age 后,消息框输出结果是 【 13 】 。
第1题:
有如下用户定义类型及操作语句: Tyoe Student SNo As String Sname As String SAge As Integer End Type Dim Stu As Student With Stu SNo=”200609001” SName=”陈果果“ A ge=19 End With 执行MsgBox Stu,Age 后,消息框输出结果是 【13】
第2题:
A.type array arr_type[emp.ename%type] index by binary_integer;
B.type table arr_type[emp.ename%type] index by binary_integer;
C.type arr_type is table of emp.ename%type index by binary_integer;
D.type arr_type is pl_sql table of emp.ename%type index by binary_integer;
第3题:
在随机文件操作中,定义记录类型的语句()。
A.Type…End Type
B.Dim
C.Private
D.Public
第4题:
设有如下语句: Dim a,b As Integer c="VisualBasic" d=#7/20/2005# 以下关于这段代码的叙述中,错误的是( )。
A.a被定义为Integer类型变量
B.b被定义为Integer类型变量
C.c中的数据是字符串
D.d中的数据是日期类型
第5题:
有如下用户定义类型及操作语句:
执行MsgBox Stu.Name后,消息框输出结果是__________。