Multiple Choice
Given the following code,which of the choices below would be used to access the phone number of the 3rd vendor? Private Structure Vendor
Dim VendorIDString As String
Dim NameString As String
Dim PhoneString As String
End Structure
Dim BusinessVendor(5) As Vendor
A) BusinessVendor(2) .PhoneString
B) Vendor(2) .PhoneString
C) PhoneString(2) .Vendor
D) BusinessVendor(2)
Correct Answer:

Verified
Correct Answer:
Verified
Q32: StudentNameString (0) is a valid position in
Q33: An array is a set of variables.Each
Q34: Each element in an array can have
Q35: Write a structure called Student that contains
Q36: Code to create a user-defined Structure should
Q38: A VB programmer can combine multiple fields
Q39: When you are working with an array,the
Q40: _ can be used to find a
Q41: How many elements are contained in the
Q42: The following code is valid for creating