The ____ property of a ComboBox returns an integer value corresponding to the position of the selected item in the list.

A. Index
B. CurrentIndex
C. SelectedIndex
D. SelectedInteger


Answer: C

Computer Science & Information Technology

You might also like to view...

When creating a class, rather than declaring completely new members, you can designate that the new class inherits the members of an existing class. The existing class is called the __________ class, and the new class is the __________ class.

a) derived, base b) root, child c) sub, super d) base, derived

Computer Science & Information Technology

Which set of statements totals the values in two-dimensional int array items?

a. int total = 0; for (int subItems : items) for (int item : subItems) total += item; b. int total = 0; for (int item: int[] subItems : items) total += item; c. int total = 0; for (int[] subItems : items) for (int item : items) total += item; d. int total = 0; for (int[] subItems : items) for (int item : subItems) total += item;

Computer Science & Information Technology

_________ controls stop a person from acting.

a. detective b. corrective c. mitigating d. preventive e. backup

Computer Science & Information Technology

Describe the two kinds of feedback and assessment that are part of the training process.

What will be an ideal response?

Computer Science & Information Technology