VB复习题(国外英文资料).doc
文本预览下载声明
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
显示全部