New Stuff Flashcards

1
Q

SQL and Prolog are both types of what programming paradigm?

A

both types of declarative programming paradigms.

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

Java, Python, VB.NET, and C++ are all types of object-oriented programming (OOP) languages.

A

are all types of object-oriented programming (OOP) languages.

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

the correct definition of a programming paradigm?

A

A style of programming

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

Haskell and Lisp are both types of what programming paradigm?
*

A

functional programming languages.

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

If the domain of the function below is {1, 2, 3}, what is the co-domain?

func x = x * 3

A

{3, 6, 9}

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

What is the correct term for using one function as an argument for another function?

A

Composition of functions

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

what is meant by a variable that is immutable?

A

Variables cannot be reassigned once they are given a value

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

characteristics of a first class object

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

Functional programming is stateless and has no side effects. what this means?

A

The state of memory does not change, i.e. the values of variables stay the same. Therefore there is no record of previous operations and each operation is processed using only the arguments/parameters provided will always return the same result for a given input and so cannot affect other operations within the program.

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

what is the head of a list [1.2.3]

what is the remainder

A

[1]
[2,3]

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

what does 5:[1,2,3] do

A

creates a new list with 5 at the front

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

concat[“fish” “and” “chips”] what does this do

A

creates a concatenated string of the elements in the list.

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

what does [1,2] ++ [3,4]

A

creates a new list comprised of those two

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

Which of the following is the correct definition of a higher-order function?

A

A function is higher-order if it takes a function as an argument or returns a function as a result, or does both

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

What does the map function do

A

a higher-order function that applies a given function to each item in an iterable

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

What is the filter function

A

A filter function takes a predicate function and a list, and it returns a new list containing the elements that satisfy the predicate.

16
Q

What is the result of this program?

foldr (-) 100 [3,4,5,6]

17
Q

what does the fold function do

A

A fold function reduces the elements of a list to a single value, applying a given function recursively

18
Q

What is the result of this program?

foldl (-) 100 [3,4,5,6]