Functional Programming Flashcards

1
Q

What does stateless program mean

A

The value does not change

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

What does immutable variable mean

A

Where the variable does not change

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

What is the domain

A

The set that the input values can be chosen

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

What is the co-domain

A

Set of values the output values can be chosen

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

What is a composite function

A

A function that uses another function as an argument

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

What is function application

A

Process of applying a function to a specific set

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

What is a partial function

A

A function that already has a pre-set argument

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

What is a higher order function

A

Either:
1. Takes a function as an argument
2. Returns a function as a result

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

What does the map function do

A

Takes a list and applies the function to every single item

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

What does the filter function do

A

Takes a condition and returns the list that fulfils the condition

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

What does the fold function do

A

Takes the list and reduces the list into a single value

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

What is the head of a list

A

The first element of the list

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

What is the tail of a list

A

Everything bar from the first element

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