单项选择题
下面关于数据库系统的叙述正确的是
A.数据库系统减少了数据冗余
B.数据库系统避免了一切冗余
C.数据库系统中数据的一致性是指数据类型的一致
D.数据库系统比文件能管理更多的数据
点击查看答案&解析
<上一题
目录
下一题>
热门
试题
单项选择题
设在工程中有一个标准模块,其中定义了如下记录类型: TyPe Record ID A3 Integer Name As String*20 End TyPe 在窗体中添加一个名为Command1的命令按钮,假设d: F1.dat文件中含有5个用户自定义类型的记录。要求当执行事件过程Command1_Click时,随机访问该文件,并把文件中的第4条记录读出。下列能够完成该操作的程序段是
A.Private Sub Command1_Click( ) Dim MyRecord As Record,Position Open"d:\F1.dat"For Random As#1 Len=Len(My Recor Position=4 Get#1,Position,Myrecord Close #1 End Sub
B.Private Sub Command1_Click( ) Dim MyRecord As Record,Position Open"d:\F1.dat"For Random As #1 Len=Len(MyRecor Position=4 Put #1,Position,MyRecord Close#1 End Sub
C.Private Sub Command1_Click( ) Dim MyRecord As Record,Position Open"d:\F1.dar"For OutPut As #1 Len=Len(My Recor Position=4 Get #1,Position,MyRecord Close#1 End Sub
D.Private Sub Command1_Click( ) Dim MyRecord As record,Position Open"d:\F1.dat"For lnput As #1 Len=Len(MyRecor Position=4 Get #1,Position,MyRecord Close#1 End Sub
点击查看答案&解析
单项选择题
在窗体上面画一个命令按钮,然后编写如下事件过程: Private Sub Command1_Click( ) a$= 321 :b$= abc For j=l To 5 Print Mid$(a$,6-j,1)+Mid$(b$,j,1); Next j End Sub 程序运行后,输出的结果是
A.alb2c3
B.ablc23
C.clb2a3
D.a12bcl
点击查看答案&解析
相关试题
单击命令按钮时,下列程序的执行结果为 Pr...
设有如下程序: Private Static Functio...
有如下程序段,该程序段执行完后,共执行循...
有以下函数过程: Function Gys(ByVal ...
单击命令按钮时,下列程序的运行结果为 Pr...