CSP Flashcards

1
Q

Debugging Practices

A

Techniques to identify and fix code errors

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
2
Q

Variables

A

Containers for storing and manipulating data

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
3
Q

Mathematical Expressions

A

Formulas for calculations in programming

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
4
Q

Boolean Expressions

A

True/False values for decision-making in code

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
5
Q

Conditionals

A

Statements that control program flow based on conditions

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
6
Q

Nested Conditionals

A

Conditionals within conditionals for complex decisions

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
7
Q

Random Values

A

Values generated unpredictably for program use

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
8
Q

Expression

A

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

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
9
Q

Assignment Operator

A

Allows a program to change the value represented by a variable

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
10
Q

Variable

A

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

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
11
Q

String

A

An ordered sequence of characters

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
12
Q

Boolean Value

A

A data type that is either true or false

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
13
Q

Comparison Operators

A

<, >, <=, >=, ==, != indicate a boolean expression

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
14
Q

Logical Operator

A

Not, AND, and OR, which evaluate to a boolean value

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
15
Q

Conditional Statement

A

Affects the sequential flow of control by executing different statements based on the value of a boolean expression

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
16
Q

Function

A

A named group of programming instructions. Also referred to as a “procedure”

17
Q

Function Call

A

A command that executes the the code within a function

18
Q

Binary

A

A way of representing information by only using two options

19
Q

Decimal

A

A way of representing information by using 10 options

20
Q

Bit

A

A contraction of “Binary Digit”; the single unit of information in a computer, typically represented as 1 or 0

21
Q
A
22
Q
A
23
Q
A
24
Q
A
25
Q
A
26
Q
A
27
Q
A
28
Q
A
29
Q
A
30
Q
A