Functional programming paradigm Flashcards

You may prefer our related Brainscape-certified flashcards:
1
Q

What is a first class object?

A

An object that can:

  • Appear in expressions
  • be assigned to a variable
  • be assigned as an argument
  • be returned from a function
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
2
Q

What is a high order function?

A

A function that takes a function as an argument or returns a function (or both)

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

What is partial function application?

A

Providing some of a functions arguments and producing a function that takes the remainder of the arguments

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

What is functional composition?

A

The process of combining two or more functions

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