以下能正确定义数据类型StuInfo的代码是( )。
A: Type StuInfo Xm As String*8 Xh As IntegerEnd Type StuInfo
B: Type StuInfo Xm As String*8 Xh As IntegerType End
C: Type StuInfo Xm As String*8 Xh As IntegerEnd Type
D: Type StuInfo Xm String*8 Xh As IntegerEnd StuInfo
A: Type StuInfo Xm As String*8 Xh As IntegerEnd Type StuInfo
B: Type StuInfo Xm As String*8 Xh As IntegerType End
C: Type StuInfo Xm As String*8 Xh As IntegerEnd Type
D: Type StuInfo Xm String*8 Xh As IntegerEnd StuInfo
举一反三
- 以下能正确定义数据类型TelBook的代码是: A: Type TelBook Dim Name As String * 10 Dim TelNum As IntegerEnd Type B: Type TelBook Name As String * 10 TelNum As IntegerEnd Type C: Type TelBook Name As String * 10 TelNum As IntegerEnd TelBook D: Type TelBook Name As String * 10 TelNum As IntegerEnd Type TelBook
- 不能创建字典的是( )。 A: a=dict(XH=9001,XM="ZSan") B: a=dict([("XH",9001),("XM","ZSan")]) C: a={XH:9001,XM:"ZSan"} D: a={}.fromkeys(["XH","XM"],0)
- 在窗体的通用声明段自定义了数据类型Students,下列_____定义方式是正确的。 A: TypeStudents Name String*10 Studno IntegerEnd Type B: Private Type Students Name AsString*10 Studno AsInteger End Type C: Type Students Name AsString*10 Studno AsIntegerEnd Students D: Type Students Name As String*10 Studno AsIntegerEnd Type
- 在数据库中创建名称为“stuinfo“的数据表。
- 以下能正确定义数据类型TelBook的代码是:____。 A: Type TelBook<br/>Dim Name As String * 10<br/>Dim TelNum As Integer End Type B: Type TelBook<br/>Name As String * 10<br/>TelNum As Integer End Type C: Type TelBook<br/>Name As String * 10<br/>TelNum As Integer End TelBook D: Type TelBook<br/>Name As String * 10<br/>TelNum As Integer End Type TelBook