首页
外语
计算机
考研
公务员
职业资格
财经
工程
司法
医学
专升本
自考
实用职业技能
登录
计算机
设在工程中有一个标准模块,并定义了如下类型: Type Stutype ino AS Integer strname As String*20 strsex AS String*2 smark As Single
设在工程中有一个标准模块,并定义了如下类型: Type Stutype ino AS Integer strname As String*20 strsex AS String*2 smark As Single
admin
2019-06-11
46
问题
设在工程中有一个标准模块,并定义了如下类型:
Type Stutype
ino AS Integer
strname 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
Dimrecord_no As Integer
record_no=1
With student
.ino=12:.stmame="smith":
.strsex="男":.smark=89
End With
Open"c:\Studont.dat"For Input As #1 Len
=Len(Student)
Put #1,record_no Student
Close#1
End Sub
B、Sub Command 1_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 Random As#1
Len=Len(Student)
Put#1,Record_no,Student
Close #1
End Sub
C、Private Sub Command 1_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 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
EndWith
Open"c:\student.dat"For Output As#1
Len=Len(Student)
Put#1,Record_no,Student
Close #1
End Sub
答案
B
解析
本题考查文件操作。题目中要求以随机的方式(Random)打开一个文件,打开文件的方法格式为:Open FileName For Random As#文件号[Len=记录长度],然后以Put方法写入一条记录,方法的格式为:Put[#]文件号,[记录号],变量名。
转载请注明原文地址:https://kaotiyun.com/show/gyUp777K
本试题收录于:
二级VB题库NCRE全国计算机二级分类
0
二级VB
NCRE全国计算机二级
相关试题推荐
有三个关系R、S和T如下:则由关系R和S得到关系T的操作是
有三个关系R、S和T如下:则由关系R和S得到关系T的操作是
以下程序的功能是随机产生10个两位的整数:OptionBase1PrivateSubCommand1_Click()Dima(10)AsInteger,iAsIntegerRandomizeFori=1To10a(i)=I
窗体上有1个名称为Command1的命令按钮,事件过程如下:PrivateSubCommand1_Click()m=-3.6IfSgn(m)Thenn=Int(m)Elsen=Abs(m)EndIfPrintnEndSub运
以下关于变量作用域的叙述中错误的是
下列叙述中错误的是()。
已知二叉树后序遍历序列是CDABE,中序遍历序列是CADEB,它的前序遍历序列是()。
双精度浮点数的类型说明符为
下面可以产生20~30(含20和30)的随机整数的表达式是
随机试题
PeopleallovertheworldknowWimbledonasthecentreoflawntennis.In1874itwasacountryvillage,butitwasthehome
对于黏膜混合支持式可摘局部义齿,取压力印模的主要目的是
等渗性缺水患者,大量输入生理盐水治疗可导致
中国证监会及其派出机构按照审慎监管原则,对证券公司从事的介绍业务进行()。Ⅰ.抽样调查Ⅱ.现场检查Ⅲ.非现场检查Ⅳ.全面检查
甲公司拟对外平价发行面值为60万元,票面年利率为6%、每半年付息一次、期限为4年的公司债券。若债券发行时的市场年利率为8%,则该债券的发行价格是()万元。[已知(P/A,8%,4)=3.312,(P/A,4%,8)=6.733,(P/F,8%
石器时代的陶工经常制造一些精致的瓷制的复杂的罐、工具和珠宝。他们也制造一些粗糙的陶制的小雕像。尽管许多被发现的精致的瓷制的罐、工具和珠宝几乎未受损,然而与瓷器同时制造的小雕像则几乎都变成了碎片。下面哪一项,如果正确,最能够解释为什么只有如此少的小雕像,而如
下列程序段运行后,变量b的值是b=1DoUntilb>7b=b*(b+1)Loop
教師は カンニングを した 学生に 反省文を————。
今年服装、饰品和鞋类销售的百分之十都可能发生在网络交易中,比去年高出两个百分点。
What’sabetterteachingmethod?JimMunch’sexperienceLASTspring,whenhewasonlyasophomore,JimMunchreceivedaplaq
最新回复
(
0
)