Unit 1+2
Unit 4
Unit 5
Unit 6
Unit 7
100
11011 convert to Decimal
What is decimal 27?
100
Keyword to declare a variable
What is Dim?
100
A loop used when you know how many times the loop will run
What is a For Next Loop?
100
Displays a list from which the user can select 1 or more items If the list longer than the list box, a scrollbar is automatically added Prefix: lst
What is a ListBox?
100
Reference parameters: Calc( ) Doesn't create a new place in memory Represents the same storage location as the variable given in the argument "Call" The Sub Procedure CAN change the value of the variable "2 Way Street" (A parameter)
What is ByRef?
200
Base 16
What is Hexadecimal?
200
Strings can be combined from several different sources. Use the "&" in between each segment
What is Concatenation?
200
A condition used to show that a loop should stop executing
What is a Sentinel?
200
Prefix: cbo Displays a list in a drop-down box A combination of a textbox and a listbox The top of this allows the user to type input The 2nd part displays a list of items from which the user can select
What is a ComboBox?
200
A statement of what must be true at the end of the execution of a procedure if the procedure has worked properly (A condition)
What is a Post-Condition?
300
English-language statements that describe the processing steps of a program in paragraph form?
What is Pseudocode?
300
A global variable is declared at the top of the program before any procedures or subs. The time that the variable is available for use is called its lifetime
What is Variable Scope?
300
True or False: If, in a pretest, the condition is false the loop will terminate
What is True?
300
A predefined dialog box that displays information to the user. (A control)
What is a MessageBox?
300
Assigning a datatype to all variables including those in procedural calls
What is Strong Typing?
400
Breaking down a problem into smaller sub-problems
What is Modularization?
400
A control that allows users to enter (input) values at run time.
What is a TextBox?
400
The looping structure that evaluates a condition after executing a loop once
What is Do Loop While?
400
A function that allows a user to input information. It displays a prompt in a dialog box, waits for the user to either hit the enter key or click a button, then returns the information from the textbox as a string.
What is an InputBox?
400
A block of code that will execute in response to a "call" from inside another block of code
What is a Sub Procedure?
500
1. Identify the Problem 2. Design the Solution 3. Write the Program 4. Test the Program 5. Document and Maintain the Program (A process)
What is the Programming Process?
500
A variable storing a number that is incremented by a constant value
What is a Counter?
500
In a syntax code, the condition must always be a _______ _______
What is a Boolean Expression?
500
This property allows the programmer to compare what the user has selected in the list box with the item itself as a string value The comparison is exact, so your spelling, capitalization, and spacing matters This property is only available at runtime.
What is SelectedItem Property?
500
Default Val Parameters This parameter passes the value to the sub procedure Passing a value of a variable - not the variable itself The value of the variable cannot be changed "One Way Street" (A parameter)
What is ByVal