- 1、本文档共30页,可阅读全部内容。
- 2、原创力文档(book118)网站文档一经付费(服务费),不意味着购买了该文档的版权,仅供个人/单位学习、研究之用,不得用于商业用途,未经授权,严禁复制、发行、汇编、翻译或者网络传播等,侵权必究。
- 3、本站所有内容均由合作方或网友上传,本站不对文档的完整性、权威性及其观点立场正确性做任何保证或承诺!文档内容仅供研究参考,付费前请自行鉴别。如您付费,意味着您自己接受本站规则且自行承担风险,本站不退款、不进行额外附加服务;查看《如何避免下载的几个坑》。如果您已付费下载过本站文档,您可以点击 这里二次下载。
- 4、如文档侵犯商业秘密、侵犯著作权、侵犯人身权等,请点击“版权申诉”(推荐),也可以打举报电话:400-050-0827(电话支持时间:9:00-18:30)。
查看更多
VB复习题(国外英文资料)
VB复习题(国外英文资料)
Paper number: 8080
Language: Visual Basic
Paper package: 201006
The total score: 100 points
Common problem: 8 kinds
━ ━ ━ ━ ━ ━ ━ ━ ━ ━ ━ ━ ━ ━ ━
(10 points)
━ ━ ━ ━ ━ ━ ━ ━ ━ ━ ━ ━ ━ ━ ━
Problem 1 (1.0) : 230
The expression (-3) Mod 8 has a value of 1.
The answer:
1) - 3
Problem 2 (1.0) : 301
The text box is known as ABCDE, if the text box Selstart = 4, Sellength = 2, SelText is [1].
The answer:
1). DE
Problem 3 (1.0) : 231
Expression \ 7 MOD 2 ^ 2 value is 81 [1].
The answer:
1). 3
Problem 4 (1.0) : 263
One way to open the project window is to press the 1 button.
The answer:
1). CTRL + R
Problem 5 (1.0) : 243
If x is a real number greater than zero, then the Visual Basic expression for the minimum odd integer greater than x is [1].
The answer:
1).iif (int (x) mod 2 = 0, int (x) + 2, int (x) + 1)
Number 6 (1.0) : 296
Write a statement that removes the display information for Label1 from the label (1).
The answer:
1).label1. Caption = or Label1 = or Label1.
Problem 7 (1.0) : 283
Use the Move method to Move the upper left corner of the frame image 1 to 100Twip at the top of the form, 200 twip from the left edge of the form, and a 50% reduction in the frame, in the form of [1].
The answer:
1).picture1. Move 200, 100, picture1.width/SQR (2), picture1.height/SQR (2)
Problem 8 (1.0) : 62
The Integer type variable occupies the byte space.
The answer:
2 1).
Number 9 (1.0) : 267
An object is a logical entity that contains both the method that contains the data and contains it.
The answer:
1). The data
Problem 10 (1.0) : 50
In VB 6.0, the value of a Single variable, XYZ, is 123.45, and if you want to convert it to a string, you should use the type conversion function (1).
The answer:
1).str or CSTR
━ ━ ━ ━ ━ ━ ━ ━ ━ ━ ━ ━ ━ ━ ━
(10 points)
━ ━ ━ ━ ━ ━ ━ ━ ━ ━ ━ ━ ━ ━ ━
Problem 1 (1.0) : 367
If you dont use Public, Private, or Friend, the Sub process is the default
Its public,
Answer: N
Problem 2 (1.0) : 355
You must set the Flags attribute before using the gen
文档评论(0)