In poll sites, a user (not logged in) can vote on a question only once. How does the web app 'remember' that the user has already answered a particular question?
one way is to set a cookie for every question she answers. another way to save the question id in the session. we could also store the value in a db, along with the session id.
is there any other way to do it?