Show:
Questions
Responses
Print
Data Types
Controls
Making Variables
Misc.
More About Variables
100
a single character/letter/symbol/number
What is Char?
100
used as a prompt or used to display information for the user of your program
What is a label?
100
keyword used to tell VB that a variable declaration is coming
What is Dim.
100
prefixes used when naming variables/controls
What is Hungarian Notation?
100
a named location in the computer's memory
What is a variable?
200
a data type that contains words/letters
What is a String?
200
a control that allow users to enter (input) values at run time
What is a TextBox?
200
keyword used to declare a variable data type
What is As
200
the school(s) that Mr. Renne graduated from
What is Western Illinois University or Kansas State University?
200
a named memory location which stores a value that cannot be changed from its initial assignment
What is a constant?
300
a data type that contains whole numbers (i.e. no decimals/fractions)
What is an Integer?
300
a control that allows the user to click and have an action happen as a result of the click
What is a Button?
300
Assignment Operator
What is an = (equal sign).
300
the school that Mr. Renne taught at before AHS
What is SAMS?
300
a variable that can only be used in a specific sub/function
What is local variable?
400
a common data type for decimal numbers
What is a Double?
400
the main control that is used for all Visual Basic programs; the control where all other controls are placed upon
What is a Form?
400
a variable that can be used anywhere in a program
What is a global variable?
400
the person(s) that founded Microsoft
Who is Bill Gates or Paul Allen?
400
merging two or more items together
What is concatenation?
500
a data type that should be used when using currency
What is Decimal?
500
a control that allows you to "Group" other controls to organize the appearance of your app
What is a GroupBox?
500
where (location) a variable "lives" in a program
What is scope?
500
the name of Mr. Renne's daughter
Who is Madelyn?
500
converts any value given to it to a string and formats it with the format given
What is the ToString method?