In a ComboBox object, the SelectedIndex property will contain a value of ____ if no selection has been made.
A. ?1
B. 0
C. 1
D. null
Answer: A
Computer Science & Information Technology
You might also like to view...
What tool on the Design tab is used to add an object from another application such as a Microsoft Excel spreadsheet?
A. Subform/Subreport B. Unbound Object Frame C. Bound Object Frame D. Combo Box
Computer Science & Information Technology
What is sum after the following loop terminates?
``` int sum = 0; int item = 0; do { item++; if (sum >= 4) continue; sum += item; } while (item < 5); ``` a. 6 b. 7 c. 8 d. 9 e. 10
Computer Science & Information Technology