Controls
Making Variables
Data types
Misc.
Variables
100
This is used to display a message after clicking it.
What is a button?
100
The prefix used when naming variables.
What is hungarian notation?
100
The data type for true or false.
What is boolean?
100
This is the first name of my Father.
Who is Jimmy?
100
This is where a variable lives.
What is a scope?
200
This control is used to display messages.
What is a label?
200
Keyword used to declare a variable data type.
What is As?
200
The data type used for a single character.
What is a char?
200
This is how many years I am.
What is 18?
200
This type of variable can be used anywhere in the program.
What is a global variable?
300
When you want to group different controls, you use this.
What is a groupbox?
300
This method converts any value given to it to a string and formats it with the format given.
What is the ToString method?
300
The data type used for decimals and currency?
What is decimal?
300
This variable can only be used in certain areas of a program.
What is a local variable?
400
This allows users to input values at run time.
What is a textbox?
400
A keyword used to tell VB that a variable declaration is coming.
What is Dim?
400
The data type used for more than one character.
What is a string?
400
I have this many siblings.
What is 2?
400
This is a memory location that stores a value that can't be changed.
What is a constant?
500
This allows users to select more than one option.
What is a checkbox?
500
This is the assignment operator.
What is '='?
500
The data type used for larger decimal numbers.
What is double?
500
This is my favorite type of pizza.
What is pepperoni?
500
A variable that holds its value between runs of the program.
What is a static variable?