A+ Answers



The first step in the programming process should be to __________ the problem.
Test
Design
Define
code

Which of the following is a proper use of naming convention for a control?
exitButton
exitbutton
Exitbutton
ExitButton

Allow the user to hit the Enter key by setting a default button on the form using the __________ property?

Acess key
AcceptButton
CancelButton
Visible

To convert between data types that do NOT have implicit conversions, you must use an explicit conversion, also known as:
Parsing
Exporting
Function
casting

Use the __________ method of the MessageBox object to display a message box.
Display
Show
Message
View

Which of the following pairs of statements are equivalent?
if (yellowRadioButton.Checked == true) equivalent to if (yellowRadioButton.Checked not false
 if (yellowRadioButton.Checked == true) equivalent to if (yellowRadioButton.Checked = true
 if (yellowRadioButton.Checked ==) equivalent to if (yellowRadioButton.Checked
 if (yellowRadioButton.Checked == true) equivalent to if (yellowRadioButton.Checked)

You can display the __________ window and point to the name of an expression to quickly check the current value of that expression during break time.
 Editor
 Properties
 Debug
 Break

The difference between a reference parameter and an output parameter is that the method:
 may not assign a value to any output parameter.
 may not assign a value to any reference parameter.
 must assign a value to any output parameter.
 must assign a value to any reference parameter.

__________ is the general format for code to display a form as modeless.
FormObjectName.ShowDialog();
 FormObjectName.Show;
 FormObjectName.Show();
 Show.FormObjectName();


The __________ property is set to true to indicate that there are more pages to print.
 MorePages
 HasMorePages
 PageCount
 PrintPages