ข้อสอบ ประเภท : เฉลยทีละข้อ - ทันที
ชุดแบบสอบ ทดสอบความรู้ Visual Basic ในชุด 30 ข้อ
แต่ถ้าต้องการแบบตอบแล้ว สรุปผลหลังทำครบทุกข้อ ให้ไปที่ ศูนย์สอบ เพื่อเลือกแบบสอบใหม่
    1. 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
      ยังไม่เลือก
    ค่อย ๆ คิด อย่าใจร้อนครับ


    2. Me.Circle (1000, 2000), 300 [vb007]
      The X position for the center of the circle is 1000
      The X position for the left of the circle is 1000
      The X position for the center of the circle is 2000
      The X position for the left of the circle is 2000
      ยังไม่เลือก
    ค่อย ๆ คิด อย่าใจร้อนครับ


    3. What is an FSO [vb021]
      Full System Output
      Fat Sound Object
      File System Object
      Fullsize Slider Object
      ยังไม่เลือก
    ค่อย ๆ คิด อย่าใจร้อนครับ


    4. Three-letter mnemonic for a ListBox [vb028]
      box
      lbx
      lst
      lis
      ยังไม่เลือก
    ค่อย ๆ คิด อย่าใจร้อนครับ


    5. 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
      ยังไม่เลือก
    ค่อย ๆ คิด อย่าใจร้อนครับ


    6. 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
      ยังไม่เลือก
    ค่อย ๆ คิด อย่าใจร้อนครับ


    7. 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
      ยังไม่เลือก
    ค่อย ๆ คิด อย่าใจร้อนครับ


    8. 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
      ยังไม่เลือก
    ค่อย ๆ คิด อย่าใจร้อนครับ


    9. Me.Circle (1000, 2000), 300 [vb007]
      The X position for the center of the circle is 1000
      The X position for the left of the circle is 1000
      The X position for the center of the circle is 2000
      The X position for the left of the circle is 2000
      ยังไม่เลือก
    ค่อย ๆ คิด อย่าใจร้อนครับ


    10. What is an FSO [vb021]
      Full System Output
      Fat Sound Object
      File System Object
      Fullsize Slider Object
      ยังไม่เลือก
    ค่อย ๆ คิด อย่าใจร้อนครับ


    11. What keyword is placed before a parameter to a function, to ensure it is read-only [vb033]
      ByValue
      ByReference
      ByVal
      ByRef
      ยังไม่เลือก
    ค่อย ๆ คิด อย่าใจร้อนครับ


    12. 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
      ยังไม่เลือก
    ค่อย ๆ คิด อย่าใจร้อนครับ


    13. 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
      ยังไม่เลือก
    ค่อย ๆ คิด อย่าใจร้อนครับ


    14. 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
      ยังไม่เลือก
    ค่อย ๆ คิด อย่าใจร้อนครับ


    15. The User Defined Format expression "mm" is used to [vb014]
      Format the minutes of a Date Expression with a leading zero
      Format the month of a Date Expression with a leading zero
      Convert strings to lowercase
      Convert strings to uppercase
      ยังไม่เลือก
    ค่อย ๆ คิด อย่าใจร้อนครับ


    16. What function is used to identify the first element in an array [vb020]
      First
      Begin
      LBound
      Start
      ยังไม่เลือก
    ค่อย ๆ คิด อย่าใจร้อนครับ


    17. 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"
      ยังไม่เลือก
    ค่อย ๆ คิด อย่าใจร้อนครับ


    18. Three-letter mnemonic for a ListBox [vb028]
      box
      lbx
      lst
      lis
      ยังไม่เลือก
    ค่อย ๆ คิด อย่าใจร้อนครับ


    19. LCase("Love Education") [vb006]
      Returns "love education"
      Returns "Love Education"
      Returns "LOVE EDUCATION"
      Returns "LOVE education"
      ยังไม่เลือก
    ค่อย ๆ คิด อย่าใจร้อนครับ


    20. 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
      ยังไม่เลือก
    ค่อย ๆ คิด อย่าใจร้อนครับ


    21. What does a pre-condition loop do [vb017]
      Perform the test at the start of the loop
      Perform the test at the end of the loop
      Loop a predetermined number of times
      Count backwards
      ยังไม่เลือก
    ค่อย ๆ คิด อย่าใจร้อนครับ


    22. Defines the graphical height of a graphics object [vb041]
      GraphHeight
      GraphicalHeight
      Height
      ScaleHeight
      ยังไม่เลือก
    ค่อย ๆ คิด อย่าใจร้อนครับ


    23. 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
      ยังไม่เลือก
    ค่อย ๆ คิด อย่าใจร้อนครับ


    24. SQL statement for updating a record [vb046]
      UPDATE saleman SET s_dob = #20/01/2547# WHERE s_enrolNumber = 47
      UPDATE saleman WITH s_dob = #20/01/2547# WHERE s_enrolNumber = 47
      UPDATE saleman s_dob = #20/01/2547# WHERE s_enrolNumber = 47
      UPDATE s_dob = #20/01/2547# to s_enrolNumber = 47
      ยังไม่เลือก
    ค่อย ๆ คิด อย่าใจร้อนครับ


    25. Which Property should be set for every control [vb048]
      Caption
      Text
      Interval
      Name
      ยังไม่เลือก
    ค่อย ๆ คิด อย่าใจร้อนครับ


    26. 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
      ยังไม่เลือก
    ค่อย ๆ คิด อย่าใจร้อนครับ


    27. 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
      ยังไม่เลือก
    ค่อย ๆ คิด อย่าใจร้อนครับ


    28. 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
      ยังไม่เลือก
    ค่อย ๆ คิด อย่าใจร้อนครับ


    29. Three-letter mnemonic for a ListBox [vb028]
      box
      lbx
      lst
      lis
      ยังไม่เลือก
    ค่อย ๆ คิด อย่าใจร้อนครับ


    30. Me.Circle (1000, 2000), 300 [vb007]
      The X position for the center of the circle is 1000
      The X position for the left of the circle is 1000
      The X position for the center of the circle is 2000
      The X position for the left of the circle is 2000
      ยังไม่เลือก
    ค่อย ๆ คิด อย่าใจร้อนครับ


ศัพท์ภาษาอังกฤษ (ศัพท์ยาก) - ความรู้ทั่วไป ชุดประเทศไทย - สังคมระดับมัธยมถึงปริญญา
ศัพท์ภาษาอังกฤษ ระดับต้น - คอมพิวเตอร์เบื้องต้น และการจัดการระบบปฏิบัติการ - นักวิทยุสมัครเล่น
จังหวัด รหัสไปรษณีย์ - Visual Basic - JAVA - ทั่วไป.ศิริรุ่งสาวโยนก

ปรับปรุง : 2564-02-12
.