Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

You are designing an application to support a veterinary clinic. Which of the following probably should NOT be represented as an object? Pet. Customer. Medical

You are designing an application to support a veterinary clinic. Which of the following probably should NOT be represented as an object?

Pet.
Customer.
Medical service performed.
Drug dosage.

You are not required to create a Click() method for a Button.

True
False

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.

Static methods
Abstract methods
Interfaces
Objects

What Filestream property indicates whether the Filestream supports reading?

ReadAccess
CanRead
CanSeek
ReadAccess

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 interface.
The program's implementation.
The program's events.
The program's source code.

What kind of GUI object is rectangular and provides an interface for collecting, displaying, and delivering information?

Labels
TextBoxes
Buttons
Forms

Labels, text boxes, and buttons that users can manipulate to interact with a program's forms are referred to by what term?

controls
widgets
elements
IDEs

Where in the Visual C# IDE main window can you find the File menu, as well as submenus for editing, debugging, and help tasks?

Toolbox tab
menu bar
Form Designer
Solution Explorer

What feature in the Visual C# IDE can be used for viewing and managing project files and settings?

Properties
Toolbox tab
Solution Explorer
Form Designer

What name is given to the first form in a Windows Forms project within Visual C# by default?

button1
Form1
TopForm1
Window1

Where can the appearance, size, color, and window management features of a Form be modified?

In the form's namespace.
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?

Name
property
Text
label

What part of a button on a form can be dragged in order to change the button's size?

The button's text
The button's handles
The button's nodes
The button's controls

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?

reportButton_Click()
reportButton.Click()
report_Click()
report.Click()

What serves as a control that is used to display text such as a prompt or a result of some computation?

Form
Button
Label
TextBox

]

What Label property can be changed to display any string of text?

Name
Size
Random
Text

What controls can be used to allow a user to input data in a GUI application?

Buttons
TextBoxes
Labels
Forms

]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?

focus order
TabList
tab order
view order

What keyword always refers to the superclass of the class in which you use it?

super
parent
upper
base

Step by Step Solution

There are 3 Steps involved in it

Step: 1

blur-text-image

Get Instant Access to Expert-Tailored Solutions

See step-by-step solutions with expert insights and AI powered tools for academic success

Step: 2

blur-text-image

Step: 3

blur-text-image

Ace Your Homework with AI

Get the answers you need in no time with our AI-driven, step-by-step assistance

Get Started

Recommended Textbook for

PostgreSQL 10 High Performance Expert Techniques For Query Optimization High Availability And Efficient Database Maintenance

Authors: Ibrar Ahmed ,Gregory Smith ,Enrico Pirozzi

3rd Edition

1788474481, 978-1788474481

More Books

Students also viewed these Databases questions

Question

What additional amenities might SAS offer their employees? Why?

Answered: 1 week ago

Question

Solve with Recursion Tree T(n) = 2T(m - 1) +1

Answered: 1 week ago

Question

3. Define the roles individuals play in a group

Answered: 1 week ago