🍔Quiz
6 questions to test your memory
1. Who is the father of the F♯? ⏱ 10’’
A. Anders Hejlsberg
B. Don Syme
C. Scott Wlaschin
2. What is the name of the ::
operator? ⏱ 10’’
::
operator? ⏱ 10’’A. Append
B. Concat
C. Cons
3. Find the intruder! ⏱ 15’’
A. let a = "a"
B. let a () = "a"
C. let a = fun () -> "a"
4. What line does not compile? ⏱ 20’’
let evens list =
let isEven x =
x % 2 = 0
List.filter isEven list
5. What is the name of |>
operator? ⏱ 10’’
|>
operator? ⏱ 10’’A. Compose
B. Chain
C. Pipeline
D. Pipe
6. Which expression compiles? ⏱ 20’’
A. a == "a" && b != "*"
B. a == "a" && b <> "*"
C. a = "a" && b <> "*"
D. a = "a" && b != "*"
Last updated
Was this helpful?