Question: Which of the following selects an anonymous type?

  1. select new { a.Country, a.Region }
  2. select a
  3. select a.Country, a.Region
  4. select { a.Country, a.Region }

Answer: The correct answer of the above question is Option A:select new { a.Country, a.Region }