Assuming the question type is short-text,
set up your survey to use JavaScript
and place the following script in the source of the question:
<script type="text/javascript" charset="utf-8">
$(document).ready(function(){
$('#question{QID} input[type="text"]').attr("placeholder", "Type your answer here");
});
</script>