Question: What is the correct syntax for a new generic list of strings named contacts?

  1. public List contacts = new List();
  2. public List(string names) contacts = new List(string names)();
  3. var contacts = new List();
  4. var contacts = new List(string);

Answer: The correct answer of the above question is Option C:var contacts = new List();