Does the order of the choices matter?
EDIT:
If the order does not matter, then it is a simple case of a many to many relationship between participants of the survey and the survey choices.
Create a table of Participants, e.g., with id and name. Create a table of Choices, e.g., with id and name. Create a table of ParticipantChoices with participant_id and choice_id.
For every choice that a participant makes, add a row to the ParticipantChoices table with the participant's id and the choice's id.
Now, to list the choices the way you want to, you would run this query:
SELECT name, COUNT(choice_id) AS choice_count
FROM ParticipantChoices JOIN Choices ON ParticipantChoices.choice_id=Choices.id
GROUP BY name