题目详情
当前位置:首页 > 职业培训考试
题目详情:
发布时间:2023-10-10 08:47:37

[单项选择]假设有如下的记录类型: Type Student number As String name AS String age As Integer End Type 则正确引用该记录类型变量的代码是______。
A. Studen name="" name="张红"
B. Dim s As Student Dame="张红"
C. Dim s As Type Student name="张红"
D. Dim s As Type name="张红"

更多"假设有如下的记录类型: Type Student number "的相关试题:

[单项选择]假设有如下的记录类型: Type Student number As String name AS String age As Integer End Type则正确引用该记录类型变量的代码是______。
A. StudenName="林红"
B. Dim s As Student name="林红"
C. Dim s As Type student name="林红"
D. Dim s As Type name="林红"
[单项选择]设有如下的记录类型: Type Student number As String name As String age As Integer End Type 则正确引用该记录类型变量的代码是
A. Studenname=“张红”
B. Dim s As Student name=“张红”
C. Dim s As Type Student name=“张红”
D. Dim s As Type name=“张红”
[单项选择]设有如下的记录类型: Type Student number As String name As String age As Integer End Type 则正确引用该记录类型变量的代码是______。
A. StUdenname=""
B. Dim s As StUdent name="张红"
C. Dim s As Type Student name="张红"
D. Dim s As Type name="张红"
[单项选择]设有如下的用户定义类型: Type Student number As String name As string age As Integer End Type 则以下正确引用该类型成员的代码是()。
A. Student name="李明”
B. Dim s As Student name="李明"
C. Dim s As Type Student name="李明"
D. Dim s As Type name="李明"
[单项选择]设有如下的用户定义类型: Type Student number As String name As Suing age As Integer End Type 则以下正确引用该类型成员的代码是【 】
[单项选择]假设有如下国债券数据:
A. 国债
B. 到期期限
C. 息票率
D. 到期收益率
E. A
F. 6年
G. 5%
H. 8%
I. B
J. 6年
K. 8%
L. 8%
[单项选择]假设有如下的关系R和S:  R
A. A
B. B
C. C
D. a1
E. b1
F. 5
G. a1
H. b2
I. 6
J. a2
K. b3
L. 8
M. a2
N. b4
[单项选择]假设有8 个记录,它的初始关键字序列为{5,7,3,8,2,9,1,4},用冒泡排序对它进行排序,第5 次排序结果为 () 。
A. 5,3,7,2,8,1,4,9
B. 2,1,3,4,5,7,8,9
C. 3,2,5,1,4,7,8,9
D. 1,2,3,4,5,7,8,9
[单项选择]假设有String a = "A"; char b ='A'; int c=65,下面选项中正确的是( )。
A. if(a == {Syste ou print("Equal") }
B. if(c == {Syste ou print("Equal") }
C. if(a == {Syste ou print ("Equal") }
D. if(c = {Syste ou print("Equal") }
[单项选择]假设有如下事件过程: Private Sub Form_MouseDown(Button As Integer, Shift As Integer, x As Single, y As Single) If Button=2 Then PopupMenu popForm End If End Sub 则以下描述中错误的是______。
A. 该过程的功能是弹出一个菜单
B. popForm是在菜单编辑器中定义的弹出式菜单的名称
C. 参数x、y指明鼠标的当前位置
D. Button=2表示按下的是鼠标左键
[单项选择]假设有String a="A:;char='A';int c=65,选项______是正确的。
A. if(a=={Systeouprint("Equal")}
B. if(c=={Systeouprint("Equal")}
C. if(a=={Systeouprint("Equal")}
D. 以上均不正确
[单项选择]设在工程中有一个标准模块,其中定义了如下记录类型 Type Books Name As String* 10 TelNum As String * 20 End Type 在窗体上画一个名为 Command1的命令按钮,要求当执行事件过程Command1 Click时, 在顺序文件Person.txt中写入一条记录。 下列能够完成该操作的事件过程是 ______。
A. Private Sub Command1_Click( ) Dim B As Books Open "c:/Persotxt" For Output As #1 Name = InputBox("输入姓名") TelNum = InputBox("输入电话号码") Write #1, Name, TelNum Close #1 End Sub
B. Private Sub Command1_Click( ) Dim B As Books Open "c:/Persotxt, For Input As # 1 Name = lnputBox("输入姓名") TelNum = InputBox("输入电话号码") Print #1, Name, TelNttm Close #1 End Sub
C. Private Sub Command1_Click( ) Dim B As Books Open "c:/Persotxt" For Output As #1 Name = InputBox("输入姓名") TelNum = InputBox("输入电话号码") Write # 1, B Close #1 End Sub
D. Private Sub Command1_Click( ) Dim B As Books Open"c:/Persotxt" For Input As #1 Name=InputBox("输入姓名") TelNum=InputBox("输入电话号码") Print #1,Name,TelNum Close #1 End Sub
[单项选择]Student: I've got the number for this book, but I wonder where I can find it. Librarian: ______
[单项选择]假设有程序代码如下:Form1.Caption="Open",这里Form1、Caption和Open分别代表______。
A. 对象、值、属性
B. 值、属性、对象
C. 对象、属性、值
D. 属性、对象、值
[单项选择]设在工程中有一个标准模块,其中定义了如下记录类型 Type Books Name As String * 10 TelNum As String * 20 End Type 在窗体上画一个名为Command1的命令按钮,要求当执行事件过程Command1_Click时, 在顺序文件Person.txt中写入一条记录。下列能够完成该操作的事件过程是_________。
A. Private Sub Command1 CliCk() Dim B As Books Open"c:/Persotxt" For Output As #1 Name=InputBox("输入姓名") TelNum=InputBox("输入电话号码") Write #1,Name,TelNum Close #1 End Sub
B. Private Sub Command1_Cliok() Dim B As Books Open"c:/Persotxt"For Input AS #1 Name=InputBox("输入姓名") TelNum=InputBox("输入电话号码") Print #1,Name,TelNum Close #1 End Sub
C. Private Sub Command1_Click() Dim B As Books Open"c:/Persotxt" For Output As #1 Name=InputBox("输入姓名") TelNum=InputBox("输入电话号码") Write #1,B Close #1 End Sub
D. Private Sub Command1_Click() Dim B As Books Open "c:/Wersotxt" For Input As #1 Name=InputBox("输入姓名") TelNum=InputBox("输入电话号码") Print #1,Name,TelNum Close #1 End Sub

我来回答:

购买搜题卡查看答案
[会员特权] 开通VIP, 查看 全部题目答案
[会员特权] 享免全部广告特权
推荐91天
¥36.8
¥80元
31天
¥20.8
¥40元
365天
¥88.8
¥188元
请选择支付方式
  • 微信支付
  • 支付宝支付
点击支付即表示同意并接受了《购买须知》
立即支付 系统将自动为您注册账号
请使用微信扫码支付

订单号:

请不要关闭本页面,支付完成后请点击【支付完成】按钮
恭喜您,购买搜题卡成功
重要提示:请拍照或截图保存账号密码!
我要搜题网官网:https://www.woyaosouti.com
我已记住账号密码