ข้อสอบ
ประเภท : เฉลยทีละข้อ - ทันที
ชุดแบบสอบ
ทดสอบความรู้ Visual Basic
ในชุด 30 ข้อ
แต่ถ้าต้องการแบบตอบแล้ว สรุปผลหลังทำครบทุกข้อ ให้ไปที่
ศูนย์สอบ
เพื่อเลือกแบบสอบใหม่
1.
What is the result of setting the DragMode for a control to Automatic
[vb025]
The MouseDown, MouseMove and MouseUp Event are disabled
The MouseDown, MouseUp and Click Event are disabled
The GotFocus Event is disabled
The control is able to move without any user intervention
ยังไม่เลือก
ค่อย ๆ คิด อย่าใจร้อนครับ
2.
The TypeOf function is used to
[vb013]
Identify the data type of a variable
Identify the type of form
Identify the current font
Identify the type of control
ยังไม่เลือก
ค่อย ๆ คิด อย่าใจร้อนครับ
3.
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
ยังไม่เลือก
ค่อย ๆ คิด อย่าใจร้อนครับ
4.
LCase("Love Education")
[vb006]
Returns "love education"
Returns "Love Education"
Returns "LOVE EDUCATION"
Returns "LOVE education"
ยังไม่เลือก
ค่อย ๆ คิด อย่าใจร้อนครับ
5.
Specifies an array with 4 elements
[vb044]
Dim num() As Integer
Dim num(5) As Integer
Dim num(4) As Integer
Dim num(3) As Integer
ยังไม่เลือก
ค่อย ๆ คิด อย่าใจร้อนครับ
6.
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
ยังไม่เลือก
ค่อย ๆ คิด อย่าใจร้อนครับ
7.
Constant declarations is correct
[vb039]
Dim Constant num As Integer
Dim Constant num As Integer = 64
Dim num As Constant Integer = 64
Const num As Integer = 64
ยังไม่เลือก
ค่อย ๆ คิด อย่าใจร้อนครับ
8.
How would you make a form Transparent
[vb003]
Set the BackStyle Property of the Form to Transparent
Set the WindowMode of the Form to Transparent
Use API calls
Use ODBC
ยังไม่เลือก
ค่อย ๆ คิด อย่าใจร้อนครับ
9.
How would you make a form Transparent
[vb003]
Set the BackStyle Property of the Form to Transparent
Set the WindowMode of the Form to Transparent
Use API calls
Use ODBC
ยังไม่เลือก
ค่อย ๆ คิด อย่าใจร้อนครับ
10.
What is a VB
[vb022]
Visual Basic
Virtual Basic
Visual Begin
Virtual Begin
ยังไม่เลือก
ค่อย ๆ คิด อย่าใจร้อนครับ
11.
What will Hex(100) return
[vb034]
75
100
64
128
ยังไม่เลือก
ค่อย ๆ คิด อย่าใจร้อนครับ
12.
How does a function get a return value
[vb002]
By assigning an expression to the function name
By assigning an expression to the Return keyword
By assigning an expression to the Function keyword
Functions cannot return values
ยังไม่เลือก
ค่อย ๆ คิด อย่าใจร้อนครับ
13.
msg = Replace("Please confirm what you can do", "do", "confirm")
[vb010]
msg will contain, "Please do what you can confirm"
msg will contain, "Please confirm what you can confirm"
msg will contain, "Please do what you can do confirm"
msg will contain, "Please do what you can do"
ยังไม่เลือก
ค่อย ๆ คิด อย่าใจร้อนครับ
14.
Specifies an array with 4 elements
[vb044]
Dim num() As Integer
Dim num(5) As Integer
Dim num(4) As Integer
Dim num(3) As Integer
ยังไม่เลือก
ค่อย ๆ คิด อย่าใจร้อนครับ
15.
Three-letter mnemonic for a Label
[vb031]
lb
ll
lbl
lab
ยังไม่เลือก
ค่อย ๆ คิด อย่าใจร้อนครับ
16.
How does a function get a return value
[vb002]
By assigning an expression to the function name
By assigning an expression to the Return keyword
By assigning an expression to the Function keyword
Functions cannot return values
ยังไม่เลือก
ค่อย ๆ คิด อย่าใจร้อนครับ
17.
Which control allows you to create a TCP/IP session
[vb036]
Internet Transfer Control
Winsock
WebBrowser
ODBC
ยังไม่เลือก
ค่อย ๆ คิด อย่าใจร้อนครับ
18.
How does a function get a return value
[vb002]
By assigning an expression to the function name
By assigning an expression to the Return keyword
By assigning an expression to the Function keyword
Functions cannot return values
ยังไม่เลือก
ค่อย ๆ คิด อย่าใจร้อนครับ
19.
msg = "Love"&"Thailand"
[vb009]
Produces a syntax error
Assigns LoveThailand to msg
Assigns Love&Thailand to msg
Assigns Love Thailand to msg
ยังไม่เลือก
ค่อย ๆ คิด อย่าใจร้อนครับ
20.
Right("Love Thailand",3)
[vb011]
Returns "Lov"
Returns "Tha"
Returns "and"
Returns "LTd"
ยังไม่เลือก
ค่อย ๆ คิด อย่าใจร้อนครับ
21.
Three-letter mnemonic for a Form
[vb030]
frm
fm
f
fr
ยังไม่เลือก
ค่อย ๆ คิด อย่าใจร้อนครับ
22.
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
ยังไม่เลือก
ค่อย ๆ คิด อย่าใจร้อนครับ
23.
What keyword is placed before a parameter to a function, to ensure it is read-only
[vb033]
ByValue
ByReference
ByVal
ByRef
ยังไม่เลือก
ค่อย ๆ คิด อย่าใจร้อนครับ
24.
control.ZOrder 0
[vb001]
Places the control at the top of the Z Order
Places the control at the bottom of the Z Order
Sends the control to the back of the other controls
Hides the control
ยังไม่เลือก
ค่อย ๆ คิด อย่าใจร้อนครับ
25.
Constant declarations is correct
[vb039]
Dim Constant num As Integer
Dim Constant num As Integer = 64
Dim num As Constant Integer = 64
Const num As Integer = 64
ยังไม่เลือก
ค่อย ๆ คิด อย่าใจร้อนครับ
26.
If x > 9 And < 21 Then
[vb005]
The above statement is True for values of x outside the range 10 to 20
The above statement is True for values of x in the range 10 to 20
The above statement can never be True
The above statement is a syntax error
ยังไม่เลือก
ค่อย ๆ คิด อย่าใจร้อนครับ
27.
control.ZOrder 0
[vb001]
Places the control at the top of the Z Order
Places the control at the bottom of the Z Order
Sends the control to the back of the other controls
Hides the control
ยังไม่เลือก
ค่อย ๆ คิด อย่าใจร้อนครับ
28.
What is a VB
[vb022]
Visual Basic
Virtual Basic
Visual Begin
Virtual Begin
ยังไม่เลือก
ค่อย ๆ คิด อย่าใจร้อนครับ
29.
UCase("Love Education")
[vb015]
Returns "love education"
Returns "Love Education"
Returns "LOVE EDUCATION"
Returns "LOVE education"
ยังไม่เลือก
ค่อย ๆ คิด อย่าใจร้อนครับ
30.
Declares a variable of type Integer
[vb040]
int num
Integer num
Dim num As Integer
Dim Integer
ยังไม่เลือก
ค่อย ๆ คิด อย่าใจร้อนครับ
ศัพท์ภาษาอังกฤษ (ศัพท์ยาก) - ความรู้ทั่วไป ชุดประเทศไทย - สังคมระดับมัธยมถึงปริญญา
ศัพท์ภาษาอังกฤษ ระดับต้น - คอมพิวเตอร์เบื้องต้น และการจัดการระบบปฏิบัติการ - นักวิทยุสมัครเล่น
จังหวัด รหัสไปรษณีย์ - Visual Basic - JAVA - ทั่วไป.ศิริรุ่งสาวโยนก
ปรับปรุง : 2564-02-12
.
Truehits.net