level: Functional
Questions and Answers List
level questions: Functional
Question | Answer |
---|---|
f: A → B What is the name for the A part | Domian |
f: A → B What is the name for the B part | co domain |
Define what the functional programming paradigm is | a language where each line of code is is made up of calls to a fucntion, which in turn may be made of other functions, or result in value |
What type of pradigm is functional programmin | Declarative |
Whats declarative programming paradigm | Lanagages that declare or specify what properties a result should have |
In functional programmign whats an argument | A value passed to a function |
What are 3 common high order funtions | map fold filter |
Whats function application mean | Process of calculating the result of a function by passin it some data to produce a result |
Define functin composition | Combin of two or more functions together to create more compex functions |