var questionnaire = new VARKQuestionnaire();
var question = questionnaire.addQuestion( "You are helping someone who wants to go to your airport, town centre or railway station.  You would:" );
question.addResponse( 'draw, or give her a map.', 'V' );
question.addResponse( 'tell her the directions.', 'A' );
question.addResponse( 'write down the directions.', 'R' );
question.addResponse( 'go with her.', 'K' );

question = questionnaire.addQuestion( "You are not sure whether a word should be spelled `dependent' or `dependant'.  You would:" );
question.addResponse( "see the words in your mind and choose by the way they look.", 'V' );
question.addResponse( "think about how each word sounds and choose one.", "A" );
question.addResponse( "find it in a dictionary.", 'R' );
question.addResponse( "write both words on paper and choose one.", 'K' );

question = questionnaire.addQuestion( "You are planning a holiday for a group.  You want some feedback from them about the plan.  You would:" );
question.addResponse( "use a map or website to show them the places.", 'V' );
question.addResponse( "phone, text or email them.", 'A' );
question.addResponse( "give them a copy of the printed itinerary.", 'R' );
question.addResponse( "describe some of the highlights.", 'K' );

question = questionnaire.addQuestion( "You are going to cook something as a special treat for your family.  You would:" );
question.addResponse( "look through the cookbook for ideas from the pictures.", 'V' );
question.addResponse( "ask friends for suggestions.", 'A' );
question.addResponse( "use a cookbook where you know there is a good recipe.", 'R' );
question.addResponse( "cook something you know without the need for instructions.", 'K' );

question = questionnaire.addQuestion( "A group of tourists wants to learn about the parks or wildlife reserves in your area. You would:" );
question.addResponse( "show them internet pictures, photographs or picture books.", 'V' );
question.addResponse( "talk about, or arrange a talk for them about parks or wildlife reserves.", 'A' );
question.addResponse( "give them a book or pamphlets about the parks or wildlife reserves.", 'R' );
question.addResponse( "take them to a park or wildlife reserve and walk with them.", 'K' );

question = questionnaire.addQuestion( "You are about to purchase a digital camera or mobile phone.  Other than price, what would most influence your decision? " );
question.addResponse( "It is a modern design and looks good.", 'V' );
question.addResponse( "The salesperson telling me about its features.", 'A' );
question.addResponse( "Reading the details about its features.", 'R' );
question.addResponse( "Trying or testing it", 'K' );

question = questionnaire.addQuestion( "Remember a time when you learned how to do something new.  Try to avoid choosing a physical skill, eg. riding a bike.  You learned best by:" );
question.addResponse( "diagrams and charts - visual clues.", 'V' );
question.addResponse( "listening to somebody explaining it and asking questions.", 'A' );
question.addResponse( "written instructions – e.g.  a manual or textbook.", 'R' );
question.addResponse( "watching a demonstration.", 'K' );

question = questionnaire.addQuestion( "You have a problem with your heart.  You would prefer that the doctor:" );
question.addResponse( "showed you a diagram of what was wrong.", 'V' );
question.addResponse( "described what was wrong.", 'A' );
question.addResponse( "gave you something to read to explain what was wrong.", 'R' );
question.addResponse( "used a plastic model to show what was wrong.", 'K' );

question = questionnaire.addQuestion( "You want to learn a new program, skill or game on a computer.  You would:" );
question.addResponse( "follow the diagrams in the book that came with it.", 'V' );
question.addResponse( "talk with people who know about the program.", 'A' );
question.addResponse( "read the written instructions that came with the program.", 'R' );
question.addResponse( "use the controls or keyboard. ", 'K' );

question = questionnaire.addQuestion( "I like websites that have:" );
question.addResponse( "interesting design and visual features.", 'V' );
question.addResponse( "audio channels where I can hear music, radio programs or interviews.", 'A' );
question.addResponse( "interesting written descriptions, lists and explanations.", 'R' );
question.addResponse( "things I can click on, shift or try.", 'K' );

question = questionnaire.addQuestion( "Other than price, what would most influence your decision to buy a new non-fiction book?" );
question.addResponse( "The way it looks is appealing.", 'V' );
question.addResponse( "A friend talks about it and recommends it.", 'A' );
question.addResponse( "Quickly reading parts of it.", 'R' );
question.addResponse( "It has real-life stories, experiences and examples.", 'K' );

question = questionnaire.addQuestion( "You are using a book, CD or website to learn how to take photos with your new digital camera.  You would like to have:" );
question.addResponse( "diagrams showing the camera and what each part does.", 'V' );
question.addResponse( "a chance to ask questions and talk about the camera and its features.", 'A' );
question.addResponse( "clear written instructions  with lists and bullet points about what to do.", 'R' );
question.addResponse( "many examples of good and poor photos and how to improve them.", 'K' );

question = questionnaire.addQuestion( "Do you prefer a teacher or a presenter who uses:" );
question.addResponse( "diagrams, charts or graphs.", 'V' );
question.addResponse( "question and answer, talk, group discussion, or guest speakers.", 'A' );
question.addResponse( "handouts, books, or readings.", 'R' );
question.addResponse( "demonstrations, models or practical sessions.", 'K' );

question = questionnaire.addQuestion( "You have finished a  competition or test and would like some feedback.  You would like to have feedback:" );
question.addResponse( "using graphs showing what you had achieved.", 'V' );
question.addResponse( "from somebody who talks it through with you.", 'A' );
question.addResponse( "using a written description of your results.", 'R' );
question.addResponse( "using examples from what you have done.", 'K' );

question = questionnaire.addQuestion( "You are going to choose food at a restaurant or cafe.  You would:" );
question.addResponse( "look at what others are eating or look at pictures of each dish.", 'V' );
question.addResponse( "listen to the waiter or ask friends to recommend choices.", 'A' );
question.addResponse( "choose from the descriptions in the menu.", 'R' );
question.addResponse( "choose something that you have had there before.", 'K' );

question = questionnaire.addQuestion( "You have to make an important speech at a conference or special occasion. You would:" );
question.addResponse( "make diagrams or get graphs to help explain things.", 'V' );
question.addResponse( "write a few key words and practice saying your speech over and over.", 'A' );
question.addResponse( "write out your speech and learn from reading it over several times.", 'R' );
question.addResponse( "gather many examples and stories to make the talk real and practical.", 'K' );
