以下能正确定义数据类型Systemlnfo的代码是( )。
A.Type Systemlnfo
B.Type SystemInfo
第1题:
以下能正确定义数据类型TelBook的代码是______。
A.Type TelBook Name As String*10 TelNum As Integer End Type
B.Type TelBook Name As String*10 TelNum AS Integer End TelBook
C.Type TelBook Name String*10 TelNum Integer End Type TelBook
D.Typedef TelBook NameString*10 TelNum Integer EndType
第2题:
以下能正确定义数据类型TelBook的代码是 ______。
A.Type TelBook Name As String *10 TelNum As Integer End Type
B.Type TelBook Name As String*10 TelNum As Integer End TelBook
C.Type TelBook Name String*10 TelNum Integer End Type TelBook
D.TypedefTelBook NameString*10 TelNum Integer End Type
第3题:
以下能正确定义数据类型StuInfo的代码是()。
A.Type StuInfo Xm As String*8 Xh As Integer End Type StuInfo
B.Type StuInfo Xm As String*8 Xh As Integer Type End
C.Type StuInfo Xm As String*8 Xh As Integer End Type
D.Type StuInfo Xm String*8 Xh As Integer End StuInfo
第4题:
以下能正确定义数据类型TelBook的代码是( )。
A.Type TelBook Name As String*10 TelNum As Integer End Type
B.Type TelBook Name As String*10 TelNum As Integer End TelBook
C.Type TelBook Name String*10 TelNum Integer. EndType TelBook
D.Typedef TelBook Name String*10 TelNum Integer End Type
第5题:
关于下面代码的叙述不正确的是()
A代码中参数数组必须改为值传递
B代码中参数数组必须改成过程定义的最后一个参数
C代码中参数数组中的每一个元素的数据类型应该和ParamArray的数据类型相同。
D代码中参数数组根据需要可以改成多位数组。