填空题

______的目的是分析数据间内在语义关联,在此基础上建立一个数据的抽象模型。

【参考答案】

数据库概念设计
<上一题 目录 下一题>
热门 试题

单项选择题
在E盘当前目录文件夹下建立一个名为“Student.txt”的随机文件,要求用InputBox函数输入5个学生的姓名(StuName)、年级(StuGrade)和年龄(StuAge)。在程序中有以下记录类型和窗体的事件过程,请选择正确的语句完成程序( )。 Private Type student StuName As String * 10 StuGrade As String * 10 StuAge As Integer End Type Private Sub Form Click() Dim s As student Open c: student.txt For Random As#1 Len=Len(s) For i=1 To 5 s.StuName=InputBox( 请输入姓名 ) s.StuGrade=InputBox( 请输入年级号 ) s.StuAge=Val(InputBox( 请输入年龄 )) ______ Next i Close #1 End Sub
A.Print #1,s
B.Print #1,i
C.Put #1,,s
D.Put #1,i
单项选择题
单击命令按钮执行以下程序,则输出结果为( )。 Private Sub Command1_Click() Dim x As Integer,y As Integer X=14:y=48 Call Proc(x,y) Print x;y End Sub Public Sub Proc(n As Integer,ByVal m As Integer) n=n Mod 10:m=m Mod 10 End Sub
A.4 8
B.14 8
C.14 48
D.4 48
相关试题
  • 由Array函数建立的数组的名字必须是___...
  • 如图所示,在列表框List1中已经有若干人的...
  • 在窗体上画一个名为Command1的命令按钮,...
  • 在窗体上建立一个含有3个命令按钮的控件数...
  • 当用______方式打开文件时,如果对文...