Question: An error is generated when you try to compile the following code. How should you change the call to printStudents to fix the error?

  1. `printStudents(students.toList())`
  2. `printStudents(students!!)`
  3. `printStudents(*students)`
  4. `printStudents(students[])`

Answer: The correct answer of the above question is Option C:`printStudents(*students)`