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?
- `printStudents(students.toList())`
- `printStudents(students!!)`
- `printStudents(*students)`
- `printStudents(students[])`
Answer: The correct answer of the above question is Option C:`printStudents(*students)`