comp sci unit 4

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

1/10

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.

11 Terms

1
New cards

expression

A combination of operators and values that evaluate to a single value

2
New cards

Variable

Holds one value at a time.A value that can be used repeatedly throughout the program.

3
New cards

Assignment operator

Allows a program to change the value represented by a variable. 

(tells a variable to hold something)


4
New cards

string

Made of any characters inside the double quotes

5
New cards

Concatenation

joining things together

6
New cards

boolean value

A data type that's either true or false

7
New cards

comparison operators

<, >, <=, >=, ==, !=, indicates a boolean expression.


8
New cards

boolean expression

An expression that evaluates to either true or false

9
New cards

function

A named group of programming instructions.

10
New cards

function call

A command that executes the code within a function

11
New cards

logical operator

An “and” (&&) or (||) or not (!) that are used in boolean expressions