首页
外语
计算机
考研
公务员
职业资格
财经
工程
司法
医学
专升本
自考
实用职业技能
登录
计算机
设在工程中有一个标准模块,并定义了如下类型: Type Stutype ino As Integer stmame As String*20 strsex As String*2 smark As Single
设在工程中有一个标准模块,并定义了如下类型: Type Stutype ino As Integer stmame As String*20 strsex As String*2 smark As Single
admin
2020-07-22
48
问题
设在工程中有一个标准模块,并定义了如下类型:
Type Stutype
ino As Integer
stmame As String*20
strsex As String*2
smark As Single
End Type
在窗体上画一个名为Command1的命令按钮,要求当执行事件过程Command1_Click时,在C盘根目录下的随机文件Student.dat中写入一条记录。下列能够完成该操作的是( )。
选项
A、Sub Command1_Click()
Dim student As Studtype
Dim record_no As Integer
record_no=1
With student
.ino=12:.stmame="smith":
.strsex==男=:.smark=89
End With
Open"c:\Student.dat"For Input As#1 Len
=Len(Student)
Put#1,record_no,Student
Close#1
End Sub
B、Sub Command1_Click()
Dim Student As Stutype
Dim Record_no As Integer
Record_no=1
With Student
.ino=12:.strname="smith"
.strsex="男":.smark=89
End With
Open"c:\student.dat"For RandomAs As#1
Len=Len(Student)
put#1,Record_no,Student
Close#1
End Sub
C、Private Sub Command1_Click()
DimStudent As Stutype
Dim Record no As Integer
Record_no=1
With Student
.ino=12:.stmame="smith"
.strsex="男":.smark=89
End With
Open"c:\student.dat"For Random As 1
Len=Len(Student)
Write#1,Record_no,Student
Close#1
End Sub
D、Sub Command1_Click()
Dim Student As Stutype
Dim Record_no As Integer
Record_no=1
With Student
.ino=12:.stmame="smith"
.strsex="男":.smark=89
End With
Open"c:\student.dat"For Output As#1
Len=Len(Student)
Put#1,Record_no,Student
Close#1
End Sub
答案
B
解析
本题考查文件操作。题目中要求以随机的方式(Random)打开一个文件,打开文件的方法格式为:Open FileNamn For Random As#文件号[Len=记录长度],然后以Put方法写入一条记录,方法的格式为:Put[#]文件号,[记录号],变量名。
转载请注明原文地址:https://jikaoti.com/ti/ohS0FFFM
本试题收录于:
二级VB题库NCRE全国计算机二级分类
0
二级VB
NCRE全国计算机二级
相关试题推荐
在窗体上有一个名为Commandl的命令按钮,并有如下事件过程:PrivateSubCommandl_Click()a$=“SwallowsModGenulled”b$=Right(a$,8):c$=Mid(a$,1,8)Msg
在窗体上画一个命令按钮,然后编写如下代码:PrivateSubCommand1Click()DimMaxSize,NextChar,MyCharOpen“d:\temp\female.txt”ForInputAs#
下面不属于软件设计阶段任务的是
设有关键码序列(66,13,51,76,81,26,57,69,23),要按关键码值递增的次序排序,若采用快速排序法,并以第一个元素为划分的基准,那么第一趟划分后的结果为()。
如果在框架中画了2个复选框,且框架的Enabled属性被设置为False,2个复选框的Enabled属性被设置为True,则下面叙述中正确的是( )。
以下关于控件数组的叙述中,正确的是( )。
软件生命周期中的活动不包括( )。
一棵二叉树中共有80个叶子结点与70个度为1的结点,则该二叉树中的总结点数为
以下不能用Print方法输出数据的对象或窗口是
在VisualBasic环境下设计应用程序时,系统能自动检查出的错误是
随机试题
对于党的十八届五中全会提出的全面建成小康社会新的目标要求,下列说法正确的是:
我国民事诉讼的举证责任由()
某甲因犯诈骗罪被判有期徒刑5年,罚金3万元。在刑罚执行期间,如果某甲有突出悔改表现,并有一般性的立功行为,那么下列说法正确的是:()
中华人民共和国确定国籍的原则是()。
钢筋混凝土板按其受弯情况,可分为()板。
反映企业财务状况的会计要素有()。
下列事项中,属于或有事项的有()。Ⅰ.对债务单位提起诉讼Ⅱ.对售出商品提供售后担保Ⅲ.无形资产摊销Ⅳ.为子公司的贷款提供担保
关于庄子,下列说法错误的是:
BritishphysicistDr.JessWadehaswritten270Wikipediapagesfortrailblazingfemalescientistsinanefforttogeteverywom
Afather’srelationshiptohischild’scurrentandfutureacademicsuccessandthelevelofhisorherdevelopmentinacademicp
最新回复
(
0
)