• 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/48

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;

48 Cards in this Set

  • Front
  • Back

What is the container tools that you use to draw controls on the form?

Toolbox window

What is the name of the window where you draw controls?

Form window

What window lists the all the files included in the solution?

Solution Explorer window

What window lists all designed time property?

Properties window

What property contains the name of the object?

Name property

What charters may be used in Visual Basic?

Letters , numbers and underlines.


What is appended at the end of each name?

Data type or control class

What property is used to change the text displayed in the title bar?

Text property.

What are the individual dots or picture elements that form the image on the screen called?

Pixels

What is the name of the property that controls the width and height of an object?

Size property

How would you set the property to size an object to a height of 200 and a width of 400 pixels?

400,200

What tool from the toolbox is used to create a graphical image?

PictureBox tool.

What is the name of the property used to automatically fit the image to the size of the container?

Size mode property

What property is used to identify the image to be loaded into the picture box?

Image property

What tool from the toolbox is used to create an object to hold text that the user cannot change?

Label

What property is used to change the message displayed in a label box?

Text property

What property is used to align the text in a label?

Auto align label

What property is used to change the type, style, or size of a label?

Font property.

What property describes the foreground color used to display text and graphics in a object?

Forecolor property

What tool from the toolbox is used to create an object to hold text that a user can change?

TextBox

What property specifies the top left corner of the control with respect to its container?

Location property

How would you set the property to position an object 300 pixels from the top edge and 400 pixels from the left edge of the form?

400, 300

What property contains the message displayed in a text box?

Text property

What object is used to display a list of choices and an optional TextBox

ComboBox

What property sets a border to be placed around an object?

Borderstyle property

What tool from the toolbox is used to create a button?

Button tool

What allows a operator to execute a command using a keyboard only?

Access key

What property of the button is used to create an access key?

Text property

What character immediately precedes the character you want to designate as the access key?

Ampersand (&)

How is the access key identified on the button?

Key is underlined

How is the access key activated when the program is running?

<alt> key

How do you delete a object?

Select the object, press delete.

What key is used with the mouse to select multiple objects?

<ctrl> key

What name would you assign to a label that would used to display the total due?

totalDueLabel

What property determines the starting position of the form when it first appears?

StartPostion

What extension does Visual Basic automatically append to a form file?

VB

Can a project contain more that one form?

Yes

What property controls the order of the tab fields?

Tabindex property

What value does the Tabindex begin with?

Zero

What command is used to view the Tab Indexes on the screen?

View, Tab Order.

What word begins all pusedocode selection structure?

If

What word ends all pusedocode selection structure?

END IF

What word is used to identify the false action when you have two selections?

Else.

What words are used in selection structures to test other conditions if you have three or more selections?

Else...else if

How do you write the pseudo code structure to display "Go to the Beach" when the temperature is greater than 80 or Display "Go Shopping" when the temperature is less than or equal to 80?

IF Temperature >


80 Display "Go to the Beach"


Else


Display "Go Shopping"


End IF

How do you write the pseudo code structure to Display "Above Par" , "Par" or "Below Par" when a Golf Score is greater than 70, equal to 70, or less than 70?

IF Score > 70


Display "Above Par"


Else IF Score = 70


Display "Par"


Else


Display "Below Par"


End IF

How do you write the pseudo code structure to Display "Freshman" when Code= 1 "Sophomore" when Code=2 "junior" when code=3 or "senior" when code=4?

If code = 1


Display "Freshman"


Else If Code = 2


Display "Sophomore"


Else if Code = 3


Display "Junior"


Else


Display "Senior"


End If

How do you write the pseudo code structure to Display "Lower Division" when the Code is "1" or "2" otherwise Display "Upper Division?

IF Code = "1" or "2"


Display "Lower Division"


Else


Display "Upper Division"


End IF