Computer Science Exam Review: Arrays, Flowcharts, and Data Structures

0.0(0)
Studied by 0 people
call kaiCall Kai
learnLearn
examPractice Test
spaced repetitionSpaced Repetition
heart puzzleMatch
flashcardsFlashcards
GameKnowt Play
Card Sorting

1/18

flashcard set

Earn XP

Description and Tags

This set of vocabulary flashcards covers essential concepts from the lecture notes including pseudocode syntax, flowchart symbols, verification methods, data types, and basic SQL commands.

Last updated 5:03 PM on 5/23/26
Name
Mastery
Learn
Test
Matching
Spaced
Call with Kai

No analytics yet

Send a link to your students to track their progress

19 Terms

1
New cards

1D Array

A one-dimensional data structure with a specified size and data type where values are stored and accessed via an index.

2
New cards

Oval symbol

A standard flowchart symbol used to represent the START or END of an algorithm.

3
New cards

Rectangle symbol

A standard flowchart symbol used to represent a process or an assignment.

4
New cards

Parallelogram symbol

A standard flowchart symbol used to represent input or output operations.

5
New cards

Diamond symbol

A standard flowchart symbol used to represent a decision or a condition.

6
New cards

Trace Table

A tool used to follow an algorithm step by step by tracking how each variable changes with each input value and recording final outputs.

7
New cards

Verification

A process that checks that data has been entered correctly and matches the original source.

8
New cards

Double entry verification

A check where a set of values is entered twice and compared; if they match, the process continues, otherwise the user is prompted to re-enter the data.

9
New cards

Variable

A named storage location in memory whose value can change while the program runs.

10
New cards

Constant

A named storage location whose value is set once and does not change.

11
New cards

INTEGER

A data type that stores whole numbers only.

12
New cards

REAL

A data type that stores numbers with a decimal point.

13
New cards

CHAR

A data type that stores a single character.

14
New cards

BOOLEAN

A data type that stores only TRUE or FALSE values, often used as a flag.

15
New cards

Primary Key

A field that uniquely identifies each record in a database table; it must be unique and cannot be left empty.

16
New cards

SELECT

An SQL command used to choose which fields to display from a table.

17
New cards

FROM

An SQL command used to specify the table name in a query.

18
New cards

WHERE

An SQL command used to filter records based on a specific field value.

19
New cards

STRING

A pseudocode data type used for a name or text value.