C# Generics MCQs

Question 11: Which of the following statement is TRUE?

Question 12: Consider the following example.

class Processor<T> where T:IEnumerable
{
    public void Process(T collection)
    {
        foreach (var val in collection)
            Console.Write(val);
    }
}