单项选择题
软件测试的目的是
A.证明软件系统中存在错误
B.找出软件系统中的所有错误
C.尽可能多地发现系统中的错误和缺陷
D.证明软件的正确性
点击查看答案&解析
<上一题
目录
下一题>
热门
试题
单项选择题
下面关于数据库系统的叙述正确的是
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
点击查看答案&解析
相关试题
设在工程中有一个标准模块,其中定义了如下...
在窗体中添加一个名称为Lablel1的标签、两...
建立随机文件TEST.DAT,存放学生的姓名和...
数据库理论中,数据的独立性一般可分为 【...
下面的程序用于根据文本框Text中输入的内容...