To store single or multiple choices as a single record(column) I suggest to encode the choices as an integer value.
If you had many options which are exclusive, you can encode those as integer values.
option1 encoded as 1
option2 encoded as 2
option3 encoded as 3
option4 encoded as 4
option5 encoded as 5
If you have very few and nonexclusive options you should encode them as bits in an integer:
option1 encoded as 1 (binary ...00001)
option2 encoded as 2 (binary ...00010)
option3 encoded as 4 (binary ...00100)
option4 encoded as 8 (binary ...01000)
the second representation allows you to store 2 or more choices in a single integer value:
option2 + opton4 encoded as 8 + 2 = 10 (binary ...01010)
(no option selected) encoded as 0 (binary ...00000)
More on bitvise operations:
http://en.wikipedia.org/wiki/Bitwise_operation