• Shuffle
    Toggle On
    Toggle Off
  • Alphabetize
    Toggle On
    Toggle Off
  • Front First
    Toggle On
    Toggle Off
  • Both Sides
    Toggle On
    Toggle Off
  • Read
    Toggle On
    Toggle Off
Reading...
Front

Card Range To Study

through

image

Play button

image

Play button

image

Progress

1/84

Click to flip

Use LEFT and RIGHT arrow keys to navigate between flashcards;

Use UP and DOWN arrow keys to flip the card;

H to show hint;

A reads text to speech;

84 Cards in this Set

  • Front
  • Back

The unit of measure for a selected PictureBox object is _____.

pixels

True or False?



Good coding practice dictates that elements within a statement should be
separated by a space to make the statement easier to read, even though the
space is not required.

true

____ error messages indicate coding errors detected by the compiler.

Build

A button must be ____ in order for the user to click it and cause an event.

enabled

Use the Print choice on the ____ menu to print the Visual Basic code.

File

The dialog box used to select images that
have been imported

Select Resource

Changes program code statements into
instructions that the computer can execute

compiling

A set of instructions written by the
developer that tells the program how to
operate

program code

If this object property has a value of False,
the object will not trigger an event

enabled

The kind of comment that appears on the same line as executable code

same line

The location of this is noted by a blue squiggly line

error

Procedure used to close the application

Close

A statement that executes a specific prewritten procedure

procedure call statement

Event triggered by a user's clicking a Button object

click

When the _____ property of a GUI object is set to False, the object will not appear on the form at runtime.

Visible

True or False?



The forward slash (/) is used to identify a statement as a comment.

false

The first code written for an event should be _____ code.

comment

As shown in the accompanying figure, the Image property of the ____ object is used to specify the image that will be displayed.

PictureBox

True or False?



In order to write the code for an event handler, a developer first must identify
the GUI object that will be used to trigger the event.

true

True or False?



Changing the value of the Enabled property of an object in code statements can be used to make an object appear on the form during program execution.

false (visible)

When a user activates a Button object on a form the Button's _____ event occurs.

click

IntelliSense choices can be selected by _____, _____, or _____.

- using the Enter key


- using the TAB key


- double-clicking the desired entry

Color palette for the BackColor and ForeColor properties that is restricted to colors selected in other areas of the computer system.

System Palette

True or False?



Programs written using a graphical user interface normally are event-driven programs.

true

True or False?



When you type the first few letters of an object name, IntelliSense displays a list of all the entries that can be specified in the statement.

true

True or False?



The only valid procedures are the prewritten procedures included in Visual Studio 2010.

false (you can write your own)

The _____ property of a GUI object controls the color of the text that appears in the object.

ForeColor

There are four choices on the SizeMode list in the Properties window for PictureBox objects: _____, _____, _____, & _____.

Normal, AutoSize, StretchImage, & CenterImage

True or False?



In an assignment statement, the value appearing on the right of the equal sign receives the value of the object appearing to the left of the equal sign.

false (opposite)

Which color palette for the BackColor & ForeColor properties contains colors that are guaranteed to be displayed properly on every computer?

Web Palette

A(n) _____ statement is used to set the value of an object's property with the desired value.

assignment

The _____ sign is used in an assignment statement.

equal

To make an image available for display in a PictureBox object, the image should be imported into the _____ folder.

Resources

True or False?



The developer should not begin to write code until after the events and tasks within the events have been identified.

true

True or False?



A code handler is a section of the program that handles user actions by executing code.

false

True or False?



The AutoSize attribute of the SizeMode property of a PictureBox object may cause distortion of an image.

false

Visual Studio 2010 offers three _____ of colors to use for the BackColor and ForeColor properties.

palettes

In the code editor, a _____ squiggly line is used to indicate the location of an error.

blue

The _____ option of the SizeMode property of the PictureBox object will increase or decrease the size of the PictureBox object to accommodate the size of the image.

AutoSize

True or False?



A comment can exist on the same line as a code statement if the comment is placed first and then followed by another apostrophe.

false

Comments are displayed (by default) with _____ colored text.

green

A(n) _____ means the user has initiated an action that causes the program to perform the type of processing called for by the user's action.

event

True or False?



An event planning document details each object in the user interface that will trigger an event and what actions will be taken when that event occurs.

true

The Normal attribute of the SizeMode property places the image in the _____-_____ corner of the PictureBox object without any changes.

upper-left

True or False?



The CenterImage attribute for the SizeMode property of a PictureBox object centers the image and stretches it to fit the PictureBox.

false

The Error List window will display the _____ and _____ numbers where the error was detected.

line, column

Clicking the Ellipsis button at the end of the image property of the PictureBox object will display the _____ dialog box.

Select Resource

A(n) _____ is used for denoting a comment statement.

apostrophe (*)

The _____ operator is used to separate an object name from the name of the property to set in a Visual Basic code statement.

dot

True or False?



The Disabled property controls whether an object can trigger an event.

false

When build errors occur, Visual Studio will display the errors in the _____ window.

Error List

True or False?



The use of IntelliSense is the standard within the software industry.

true

What is the correct general format for assigning a value to a property?

_____._____ = _____

objectname.property = propertyvalue

An event _____ takes care of the event that a user triggers by executing code that performs the required processing.

handler

Open and close _____ immediately following the name of a procedure identify a Visual Basic statement as a procedure call statement.

parentheses

The _____ feature displays all allowable entries you can make in a Visual Basic statement each time a dot, equal sign, or other special character required for the statement is typed.

IntelliSense

True or False?



Visual Studio 2010 displays a pop-up message in the corner of the work area whenever it detects an error in your code.

false

A(n) _____ document consists of a table that specifies an object in the user interface that will cause an event, the action taken by the user to trigger the event, and the event processing that must occur.

event planning

The _____ option of the SizeMode property of the PictureBox object will adjust the size of the image to match the size of the PictureBox object.

StretchImage

True or False?



In Visual Basic, capitalization or words is important.

false

The Start Debugging button appears on the _____ toolbar.

Standard

True or False?



You should match a light BackColor with a light ForeColor property for the best usability.

false

True or False?



The Coding Problem window identifies the number of errors that occurred during compilation and displays a description of each error.

false

There are two attributes of the SizeMode property of a PictureBox object that will enlarge or shrink the image: _____ and _____.

Zoom and AutoSize.

True or False?



A set of braces at the end of a statement indicates that it is a procedure call statement.

false

True or False?



The ImageCollection folder holds all the images that the program uses.

false

_____ comments appear at the beginning of the program, and contain the developer's name, the date, and the purpose of the program.

Introductory

True or False?



Programming code is the set of rules used to specify how each statement must be written.

false

The event planning document describes what processing must occur for each event as well as the manner in which to accomplish it.

true

When the _____ property of a GUI object is set to False, the object will appear dimmed on the form.

Enabled

The predefined _____ procedure will close the program.

Close

True or False?



In order to run a program, it first must be executed.

false

A set of rules that specify how each code statement must be written is called the _____ of the programming language.

syntax

True or False?



Image file names should not contain spaces.

true

True or False?



The Enabled property has the same effect on a GUI object as the Visible property.

false

A _____ object is used to display a graphic image.

PictureBox

In Visual Studio, _____ automatically creates indentations in program code to make it easier to read and understand.

IntelliSense

When you type the first few letters of the _____ name, IntelliSense displays a list of all the entries that can be specified in the statement.

object

True or False?



The property value specified in an assignment statement must be a valid value for the property identified on the left side of the equal sign.

true

When you click the Start Debugging button, the program is _____ and saved, and then is run on the computer.

compiled

The _____ option of the SizeMode property of the PictureBox object does not change the size of the image or the size of the PictureBox object, and places the image in the center of the PictureBox object.

CenterImage

To use an image in a program, the image must first be _____ into the program.

imported

True or False?



Visual Studio 2010 provides a tool to print the user interface designs in the application.

false

True or False?



IntelliSense was created primarily to speed up the development process for developers.

true