Which type of content control enables the user to select, or not select, a specific option?
A) Check Box
B) Drop-Down List
C) Option Button
D) Date Picker
A
Computer Science & Information Technology
You might also like to view...
Given the following enumerated data type definition, what is the value of SAT? enum myType{SUN=3,MON=1,TUE=3,WED,THUR,FRI,SAT,NumDays};
a. 7 b. 6 c. 8 d. 5 e. unknown
Computer Science & Information Technology
What is the output of the following code fragment if x is 15?
if(x < 20) if(x <10) cout << "less than 10 "; else cout << "large\n"; a. less than 10 b. nothing c. large d. no output, syntax error
Computer Science & Information Technology