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

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;

35 Cards in this Set

  • Front
  • Back
A message box is displayed with what method?
Show
You can only display an OK button in a message box (True or False)
False
How many different icons can be displayed in a message box?
8
Case Else is an option in a Select Case statement (True or False)
True
All radio buttons within a group box belong to the same group.
True
A form can contain both radio buttons and checkboxes (True or False)
True
What radio button property is tested to see if that button is selected?
Checked
You can only select one checkbox, but in a radio button group you can select multiple items (True or False)
False
To check whether a checkbox is selected, you should test this property.
Checked
A text input box returns the value of the input as what data type?
String
Where a prompt exists on a form cannot be defined (True or False)
False
What is returned when a user presses Cancel for a prompt.
Empty String ""
The index number for listboxes and comboboxes starts at 1 (True or False)
False (starts at 0)
A listbox can be sorted alphabetically during run time (True or False)
True
What is the code syntax to add an item to a list box?
Items.Insert()
You remove an item from a list box with what line of code?
Items.Remove()
If you want to erase items in the listbox during runtime you use the command Items.Clear() (True or False)
True
In a DoWhile loop, the statements in the loop execute as long as ....
The expression for the Do While is true
An infinite loop will stop when?
Never
Do While and Do Until can be written as PreTest only (True or False)
False
The multicolumn property for a list box does what?
creates a list with multiple columns
The prefix for a combo box is what?
cbo
A method that allows you to access items in a listbox is...
GetItemChecked(Index)
The item selected from a combo box is represented by the ____________property.
Text
In a simple combo box, the user can either enter text or select from the list (True or False)
False This can only be done with a Drop Down Combo Box.
A local variable that keeps the same value between procedure calls to the procedure that it is called in is what type of variable?
Static
A static variable is like a constant (True or False)
True
The different ways an argument can be passed to a function are
By value, By reference, By address, and By default
The return value of a funciton must match the data type of the function (True or False)
True
Only numeric values can be returned by a function (True or False)
False
Crl.f does what?
Performs carriage return and line feed
A Select Case can test both strings and numbers (True or False)
True
For the following code, what is the value stored in the variable finalStatus at the end of the code block:

x=10
Select Case x
Case 1, 3, 5
finalStatus = "Number is Odd"
Case 2, 4, 8
finalStatus = "Number is Even"
Caee Else
finalStatus = "Input is out of Range"
End Select
Input is out of Range
For the following code:

UserInput = InputBox("Enter the length.", "Input a Value","2000")

What is the string "Input a Value" is the default value (True or False)
False
For this code:
Dim x as Double, count as Integer
For count = 0 to 8
x = count + x
Next Count
Text1.Text = x

What is the Start and End Value?
0 and 8