A Guide to Working with Visual Logic - Vocabulary Flashcards

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

1/19

flashcard set

Earn XP

Description and Tags

Vocabulary flashcards covering key Visual Logic concepts from the lecture notes.

Study Analytics
Name
Mastery
Learn
Test
Matching
Spaced

No study sessions yet.

20 Terms

1
New cards

Input-Process-Output (IPO) Model

A framework where data is input, processed, and output as information.

2
New cards

Algorithm

A step-by-step procedure used to solve a problem in programming.

3
New cards

Flowchart

A visual diagram showing the sequence of steps and decisions in an algorithm.

4
New cards

Pseudocode

A high-level, human-readable outline of an algorithm that resembles code but is not executable.

5
New cards

Visual Logic

A visual tool that combines flowcharts and pseudo-like syntax to model algorithms; not a true programming language.

6
New cards

Input statement

A statement that reads data from the user and stores it in a variable.

7
New cards

Output statement

A statement that displays data to the user (in a window, console, or file).

8
New cards

Variable

A named memory location that stores a value and can change during execution.

9
New cards

Identifier

The name assigned to a variable; must not contain spaces; letters, numbers, and underscores allowed; Visual Logic is case-insensitive.

10
New cards

Legal identifiers

Identifiers that follow the rules (e.g., NAME, num1, interestRate, Num1, Num2) and have no spaces.

11
New cards

String input

Input data that must be enclosed in quotation marks.

12
New cards

Numeric input

Input data that must contain only digits and may include one decimal point.

13
New cards

Assignment statement

A processing step that evaluates the right-hand side and stores the result in the left-hand side variable.

14
New cards

Left-hand side (LHS)

The variable on the left side of an assignment that receives the value.

15
New cards

Right-hand side (RHS)

The expression on the right side of an assignment whose value is assigned.

16
New cards

FormatCurrency

An intrinsic Visual Logic function that formats a value as currency with a leading dollar sign and two decimal places.

17
New cards

Begin/End

Keywords that mark the start and end of a Visual Logic program flow.

18
New cards

Input flowchart symbol (Parallelogram)

The parallelogram shape used in Visual Logic to denote an input operation.

19
New cards

Processing rectangle

The rectangular flowchart symbol used to denote assignment/processing steps.

20
New cards

Internet Shopping Cart System (example)

A sample Visual Logic project illustrating steps like database connection, product cost, tax calculation, billing, receipts, and reports.