ข้อสอบ
ประเภท : เฉลยทีละข้อ - ทันที
ชุดแบบสอบ
ทดสอบความรู้ Visual Basic
ในชุด 30 ข้อ
แต่ถ้าต้องการแบบตอบแล้ว สรุปผลหลังทำครบทุกข้อ ให้ไปที่
ศูนย์สอบ
เพื่อเลือกแบบสอบใหม่
1.
Me.Line (0, 0) - (Me.ScaleWidth, Me.ScaleHeight)
[vb008]
Draws a diagonal line from the top left to the bottom right of the current form
Draws a diagonal line from the top right to the bottom left of the current form
Draws a horizontal line
Draws a vertical line
ยังไม่เลือก
ค่อย ๆ คิด อย่าใจร้อนครับ
2.
Three-letter mnemonic for a Timer
[vb029]
tim
tme
timer
tmr
ยังไม่เลือก
ค่อย ๆ คิด อย่าใจร้อนครับ
3.
Which control allows you to create a TCP/IP session
[vb036]
Internet Transfer Control
Winsock
WebBrowser
ODBC
ยังไม่เลือก
ค่อย ๆ คิด อย่าใจร้อนครับ
4.
UCase("Love Education")
[vb015]
Returns "love education"
Returns "Love Education"
Returns "LOVE EDUCATION"
Returns "LOVE education"
ยังไม่เลือก
ค่อย ๆ คิด อย่าใจร้อนครับ
5.
What is a VB
[vb022]
Visual Basic
Virtual Basic
Visual Begin
Virtual Begin
ยังไม่เลือก
ค่อย ๆ คิด อย่าใจร้อนครับ
6.
Properties cannot be set at run-time
[vb043]
Height
Width
Name
Top
ยังไม่เลือก
ค่อย ๆ คิด อย่าใจร้อนครับ
7.
Unload me
[vb023]
Close control
Close form
Close textbox
Close Sourcecode
ยังไม่เลือก
ค่อย ๆ คิด อย่าใจร้อนครับ
8.
Me.Line (0, 0) - (Me.ScaleWidth, Me.ScaleHeight)
[vb008]
Draws a diagonal line from the top left to the bottom right of the current form
Draws a diagonal line from the top right to the bottom left of the current form
Draws a horizontal line
Draws a vertical line
ยังไม่เลือก
ค่อย ๆ คิด อย่าใจร้อนครับ
9.
The SelStart Property of a TextBox is used to
[vb012]
Identify the start of the Text
There is no such Property
Identify the start of highlighted text
Identify the color
ยังไม่เลือก
ค่อย ๆ คิด อย่าใจร้อนครับ
10.
Which control allows you to create a TCP/IP session
[vb036]
Internet Transfer Control
Winsock
WebBrowser
ODBC
ยังไม่เลือก
ค่อย ๆ คิด อย่าใจร้อนครับ
11.
What does the Step keyword used with the For/Next Loop do
[vb019]
Allows the loop to be missed if the condition is True
Increments values according to the Step value
Syntax error
The Step keyword is illegal with counted loops
ยังไม่เลือก
ค่อย ๆ คิด อย่าใจร้อนครับ
12.
What is a VB
[vb022]
Visual Basic
Virtual Basic
Visual Begin
Virtual Begin
ยังไม่เลือก
ค่อย ๆ คิด อย่าใจร้อนครับ
13.
When does recursion occur
[vb035]
When a function calls itself
When no code is associated with an Event
At design-time
When a Property is assigned an invalid value
ยังไม่เลือก
ค่อย ๆ คิด อย่าใจร้อนครับ
14.
The SelStart Property of a TextBox is used to
[vb012]
Identify the start of the Text
There is no such Property
Identify the start of highlighted text
Identify the color
ยังไม่เลือก
ค่อย ๆ คิด อย่าใจร้อนครับ
15.
Me.Line (0, 0) - (Me.ScaleWidth, Me.ScaleHeight)
[vb008]
Draws a diagonal line from the top left to the bottom right of the current form
Draws a diagonal line from the top right to the bottom left of the current form
Draws a horizontal line
Draws a vertical line
ยังไม่เลือก
ค่อย ๆ คิด อย่าใจร้อนครับ
16.
If x < 10 Or > 20 Then
[vb004]
The above statement is True for values of x in the range 10 to 20
The above statement is True for values of x outside the range 10 to 20
The above statement can never be True
The above statement is a syntax error
ยังไม่เลือก
ค่อย ๆ คิด อย่าใจร้อนครับ
17.
What is the name of the system variable that keeps track of the Y position of a graphical object
[vb024]
Y
ThisY
CurrentY
YValue
ยังไม่เลือก
ค่อย ๆ คิด อย่าใจร้อนครับ
18.
Three-letter mnemonic for a Label
[vb031]
lb
ll
lbl
lab
ยังไม่เลือก
ค่อย ๆ คิด อย่าใจร้อนครับ
19.
SQL Statement for delete all records from a table
[vb047]
DELETE FROM saleman where s_enrolNumber=ALL
DELETE FROM saleman where s_enrolNumber=s_enrolNumber
DELETE FROM saleman
DELETE ALL FROM saleman
ยังไม่เลือก
ค่อย ๆ คิด อย่าใจร้อนครับ
20.
The correct syntax to count backwards
[vb042]
For counter = 10 Down To 1
For counter = 10 To 1 Step -1
For counter = 10 To 1 Step Down
For counter = 10 To 1
ยังไม่เลือก
ค่อย ๆ คิด อย่าใจร้อนครับ
21.
Declares a variable of type Integer
[vb040]
int num
Integer num
Dim num As Integer
Dim Integer
ยังไม่เลือก
ค่อย ๆ คิด อย่าใจร้อนครับ
22.
What will Hex(100) return
[vb034]
75
100
64
128
ยังไม่เลือก
ค่อย ๆ คิด อย่าใจร้อนครับ
23.
What keyword is placed before a parameter to a function, to ensure it is read-only
[vb033]
ByValue
ByReference
ByVal
ByRef
ยังไม่เลือก
ค่อย ๆ คิด อย่าใจร้อนครับ
24.
When does recursion occur
[vb035]
When a function calls itself
When no code is associated with an Event
At design-time
When a Property is assigned an invalid value
ยังไม่เลือก
ค่อย ๆ คิด อย่าใจร้อนครับ
25.
What is the name of the system variable that keeps track of the Y position of a graphical object
[vb024]
Y
ThisY
CurrentY
YValue
ยังไม่เลือก
ค่อย ๆ คิด อย่าใจร้อนครับ
26.
What does CSng do
[vb018]
Sing a song
Change the sign of a number
Count spaces in a string
Convert a data type to Single
ยังไม่เลือก
ค่อย ๆ คิด อย่าใจร้อนครับ
27.
Which data type is most suitable for storing the cost of an item
[vb037]
Double
Integer
Currency
Variant
ยังไม่เลือก
ค่อย ๆ คิด อย่าใจร้อนครับ
28.
Three-letter mnemonic for a Form
[vb030]
frm
fm
f
fr
ยังไม่เลือก
ค่อย ๆ คิด อย่าใจร้อนครับ
29.
Which Property should be set for every control
[vb048]
Caption
Text
Interval
Name
ยังไม่เลือก
ค่อย ๆ คิด อย่าใจร้อนครับ
30.
Three-letter mnemonic for a ListBox
[vb028]
box
lbx
lst
lis
ยังไม่เลือก
ค่อย ๆ คิด อย่าใจร้อนครับ
ศัพท์ภาษาอังกฤษ (ศัพท์ยาก) - ความรู้ทั่วไป ชุดประเทศไทย - สังคมระดับมัธยมถึงปริญญา
ศัพท์ภาษาอังกฤษ ระดับต้น - คอมพิวเตอร์เบื้องต้น และการจัดการระบบปฏิบัติการ - นักวิทยุสมัครเล่น
จังหวัด รหัสไปรษณีย์ - Visual Basic - JAVA - ทั่วไป.ศิริรุ่งสาวโยนก
ปรับปรุง : 2564-02-12
.
Truehits.net