Computer Programming CH 1-6 ACTUAL COMPLETED FINAL

0.0(0)
studied byStudied by 0 people
0.0(0)
full-widthCall Kai
learnLearn
examPractice Test
spaced repetitionSpaced Repetition
heart puzzleMatch
flashcardsFlashcards
GameKnowt Play
Card Sorting

1/113

encourage image

There's no tags or description

Looks like no tags are added yet.

Study Analytics
Name
Mastery
Learn
Test
Matching
Spaced

No study sessions yet.

114 Terms

1
New cards

Syntax error

Message that means the code breaks the language grammar and prevents compilation

2
New cards

Introductory Comment

States the program name, developer's name, date, and purpose of the program.

3
New cards

Syntax

Set of rules that specify how each statement must be written.

4
New cards

Hint

A screen that indicates where in the Visual Studio window you should perform an activity.

5
New cards

Image property

Specifies the image that should be displayed in the selected PictureBox object.

6
New cards

Disabled

A button state where nothing will happen when the button is pressed.

7
New cards

Build error

Message produced when the project fails to build; can include compiler errors, missing references, or other build-time failures

8
New cards

Intellisense

Displays all allowable entries you can make in VB each time a dot is entered.

9
New cards

Apostrophe

The character that precedes comments in Visual Basic.

10
New cards

Event handler

Section of code that handles events that user actions trigger.

11
New cards

Program code

Set of instructions written by the developer.

12
New cards

Procedure

A set of prewritten code that can be called by a statement in Visual Basic code.

13
New cards

Green

Color of text for comments.

14
New cards

BackColor

Property that allows you to change the background color of an object.

15
New cards

Visible

Property that controls whether an object is displayed on the form.

16
New cards

SizeMode

Property used to adjust an image size to fit in a PictureBox object.

17
New cards

Start Debugging

The button you click on the standard toolbar to run the program.

18
New cards

Event Planning

Document (2 words) that lists UI objects that cause events, the triggering action, and the processing required.

19
New cards

Resources

Folder where images are kept that are linked to the application.

20
New cards

looping

The process of repeating a set of instructions while a condition is true or until a condition is met.

21
New cards

menu

A graphical list of commands or options; in VB menus contain MenuItems that can trigger actions or shortcuts.

22
New cards

InputBox

A built-in Visual Basic function that displays a dialog prompting the user for text input and returns the entry as a string.

23
New cards

ListBox

A Windows Forms control that displays a list of values with one item per line and allows the user to select items.

24
New cards

accumulator

A variable used to collect or sum values across loop iterations (holds the running total or combined result).

25
New cards

iteration

One single pass or repetition of the body of a loop.

26
New cards

Do While loop

A pre-test loop that repeats its body as long as a specified condition remains True (checks condition before each iteration).

27
New cards

infinite loop

A loop that never terminates because its exit condition is never met or the control variable is never changed.

28
New cards

Priming the loop

Initializing a loop control variable or input before entering a loop so the loop's condition can be evaluated correctly on the first check.

29
New cards

breakpoints

Debugger markers you place in code to pause execution at a specific line so you can inspect variables and program state.

30
New cards

CTRL

The Control key on the keyboard; used as a modifier for keyboard shortcuts (for example,Ctrl+C to copy).

31
New cards

*/ operator

Not a valid compound operator — a combination of multiply (*) and divide (/) symbols; compound assignment operators combine arithmetic with assignment (e.g.,+=).

32
New cards

blue

A color commonly used by the Visual Basic/IDE code editor to display reserved keywords as part of syntax highlighting.

33
New cards

top-controlled

A loop that tests its condition before executing the loop body (a pre-test loop, e.g.,While ... End While).

34
New cards

bottom-controlled

A loop that tests its condition after executing the loop body (a post-test loop, e.g.,Do ... Loop While).

35
New cards

nested

A structure where one loop or control block is placed inside another loop or block (loops within loops).

36
New cards

debugging

The process of finding, diagnosing, and fixing errors or bugs in code using tools such as breakpoints and watches.

37
New cards

And

logical operator which requires all conditions to be true.

38
New cards

OKCancel

a MsgBoxStyle that wil display an OK and Cancel button on a message box.

39
New cards

Case Select

an alternative to using a series of If statements which may be clearer to understand.

40
New cards

Unicode

term used to describe the characters that are stored and sequenced to accommodate more than 60,000 characters.

41
New cards

To

word used is a case statement along with the beginning and ending value to determine a range of values

42
New cards

Not

logical operator with the highest order of preference which allows you to state conditions that are expressed in a negative way.

43
New cards

Code Snippets

pieces of code in Visual Basic that you can insert in an application.

44
New cards

IsNumeric

Visual Basic function that can check the input value to determine of the value can be converted into a numeric value.

45
New cards

Relational Operator

symbols used in a conditional like <, >, <=, and <>.

46
New cards

Nested

term used to describe when you place one If statement within another If statement.

47
New cards

Or

logical operator that has the lowest order of precedence and only requires one condition to be true.

48
New cards

Is

word used with relational operators in a Select Case statement.

49
New cards

Conditional

statement that results in a tested condition either being true or false.

50
New cards

Concatenate

combine strings and strings and variables using the '&' symbol

51
New cards

Information

the setting within MsgBoxStyle that will display an information icon.

52
New cards

Compound

condition to describe when more than one condition is included in an If..Then..Else statement.

53
New cards

Variable

A named location in RAM where a program stores data for processing.

54
New cards

Global Variable

A variable that can be accessed and modified in multiple regions or procedures of a program.

55
New cards

Local Variable

A variable that can only be referenced within the region or procedure in which it is declared.

56
New cards

Constant

A named value that remains unchanged throughout program execution, declared with the Const keyword.

57
New cards

Dim

A Visual Basic keyword used to declare a variable.

58
New cards

Argument

A value or reference passed to a procedure or function when it is called.

59
New cards

Sub Procedure

A block of code that performs a specific task but does not return a value.

60
New cards

Procedure

A prewritten block of code that can be executed by calling its name within a program.

61
New cards

ToString

A built-in method that converts numeric or other data types to a string representation.

62
New cards

TextBox

A user interface object that allows users to input text into a program.

63
New cards

Snap Lines

indicates where a textbox object aligns with other objects on a form

64
New cards

Equal Sign (=)

Symbol used to assign a value to a variable in an assignment statement.

65
New cards

Dot Operator (.)

Used to separate an object or class name from its property, method, or event.

66
New cards

Mod Operator

An arithmetic operator that returns the remainder of a division operation.

67
New cards

Numeric Data Type

A category of data types used in arithmetic operations (e.g., Integer, Double, Decimal).

68
New cards

Integer

a data type that holds a nondecimal whole number in Visual Basic

69
New cards

Char

a data type that represents a single keystroke such as a letter of the alphabet

70
New cards

String Variable

A variable used to hold a sequence of characters or text. (Also is a named location in ram that can store a string value)

71
New cards

str Prefix

A naming prefix conventionally used for String variables in Visual Basic.

72
New cards

RAM

Random Access Memory; temporary program memory used to store data and variable values during execution.

73
New cards

Green Squiggly Underline

A code editor indicator showing that a variable or identifier is declared but never used in the program.

74
New cards

Hardware

the physical equipment associated with a computer

75
New cards

Software

programs that tell a computer what tasks to perform

76
New cards

Data

words numbers videos graphics and sound that programs manipulate display and process

77
New cards

Input

data that is entered into a computer system

78
New cards

Output

information produced by a computer after processing input

79
New cards

Information

processed data that is meaningful to the user

80
New cards

Persistent data

data that remains available even after the computer power is turned off

81
New cards

Application

a computer program designed to perform a specific task

82
New cards

Suite

a collection of several computer programs working together

83
New cards

Database

a collection of data organized to allow access retrieval and use

84
New cards

Programming language

a set of words and symbols that can be interpreted by software and executed by a computer

85
New cards

Syntax

the rules that govern how programming language statements are written

86
New cards

Compilation

the process of translating a program into instructions the computer can understand

87
New cards

CPU

the component of the computer that executes program instructions

88
New cards

RAM

temporary memory where programs and data are stored while the computer is running

89
New cards

GUI

Graphical User Interface that allows users to interact with a program visually

90
New cards

IDE

Integrated Development Environment that provides tools for coding testing and implementing programs

91
New cards

Visual Studio 2010

an IDE used to develop Visual Basic programs

92
New cards

Developer

a person who designs and develops computer programs

93
New cards

Event-driven program

a program that responds to user actions such as clicks or keystrokes

94
New cards

Class

a named group of program code

95
New cards

New Project

To start a new project, click the ________________ button on the Standard toolbar

96
New cards

Alphabetical

In the Properties window, the properties can appear in Categorized view or ________________ view.

97
New cards

View

To display the Solution Explorer window, click _______________ on the menu bar, then click Solution Explorer on the menu.

98
New cards

Two-headed Arrow

When the mouse pointer is over the sizing handle, it changes to a ________________ that indicates you can drag to change the size of the Windows Form object.

99
New cards

Format

To center an object in the window, click ________________ on the Menu bar and then point to Center in Form.

100
New cards

Undo

You can undo an action you just performed by clicking the ________________ button on the Standard toolbar

Explore top flashcards

P&P Vocab Chp. 27-37
Updated 964d ago
flashcards Flashcards (25)
AP World Unit 3
Updated 743d ago
flashcards Flashcards (62)
APGov
Updated 961d ago
flashcards Flashcards (75)
Human Bio Exam
Updated 397d ago
flashcards Flashcards (41)
Thermal Properties
Updated 570d ago
flashcards Flashcards (21)
Biological Molecules
Updated 470d ago
flashcards Flashcards (114)
history midterm
Updated 1062d ago
flashcards Flashcards (81)
tema 1 ja 2
Updated 841d ago
flashcards Flashcards (80)
P&P Vocab Chp. 27-37
Updated 964d ago
flashcards Flashcards (25)
AP World Unit 3
Updated 743d ago
flashcards Flashcards (62)
APGov
Updated 961d ago
flashcards Flashcards (75)
Human Bio Exam
Updated 397d ago
flashcards Flashcards (41)
Thermal Properties
Updated 570d ago
flashcards Flashcards (21)
Biological Molecules
Updated 470d ago
flashcards Flashcards (114)
history midterm
Updated 1062d ago
flashcards Flashcards (81)
tema 1 ja 2
Updated 841d ago
flashcards Flashcards (80)