设在工程中定义了如下类型: Type stutype ino As Integer stmame As String*20 strsex As String*1 smark As Single End Type 在窗体上正确使用这个类型的是下列哪个操作( )。A.Sub Command1_click() Dimstudent As Stutype With student .ino=12 .strname=smith .strsex=男 .smark=89 End With End SubB.Sub Co

题目

设在工程中定义了如下类型: Type stutype ino As Integer stmame As String*20 strsex As String*1 smark As Single End Type 在窗体上正确使用这个类型的是下列哪个操作( )。

A.Sub Command1_click() Dimstudent 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 Command1_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


相似考题
更多“设在工程中定义了如下类型:Type stutypeino As Integerstmame As String*20strsex As String*1sm ”相关问题
  • 第1题:

    4、JDBC中,接口Statement中定义的execute方法的返回类型是()

    A.ResultSet

    B.Int

    C.Boolean

    D.String


    A

  • 第2题:

    定义名为“联系方式”的属性组,该属性组包含两个名称分别为“邮箱”和“电话”的属性,这两个属性的类型均为"string",下面正确的选项为()。

    A.<attributeGroup name="联系方式"> <attribute name="邮箱" type="xsd:string"/> <attribute name="电话" type=“xsd:string"/> </attributeGroup>

    B.<attributeGroup name="联系方式"> <attribute name="邮箱" type="xsd:sting"> <attribute name="电话" type=“xsd:sting"> </attributeGroup>

    C.<attribute name="联系方式"> <attribute name="邮箱" type="xsd:sting"/> <attribute name="电话" type=“xsd:sting"/> <


    B 解析:实体联系模型中,联系指的是实体之间的联系,实体之间的联系有一对一、一对多和多对多3种。如:一个公司有一个经理,而每个经理只在一个公司任职,则公司与经理之间是一对一联系;一个公司有多个副经理,而每个副经理只在一个公司任职,则公司与副经理之间是一对多联系;一个老师可以有多个学生,而一个学生也可以有多个老师,则老师与学生之间是多对多的联系。联系可以同一个或多个实体有关。利用ER模型进行数据库的概念设计,分为3步:第1步设计局部的ER模型;第2步综合各个局部ER模型成为全局的ER模型;第3步对全局的ER模型进行优化,得到最终的ER模型。ER模型向关系模式的转换依据:把一个实体类型转移为一个关系模式,相应实体的属性转换为对应的关系的属性,实体的键是关系的键;把一个联系类型转换为一个关系模式,所有与该联系相关的实体的键及联系的属性转换成关系的属性,关系模式的键由实体与实体之间的联系所决定。

  • 第3题:

    两个 string 对象能够相加的原因是

    A.string 类型与 int 类型相似,本质上可以执行加法运算

    B.string 类中重载了 + 运算符

    C.+ 运算符本身能够对字符进行运算

    D.C++ 标准中对 + 运算符做了特殊规定,所以可以对 string 对象执行相应操作


    string 类中重载了 + 运算符

  • 第4题:

    以下有关控制台说法正确的是()。

    A.定义入口方法正确写法:static void main(string[] args)

    B.定义入口方法正确写法:static void Main(string[] args)

    C.定义入口方法正确写法:static Void Main(string[] args)

    D.定义入口方法正确写法:Static Void Main(string[] args)


    定义入口方法正确写法:static void Main(string[] args)

  • 第5题:

    在C++中不仅可以用string定义字符串变量,也可以用string定义字符串数组


    A

  • 第6题:

    1、两个 string 对象能够相加的原因是

    A.string 类型与 int 类型相似,本质上可以执行加法运算

    B.string 类中重载了 + 运算符

    C.+ 运算符本身能够对字符进行运算

    D.C++ 标准中对 + 运算符做了特殊规定,所以可以对 string 对象执行相应操作


    string 类中重载了 + 运算符