Question: What is the correct way to call the `count` member function for the object pointer called `grades`?

  1. `grades.count();`
  2. `my_array->count();`
  3. `grades->count();`
  4. `my_array.count();`

Answer: The correct answer of the above question is Option C:`grades->count();`