Racket Definitions Flashcards

1
Q

Literal

A
  • A fixed value
  • Not a variable
  • Nothing calculated
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
2
Q

Variable

A

Stores information in a program so that it can be used later. Can change values.

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

Functions

A
  • Called procedures, methods, or subroutines
  • A sequence of commands that accomplish a specific task
  • Can be used multiple times in a program
  • Must have parameters and return a value
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
4
Q

Parameter

A

A variable representing a value passed into a function

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

Argument

A

A value passed to a function

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

Iteration

A

The process of repeating a set of instructions or operations in a program until a specific condition is met or a certain number of repetitions are reached

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

Recursive Function

A

A function that calls itself in its code

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