没有如下的用户定义类型:
Type Student
number As String
name As String
age AS Integer
End Type
则以下正确引用该类型成员的代码是( )。 A.Student. name="李明"
B.Dim s As Student
S. name="李明"
C.Dim s As Type Student
S. name="李明"
D.Dim s As Type
S. name="李明
第1题:
要求:
1. 按如下类图写出相应数据库建表 sql 脚本。 其中 Student 和 Score 是1 对多的关系,Scroe 和 Course
是多对 1 的关系。
Student
-id: String
-name: String
-birthday: Date
-address: String
-phone: String
-email: String
Score
-student: Student
-course: Course
-grade: float
Course
-id: String
-name: String
-description: String
第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"/> <
第3题:
8、通过下面的代码片段来回答问题。 struct ToDoList { var item:[String]? var number:Int } 下列可以作为这个结构体的构造器的是?
A.可以没有构造器###SXB###B.init (item:[String], number:Int) { self.item = item }###SXB###C.init (item:[String], number:Int) { self.number = number }###SXB###D.init (item:[String], number:Int) { self.item = item self.number = number }第4题:
2、假设student是一个含有name与age属性的结构体,如何调用学生的年龄信息? struct Student{ char name[20]; int age; }
A.student.age
B.student->age
C.student[age]
D.student(age)
第5题:
定义结构类型并声明变量如下: Structure Person Dim Name As String Dim Age As Integer End Structure Dim p As Person 若要给结构变量p赋值,下列选项正确的是___________。
A.p=("王小明",18)
B.Name = "王小明" : Age =18
C.p.Name = "王小明" : p.Age =18
D.Person.Name = "王小明" : Person.Age =18