Basics of Functional Programming (AQA A-Level Computer Science): Quizzes
📚Quizzes
Practise the questions
10 questions from this quiz
ShowHide
Practise the questions
10 questions from this quiz
What is the core principle of functional programming regarding inputs and outputs?
What is the core principle of functional programming regarding inputs and outputs?
Same input always returns same output
What defines a first-class object in functional programming?
What defines a first-class object in functional programming?
Object passed as argument or returned
What is a higher order function?
What is a higher order function?
Function accepting another function
What does the domain of a function represent?
What does the domain of a function represent?
Set of data serving as inputs
What is the result of in Haskell?
What is the result of in Haskell?
What does partial function application create?
What does partial function application create?
Intermediate function by fixing arguments
In function composition , which function is applied first?
In function composition , which function is applied first?
is applied first, then
Which advantage does functional programming provide for testing?
Which advantage does functional programming provide for testing?
Each function needs testing only once
What does the notation indicate?
What does the notation indicate?
Function takes input from , output in
What type of programming is functional programming an example of?
What type of programming is functional programming an example of?
Declarative programming
