Which content control would be used to indicate a preference or condition?
A) Option button
B) Check box
C) Drop-Down list
D) Data Picker
B
Computer Science & Information Technology
You might also like to view...
Once applied, slicers cannot be removed
Indicate whether the statement is true or false
Computer Science & Information Technology
What is sum after the following loop terminates?
``` int sum = 0; int item = 0; do { item++; sum += item; if (sum > 4) break; } while (item < 5); ``` A. 7 B. 8 C. 6 D. 5
Computer Science & Information Technology