Making Decisions - Visual Logic (Vocabulary Flashcards)

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

1/25

flashcard set

Earn XP

Description and Tags

Vocabulary flashcards covering key concepts, terms, and operators from the Making Decisions notes for Visual Logic.

Study Analytics
Name
Mastery
Learn
Test
Matching
Spaced

No study sessions yet.

26 Terms

1
New cards

Visual Logic

A platform for designing algorithms using flowcharts and pseudocode.

2
New cards

Pseudocode

A human-readable, language-agnostic description of an algorithm's steps.

3
New cards

If-Then statement

A control structure that executes its block when a condition is true.

4
New cards

Else

The alternative branch executed when the If condition is false.

5
New cards

EndIf

The keyword that marks the end of an If-Then structure in Visual Logic.

6
New cards

Boolean data type

A data type with two possible values: true and false.

7
New cards

Boolean variable

A variable that stores a boolean value.

8
New cards

True

A boolean value indicating truth.

9
New cards

False

A boolean value indicating falsehood.

10
New cards

Boolean expression

An expression that evaluates to true or false.

11
New cards

Relational operators

Operators that compare values to form boolean expressions: =, <>, >,

12
New cards

Assignment operator

In Visual Logic, '=' is used to assign a value to a variable (e.g., A = 3).

13
New cards

Equality test

A boolean check, as in 'Is A equal to 3?', using a comparison like A = 3.

14
New cards

Not equal

Operator '<>' indicating that two values are not the same.

15
New cards

Greater than

Operator '>' that checks if one value is larger than another.

16
New cards

Less than

Operator '<' that checks if one value is smaller than another.

17
New cards

Greater than or equal

Operator '>=' that checks if a value is greater than or equal to another.

18
New cards

Less than or equal

Operator '<=' that checks if a value is less than or equal to another.

19
New cards

Odd or Even (parity check)

A problem type to determine whether a number is odd or even.

20
New cards

Overtime pay

Additional pay for hours worked beyond 40 at 1.5 times the regular rate.

21
New cards

Pay calculation

Formula: Pay = 40Rate + (Hours-40)Rate1.5 for Hours > 40; otherwise Pay = HoursRate.

22
New cards

Format Currency

A function that formats a numeric value as currency.

23
New cards

Input

Process of reading values from the user (e.g., Hours, Rate).

24
New cards

Output

Process of displaying results to the user.

25
New cards

Begin

The start marker of a Visual Logic program.

26
New cards

End

The end marker of a Visual Logic program.