You are designing an application to support a veterinary clinic. Which of the following probably should NOT be represented as an object?
| Medical service performed. |
You are not required to create a Click() method for a Button.
How does a UML diagram denote classes and their attributes and methods?
| A class rectangle contains the class name in the top, methods in the middle, and attributes in the bottom. |
| A class rectangle contains the class name in the top, attributes in the middle, and methods in the bottom. |
| A class rectangle contains the methods in the top, class name in the middle, and attributes in the bottom. |
| A class rectangle contains the attributes in the top, methods in the middle, and class name in the bottom. |
____ can reduce the coupling between classes.
What Filestream property indicates whether the Filestream supports reading?
If you attempt to open a file with the Open file mode, what happens if the file does not exist?
| The file is created and then opened for use. |
| The program returns a prompt to the user asking if the file should be created. |
| The program will return a null object, and all data written to the file will be discarded. |
| The program throws a System.IO.FileNotFoundException error. |
Objects such as the labels, buttons, and text boxes seen within a program's environment are all components of what part of a program?
| The program's implementation. |
| The program's source code. |
What kind of GUI object is rectangular and provides an interface for collecting, displaying, and delivering information?
Labels, text boxes, and buttons that users can manipulate to interact with a program's forms are referred to by what term?
Where in the Visual C# IDE main window can you find the File menu, as well as submenus for editing, debugging, and help tasks?
What feature in the Visual C# IDE can be used for viewing and managing project files and settings?
What name is given to the first form in a Windows Forms project within Visual C# by default?
Where can the appearance, size, color, and window management features of a Form be modified?
| In the form's environment configuration file. |
| In the form's properties. |
| In the form's name sheet. |
What form property allows you to specify the caption of the Form in the title bar?
What part of a button on a form can be dragged in order to change the button's size?
After you have added a Button onto a form, what can you do in order to create a method that executes when the user clicks the Button?
| You can select the Button, then create the method. |
| You can double-click the Button, and then create the method. |
| You can single click the Button, and then create the method. |
| You must delete the Button, and create the method first, then call the Button object by name. |
If a Button's name is reportButton, what will the default name of its Click() method be?
What serves as a control that is used to display text such as a prompt or a result of some computation?
]
What Label property can be changed to display any string of text?
What controls can be used to allow a user to input data in a GUI application?
]After a user types a value into a TextBox in an executing program, where is the value stored?
| In the Text property of the TextBox. |
| In the String property of the TextBox. |
| In the Label property of the TextBox. |
| In the Name property of the TextBox. |
What determines the order in which controls receive focus from successive Tab key presses?
What keyword always refers to the superclass of the class in which you use it?