Exam 12: Using Controls
Exam 1: A First Program Using C42 Questions
Exam 2: Using Data42 Questions
Exam 3: Using Gui Objects and the Visual Studio Ide42 Questions
Exam 4: Making Decisions42 Questions
Exam 5: Looping42 Questions
Exam 6: Using Arrays42 Questions
Exam 7: Using Methods42 Questions
Exam 8: Advanced Method Concepts42 Questions
Exam 9: Using Classes and Objects42 Questions
Exam 10: Introduction to Inheritance42 Questions
Exam 11: Exception Handling42 Questions
Exam 12: Using Controls42 Questions
Exam 13: Handling Events41 Questions
Exam 14: Files and Streams42 Questions
Select questions type
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?
(Essay)
4.8/5
(34)
SelectionStart and SelectionEnd are properties of the MonthCalendar class. What methods can be applied to these properties to control the display of a date? What other factors influence the format in which dates are displayed?
(Essay)
5.0/5
(34)
The ____________________ class contains a wide variety of predefined Color s that you can use with your Control s.
(Short Answer)
4.8/5
(39)
____ objects are GUI widgets the user can click to select an option; only one of a group can be selected at a time.
(Multiple Choice)
4.9/5
(42)
When you create a Form in the Visual Studio IDE, the IDE automatically generates code to support the Form and any Control s that you place on the Form . What do you know about the Form under development given the following snippet of code generated by the IDE?
private void InitializeComponent()
{
this .label1 = new System.Windows.Forms.Label();
this .okButton = new System Windows.Forms.Button();
...
}
(Essay)
4.8/5
(44)
A ____ is an object you can instantiate on a remote computer so that you can manipulate a reference to the object rather than a local copy of the object.
(Multiple Choice)
4.8/5
(30)
When designing a MenuStrip control, the programmer should follow conventional menu order; for example, a Help option is usually located ____ of the main menu.
(Multiple Choice)
4.9/5
(43)
The ListBox provides a Boolean ____ property, which you can set to display items in columns instead of in a straight vertical list.
(Multiple Choice)
4.8/5
(35)
What are some of the commonly used PictureBox properties and the default event for a PictureBox ?
(Essay)
4.8/5
(34)
ListBox , ComboBox , and CheckedListBox objects all allow users to select choices from a list. These three classes descend from ____.
(Multiple Choice)
4.8/5
(36)
____ objects are GUI widgets the user can click to select an option; any number of these can be selected at the same time.
(Multiple Choice)
4.8/5
(35)
When filling in the items in a MenuStrip control, you can double-click an entry to generate a ____ method that will execute if the user clicks on the entry.
(Multiple Choice)
4.8/5
(36)
When you drag multiple Control s onto a Form , blue ____ appear and help you align new Control s with others already in place.
(Multiple Choice)
4.8/5
(38)
The ____ Control displays a month calendar when the down arrow is selected.
(Multiple Choice)
4.9/5
(35)
When using programs or visiting Internet sites, you encounter and use many other interactive ____________________-elements of graphical interfaces that allow you to interact with programs-such as scroll bars, check boxes, and radio buttons.
(Short Answer)
4.8/5
(41)
Showing 21 - 40 of 42
Filters
- Essay(0)
- Multiple Choice(0)
- Short Answer(0)
- True False(0)
- Matching(0)