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 type of object is a GUI widget the user can click to select an option, and allows for any number of these objects to be selected at the same time?
(Multiple Choice)
4.8/5
(30)
When working with a Form in the IDE, how do you place new Controls on the Form, and how can you adjust them precisely to align with existing Controls?
(Essay)
5.0/5
(36)
When designing a Form, what design feature facilitated by the IDE will you typically utilize instead of typing code statements?
(Multiple Choice)
4.9/5
(35)
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)
4.8/5
(33)
What are some of the commonly used LinkLabel properties, and what is the default event generated when the link is clicked by a user?
(Essay)
4.7/5
(35)
What property can be configured to cause a Control to remain at a fixed distance from the side of a container when the user resizes it?
(Multiple Choice)
4.9/5
(36)
What is similar to a ListBox, except that it displays an additional editing field to allow the user to select from the list or to enter new text?
(Multiple Choice)
4.8/5
(32)
When you size a ListBox so that all the items cannot be displayed at the same time, a scroll bar is provided automatically on the side.
(True/False)
4.7/5
(36)
When you drag multiple Controls onto a Form, what appears to help you align new Controls with others already in place?
(Multiple Choice)
4.9/5
(36)
What object is similar to a ListBox but with check boxes appearing to the left of each item?
(Multiple Choice)
4.8/5
(35)
In a MenuStrip, placing what character in front of a unique letter allows the user to press Alt and then the given letter to activate the menu choice as an alternative to clicking it with the mouse?
(Multiple Choice)
4.8/5
(46)
What property can you set in order to attach a Control to the side of a container so that the Control stretches when the container's size is adjusted?
(Multiple Choice)
4.7/5
(36)
What is a secondary window that takes control of a program known as?
(Multiple Choice)
4.8/5
(34)
How would you declare a named instance of a Font class, and what arguments can be used within the constructor? Show the declaration for a font named fancyFont that is size 24, bold, underlined, and Helvetica.
(Essay)
4.7/5
(36)
What are the similarities and differences between using a GroupBox and using a Panel to group related Controls on a Form?
(Essay)
4.8/5
(34)
When you create a Form in the Visual Studio IDE, the IDE automatically generates code to support the Form and any Controls 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.7/5
(36)
When designing a MenuStrip control, the programmer should follow conventional menu order.As an example, where should the Help option be located on the main menu?
(Multiple Choice)
4.9/5
(40)
What object can you 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
(31)
Showing 21 - 40 of 40
Filters
- Essay(0)
- Multiple Choice(0)
- Short Answer(0)
- True False(0)
- Matching(0)