Understand Numbering Systems
Understand the Programming Process
Controls Associated With Visual Studio Form
Variables and Data Types
5.05
100
(Base10)
What is Decimal
100
what are the five steps of the programming process?
1.Identify the Problem 2.Design the Solution 3.Write the Program 4.Test the Program 5.Document and Maintain the Program
100
1.Choose your programming language 2.Choose the template -VB: Windows Application 3.Change the Name 4.Change the Location?to where you are ?saving your work. 5.Click OK Those are the steps to do what?
Creating a New Project
100
a __________is a named place in computer memory that holds a value. The user (who runs the program) or the programmer (coder) can supply the value of a variable.
Variable
100
The ___________is a dialog box that pops up and prompts the user for input. The program stops and waits until the user inputs data or cancels the box.
input box
200
(Base2)
What is Binary?
200
What are the two parts to this step Identify the Problem?
Requirements Specifications
200
Designer Window ,Solution Explorer Window,Properties Window, and the toolbox are what?
Visual basic main tools
200
A__________ tells the computer what type of value to expect in a variable.
data type
200
The program stops executing until the user chooses the ____ ___ ______ buttons. Then the next line of code executes.
OK or Cancel
300
Base 16
What is Hexadecimal ?
300
The most frequently used design in the programming process is called
Top-Down Design.
300
The ________________window displays a list of the projects in the solution and the items contained in the project.
Solution Explorer
300
Data type used with whole numbers (+/-)
Integer (int)
300
This type of counter you can declare _____ instead of Static outside of the loop.
Dim
400
if Decimal 4= 100 in binary, what does decimal 5 equal in binary?
101
400
A solution method is broken down into smaller sub-problems, which in turn are broken down into smaller sub-problems, continuing until each sub problem can be solved in a few steps. ?This is called
modularization.
400
The _______________is Utilized to Change the Characteristics of Your Form During Design Time.
Properties Window
400
Data type used with larger decimal numbers
Double (dbl)
400
Each time the loop runs is called an
iteration
500
What is 1111 1111 in Decimal?
255
500
An ___________ is a set of steps that create an ordered approach to a problem solution.
Algorithm
500
___________Are Objects Which Can Be ?Placed on Your Form Using Either ?the Double-Click or Click and Drag ?Method.
Controls
500
Strings can be combined from several different sources. This is called ?
concatenation
500
When dealing with loops you also may use a _______variable to determine the number of times a loop executes.
counter