AP Computer Science Principles - Unit 4

0.0(0)
learnLearn
examPractice Test
spaced repetitionSpaced Repetition
heart puzzleMatch
flashcardsFlashcards
Card Sorting

1/17

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.

18 Terms

1
New cards

Expressions

A combination of operators and values that evaluates to a single value.

2
New cards

Assignment Operator

Allows a program to change the value represented by a variable

3
New cards

Variable

A named reference to a value that can be used repeatedly throughout a program

4
New cards

Concatenate

To link together or join. Typically used when joining together text Strings in programming (e.g ā€œHello, ā€œ+name)

5
New cards

String

Any sequence of characters between quotation marks

6
New cards

Boolean Value

A data type that is either true or false

7
New cards

Boolean Expression

in programming, an expression that evaluates to true or false

8
New cards

Comparison (relational) Operators

used to compare two values

9
New cards

Logical Operators

allows you to compare the results of more than one Boolean operation at a time.

10
New cards

Abstraction

a simplified representation of something more complex. allows you to hide details to help manage complexity, focus on relevant concepts, and reason about problems at a higher level.

11
New cards

Function

A named group of programming instructions, reusable abstractions that reduce the complexity of writing and maintaining programs.

12
New cards

Procedure

A named group of programming instructions that may have parameters and return values.

13
New cards

Function Call (to invoke a function)

a command that executes the code within a function

14
New cards

High Level Programming Language

a programming language with many commands and features designed to make common tasks easier to program.

15
New cards

Low Level Programming Language

a programming language that captures only the most primitive operations available to a machine. anything that a computer can do can be represented with combinations.

16
New cards

If-Statement

the common programming structure that implements ā€œconditional statementsā€

17
New cards

Selection

a generic term for a type of programming statement that uses boolean condition to determine or select whether or not to run a certain block of statements

18
New cards

String

an ordered sequence of characters.