...

/

Quiz on Common Computation Patterns

Quiz on Common Computation Patterns

Let’s test your understanding of the map, filter, fold, and zip functions.

We'll cover the following...

Concepts of common computation patterns

1

(Select all that apply) What is the output of the following function call?

List.map ((+) 1) [1; 2; 3]
A)
[1; 2; 3]
B)
[2; 3; 4]
C)
[4; 5; 6]
Question 1 of 80 attempted