Exam 12: Using Controls
Exam 1: A First Program Using C#40 Questions
Exam 2: Using Data39 Questions
Exam 3: Using Gui Objects and the Visual Studio Ide40 Questions
Exam 5: Looping40 Questions
Exam 6: Using Arrays40 Questions
Exam 7: Using Methods39 Questions
Exam 8: Advanced Method Concepts39 Questions
Exam 9: Using Classes and Objects39 Questions
Exam 10: Introduction to Inheritance40 Questions
Exam 11: Exception Handling39 Questions
Exam 12: Using Controls40 Questions
Exam 13: Handling Events41 Questions
Exam 14: Files and Streams40 Questions
Exam 15: Making Decisions40 Questions
Select questions type
What public Control property can be used to determine whether a control or one of its child controls currently has the input focus?
Free
(Multiple Choice)
4.9/5
(45)
Correct Answer:
B
What are some of the commonly used CheckBox and RadioButton properties, and the default event for which a method shell is generated for these classes in the IDE? If you wanted a user to select which pizza toppings he or she wanted from a group of possible toppings, which Control would you use and why?
Free
(Essay)
4.9/5
(36)
Correct Answer:
Commonly used properties include:
Property or MethodDescription
CheckedIndicates whether the CheckBox or RadioButton is checked
TextThe text displayed to the right of the CheckBox or RadioButton
CheckedChanged()The default event that is generated when the Checked property changes
When a Form contains multiple Checkboxes, any number of them can be checked or unchecked at the same time.RadioButtons differ in that only one RadioButton in a group can be selected at a time.Therefore, Checkboxes would be more suitable for pizza toppings so that multiple toppings could be selected.
Each Control has more than 80 public properties.
Free
(True/False)
4.8/5
(41)
Correct Answer:
True
What ListBox property with a Boolean value allows you to configure whether or not to display items in columns instead of a straight vertical list?
(Multiple Choice)
4.8/5
(43)
Explain the selection options that can be controlled by setting the SelectionMode property of a ListBox.
(Essay)
4.8/5
(29)
What Control displays a month calendar when the down arrow is selected?
(Multiple Choice)
4.9/5
(33)
What character can be placed before a letter in the Text property value of a ButtonBase object to make the letter function as an access key?
(Multiple Choice)
4.9/5
(34)
What can you use to provide the capability to link a user of your program to other sources, such as Web pages or files?
(Multiple Choice)
4.8/5
(36)
ListBox, ComboBox, and CheckedListBox objects all allow users to select choices from a list.These three classes descend from what parent class?
(Multiple Choice)
4.8/5
(35)
A LinkLabel is similar to a Label in that it is a parent of Label.
(True/False)
4.8/5
(41)
What type of GUI widget object allows the user to click to select an option, but only allows for one within a given group to be selected at a time?
(Multiple Choice)
4.8/5
(34)
What are some of the commonly used PictureBox properties and the default event for a PictureBox?
(Essay)
4.8/5
(42)
When filling in the items in a MenuStrip control, double-clicking an entry automatically generates what type of method?
(Multiple Choice)
4.9/5
(36)
Where do automatically generated statements that set the properties of the labels, buttons, and forms end up?
(Multiple Choice)
4.8/5
(37)
What are some of the methods that you can use with the SelectionStart and SelectionEnd properties of MonthCalendar to calculate new dates? For example, if you wanted to calculate the date of an event that will occur 10 days from the SelectionStart date, what MonthCalendar method could you use?
(Essay)
4.9/5
(33)
What method is shared by CheckBox and RadioButton objects and is called when the object is clicked by the user?
(Multiple Choice)
4.8/5
(39)
What property for a MonthCalendar object allows you to specify the last day that can be selected?
(Multiple Choice)
4.7/5
(36)
What class do you utilize to change the appearance of printed text on your Forms?
(Multiple Choice)
4.9/5
(30)
Showing 1 - 20 of 40
Filters
- Essay(0)
- Multiple Choice(0)
- Short Answer(0)
- True False(0)
- Matching(0)