Multiple Choice
Which of the following statements about functional programming is false
A) You do not need to specify how to iterate through the elements or declare and use any mutable (that is, modifiable) variables. This is known as internal iteration, because the library code (behind the scenes) iterates through all the elements to perform the task.
B) A key aspect of functional programming is immutability-not modifying the data source being processed or any other program state, such as counter-control variables in loops. This eliminates common errors that are caused by modifying data incorrectly.
C) A filter operation combines the elements of a collection into a single new value, typically using a lambda that specifies how to combine the elements.
D) A map operation results in a new collection in which each element of the original collection is mapped to a new value (possibly of a different type) . The new collection has the same number of elements as the collection that was mapped.
Correct Answer:

Verified
Correct Answer:
Verified
Q2: Class Enumerable provides static method _ to
Q3: Covariance works only with reference types that
Q4: All arrays implicitly inherit from which generic
Q5: Which of the following statements is false<br>A)
Q6: A _ is the general term for
Q7: Which of the following statements is false<br>A)
Q8: Which of the following statements is false<br>A)
Q9: Which of the following statements is false<br>A)
Q10: Which of the following is not a
Q11: The compiler converts LINQ queries into calls