Which of the following statements are TRUE? Check all that apply The two terms: higher-order functions and first-class functions have the exact same meaning and can be used interchangeably The correct implementation of myfilter function is: myfilter (F,[H∣T])−> case F(H) of
true −> myfilter (F,T);
false−>[H∣myfilter(F,T)]
end. In the example provided in lectures, mymapper function is equivalent in its logic to lists:map In Erlang, when storing a function into a list, keyword function must be used, e.g. Funcs = [function isOdd, function isEven, function isPositive]. In Erlang, an anonymous function equivalent to isEven could be written as fun (X)−>X rem 2==0 end.