To refer to the element located in the first row, first column in a two-dimensional array named strProducts, you use ____.
a. strProducts{0, 1}
b. strProducts[0, 0]
c. strProducts(1, 1)
d. strProducts(0, 0)
Answer: d. strProducts(0, 0)
You might also like to view...
The ____ statement directs a program's flow through the statements within it, while counting through a range of numbers.
A. doTogether B. if C. for D. doInOrder
VBA code within a database can be secured by providing a separate ________
A) username B) password C) key D) keyword
Which type of computer would more likely use a BTX motherboard?
A) Laptop B) Server C) Netbook D) Desktop E) Cell phone
A linked list is accessed:
a. Through a linked field. Each linked field value of the record is the next record to be processed. b. Uses a list pointer to specify which record is the first record to be processed. c. Uses an empty pointer to specify the first record in which data can be entered. d. All of the above.