var questionnaire = new VARKQuestionnaire();
var question = questionnaire.addQuestion( "I like websites that have:" );
question.addResponse( 'interesting design and visual effects.', 'V' );
question.addResponse( 'audio channels for music, chat and discussion.', 'A' );
question.addResponse( 'interesting information and articles in print.', 'R' );
question.addResponse( 'things I can click on and do.', '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 how they look.", 'V' );
question.addResponse( "hear them  in your mind or out loud.", "A" );
question.addResponse( "find them in the dictionary.", 'R' );
question.addResponse( "write both words on paper and choose one.", 'K' );

question = questionnaire.addQuestion( "You want to plan a surprise party for a friend. You would:" );
question.addResponse( "imagine the party happening.", 'V' );
question.addResponse( "talk about it on the phone or text others.", 'A' );
question.addResponse( "make lists of what to do and what to buy for the party.", 'R' );
question.addResponse( "invite friends and just let it happen.", 'K' );

question = questionnaire.addQuestion( "You are going to make something special for your family. You would:" );
question.addResponse( "look for ideas and plans in books and magazines.", 'V' );
question.addResponse( "talk it over with your friends.", 'A' );
question.addResponse( "find written instructions to make it.", 'R' );
question.addResponse( "make something you have made before.", 'K' );

question = questionnaire.addQuestion( "You have been selected as a tutor or a leader for a holiday program. This is interesting for your friends. You would:" );
question.addResponse( "show them the map of where it will be held and photos about it.", 'V' );
question.addResponse( "describe the activities you will be doing in the program.", 'A' );
question.addResponse( "show them the list of activities in the program.", 'R' );
question.addResponse( "start practising the activities you will be doing in the program.", 'K' );

question = questionnaire.addQuestion( "You are about to buy a new digital camera or mobile phone. Other than price, what would most influence your decision?" );
question.addResponse( "It is the latest design and looks good.", 'V' );
question.addResponse( "The salesperson telling you about it.", 'A' );
question.addResponse( "Reading the details about its features.", 'R' );
question.addResponse( "Trying it.", 'K' );

question = questionnaire.addQuestion( "Remember when you learned how to play a new computer or board game. You learned best by:" );
question.addResponse( "clues from the diagrams in the instructions.", 'V' );
question.addResponse( "listening to somebody explaining it and asking questions.", 'A' );
question.addResponse( "reading the instructions.", 'R' );
question.addResponse( "watching others do it first.", 'K' );

question = questionnaire.addQuestion( "After reading a play you need to do a project. Would you prefer to:?" );
question.addResponse( "draw or sketch something that happened in the play.", 'V' );
question.addResponse( "read a speech from the play.", 'A' );
question.addResponse( "write about the play.", 'R' );
question.addResponse( "act out a scene from the play.", 'K' );

question = questionnaire.addQuestion( "You are about to hook up your parent’s new computer. You would:" );
question.addResponse( "follow the diagrams that show how it is done.", 'V' );
question.addResponse( "phone, text or email a friend and ask how to do it.", 'A' );
question.addResponse( "read the instructions that came with it.", 'R' );
question.addResponse( "unpack the box and start putting the pieces together.", 'K' );

question = questionnaire.addQuestion( "You need to give directions to go to a house nearby. You would:" );
question.addResponse( "draw a map on a piece of paper or get a map online.", 'V' );
question.addResponse( "tell them the directions.", 'A' );
question.addResponse( "write down the directions as a list.", 'R' );
question.addResponse( "walk with them.", 'K' );

question = questionnaire.addQuestion( "You have a problem with your knee. Would you prefer that the doctor:" );
question.addResponse( "showed you a diagram of what was wrong.", 'V' );
question.addResponse( "described to you what was wrong", 'A' );
question.addResponse( "gave you an article or brochure that explained knee injuries.", 'R' );
question.addResponse( "demonstrated what was wrong using a model of a knee.", 'K' );

question = questionnaire.addQuestion( "A new movie has arrived in town. What would most influence your decision to go (or not go)?" );
question.addResponse( "you see a preview of it.", 'V' );
question.addResponse( "you hear friends talking about it.", 'A' );
question.addResponse( "you read what others say about it online or in a magazine.", 'R' );
question.addResponse( "it is similar to others you have liked.", 'K' );

question = questionnaire.addQuestion( "Do you prefer a teacher who likes to use:" );
question.addResponse( "an overview diagram, charts, labelled diagrams and maps.", 'V' );
question.addResponse( "class discussions, online discussion, online chat and guest speakers.", 'A' );
question.addResponse( "a textbook and plenty of handouts.", 'R' );
question.addResponse( "field trips, case studies, videos,  labs and hands-on practical sessions.", 'K' );

question = questionnaire.addQuestion( "You are learning to take photos with your new digital camera or mobile phone.  You would like to have:" );
question.addResponse( "diagrams showing the camera and how to use it.", 'V' );
question.addResponse( "a chance to ask questions and talk about the camera’s features.", 'A' );
question.addResponse( "clear written instructions with lists and bullet points.", 'R' );
question.addResponse( "examples of good and poor photos and how to improve them.", 'K' );

question = questionnaire.addQuestion( "You want some feedback about an event, competition or test. You would like to have feedback:" );
question.addResponse( "that used graphs showing what you achieved.", 'V' );
question.addResponse( "from somebody who discussed it with you.", 'A' );
question.addResponse( "that used a written description or table of your results.", 'R' );
question.addResponse( "that used examples of what you have done.", 'K' );

question = questionnaire.addQuestion( "You have to  present your ideas to your class. You would:" );
question.addResponse( "make diagrams or get graphs to help explain your ideas.", 'V' );
question.addResponse( "write a few key words and practice what to say again and again.", 'A' );
question.addResponse( "write out your speech and learn it by reading it again and again. ", 'R' );
question.addResponse( "gather examples and stories to make it real and practical.", 'K' );