AP CSA Vocab 2.1-2.3

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

1/9

flashcard set

Earn XP

Description and Tags

CSA Vocab 2.1-2.3

Study Analytics
Name
Mastery
Learn
Test
Matching
Spaced

No study sessions yet.

10 Terms

1
New cards

Sequencing

Code going in order to make sure the right output comes from the algorithm. Building blocks of algorithms.

2
New cards

Selec

If and IF-ELSE statements are examples of this and it’s when a decision is being made depending on a condition. Building blocks of algorithms.

3
New cards

Repetition

Also known as iteration when something repeats and loops are an example. Building blocks of algorithms.

4
New cards

Loop

Also known as iteration and allows an algorithm to repeat certain actions until a specified condition is met.

5
New cards

Pseudocode

A simplified, informal way of describing the steps in an algorithm in  a language like English well following the sequence, selection, and repetition structure of programming languages.

6
New cards

Flowcharts

Diagram that represent steps in an algorithm

7
New cards

Relational Operators

< Less Than

> Greater Than

<= Less than or equal to

>= Greater than or equal to

== Equals

!= Does not equal

8
New cards

Boolean

Have true or false values

9
New cards

If Statement

A way to choose between different paths in an algorithm is a type of selection statement and affects low control by executing different parts of code depending on the value of the boolean expression. Can be followed by ELSE to change the one way statement to a two way statement.

10
New cards

Body

Segment of code to run if the IF statement is true