Moodle: Create a questionnaire | Ask Athena (2024)

  • Home
  • Moodle and Educational Technology
  • Moodle
  • Manage Activities

Last Modified on 08/15/2023 4:59 pm EDT

" + "

    "; var el, title, navLink, sectionID, sctn, headerNesting; // Grab all the H2s, H3s, H4s and turn them into TOC titles. // Define the heading levels you want to use in ascending order. // Can add additional headers or remove unneeded. $(".hg-article-body h2, .hg-article-body h3, .hg-article-body h4").each(function() { el = $(this); // Shorthand for the header itself title = el.text(); // The text we write in the editor for the header if (title != '') { // If the [title] is not blank... var anchorTitle, level; anchorTitle = el.text().replace(/([~!@"#$%^&*()_+=`{}\[\]\|\\:;'<>,.\/\? ])+/g, '-').toLowerCase().trim(); // Set all headers to a 0-nesting level. headerNesting = 'header-nesting-0'; // Adjust header-nesting layers so that they point to the correct html tag. // header-nesting-1 should match the second .hg-article-body h# listed above; // header-nesting-2 should match the third, etc. // li-h# classes are used to style the links per header level, independent of indentation. if ($(this).is('h2')) { level = 'li-h2'; } else if ($(this).is('h3')) { headerNesting = 'header-nesting-1'; level = 'li-h3'; } else if ($(this).is('h4')) { headerNesting = 'header-nesting-2'; level = 'li-h4'; } navLink = "#" + anchorTitle; newLine = "
  • " + "" + title + "" + "
  • "; ToC += newLine; // buttonID and buttonLink used for the 'Copy section link to clipboard' button, // as seen in the subsequent lines starting with el.html var buttonID, realURL, buttonLink; buttonID = anchorTitle + '-button'; // Build buttonLink: realURL = window.location.href; // Grab the page URL as seen in the address bar function cleanURL(URL) { // removes any current hash (#) anchor at the end of the URL if (URL.includes("#")) { let end = URL.search("#"); let washedURL = URL.slice(0, end); return washedURL; } else { return realURL; }; }; buttonLink = cleanURL(realURL) + navLink; el.html(''+ '

    '+el.html()+ ''+ '

    '); // Wrap
    elements with unique IDs around the header and its following elements, // up to the next header: // Append '-section' to create a unique identifier for the sections we are defining. sectionID = anchorTitle + '-section'; // .nextUntil() selects all the sibling elements (elements with the same parent) // after the header, until the next header (':header'). // .add() adds additional elements to the selected pool, in this case the header // itself. // .wrapAll() surrounds the group of selected elements with the specified HTML. el.nextUntil(':header').add(el).wrapAll(""); } }); // Take the ToC created above and add /ul, /nav, and /div to close its constituent elements, // setting the complete ToC as all of it together. ToC += "

" + "" + "

"; // Add the complete ToC to the page above (before) this script. $("#snippet-prepend").before(ToC); /* Junk attempt to adjust the scroll of the toc: var topPad = $('#nav-column').css('top'); var navColumnH = $('#nav-column').height() - topPad; $('#nav-column').css('height', 'navColumnH');// navColumnH -= topPad;// $('#nav-column').height({// $('#nav-column').height() - 80;// });// var navColumnH = $('#nav-column').height();// var navBlockH = navColumnH - 80;// $('#nav-block').height(navBlockH); */ // ---- TIPPY ---- // // Tippy tutorial content: https://tippyjs.bootcss.com/creating-tooltips/ // Create tippyTextAttribute plugin to handle setting the content of the tippy instance: // Necessary to cleanly pass the content from the specific instance's reference to the // initializing script. See the Plugins and FAQ sections of above docs for details. const tippyTextAttribute = { name: 'tippyTextAttribute', defaultValue: true, fn() { return { // onShow() effectively resets the content of the tooltip each time it is triggered // to be shown. Allows simple functionality to keep the "Copied! message (written // below in the on('click') function) as long as it is in focus instead of // automatically resetting after a set amount of time. onShow(instance) { if (!instance.props.tippyTextAttribute) { return; } const tippyText = instance.reference.getAttribute('tippy-text'); if (tippyText) { instance.setContent(tippyText); } } }; } }; // Settings for clipboard-button tooltip: tippy(".clipboard-button", { allowHTML: true, // HTML instead of just a text string placement: 'top', // Appear above button hideOnClick: "toggle", // Don't immediately disappear when mouse is removed distance: 9, // Pixel distance from top border of button theme: 'owlbert', // Custom theme; see Tippy CSS section tippyTextAttribute: true, // Generate tooltip based on an attribute [double check] plugins: [tippyTextAttribute], // Enable above }); // On clicking the button, copy the "clipboard-link" to the clipboard and // set the tippy to show "Copied!" message: $(document).on("click", ".clipboard-button", function () { // On click of clipboard button, do: var button = $(this) // button = the button clicked var copyText = button.attr("clipboard-link"); // Simplify code: set link URL as var navigator.clipboard.writeText(copyText); // Copy URL to PC clipboard this._tippy.setContent('Copied!'); // Make the tooltip show 'Copied' // Overwrite the HTML within the clipboard button (replacing the old icon with check icon): button.html(''); // Set the time before the resetClipTip function (below) is run clipboard-check icon resets to original clipboard icon: setTimeout(resetClipTip, 3000); // delay: 3000ms (3 seconds) function resetClipTip() { // Define the resetClipTip function // Overwrite the button's HTML with the original check-less clipboard icon: button.html(''); }; }); });

The Moodle Questionnaireactivity allows you to survey Moodle course participants for the purpose of gathering information. Questions do not have a “right” answer (as they must in Quiz), and responses can be anonymous or identified, and can optionally be displayed to students.

Questionnaireis useful for gathering biographical or diagnostic information from students at the start of a course, gathering student feedback, and metacognitive self-reflection or gathering ideas or review questions from students. Many paper-based Classroom Assessment Techniques can be adapted as Questionnaire activities, and you can set up the questionnaire so that students periodically reply (e.g., daily or weekly) to collect responses over time. You can save and/or publish a Questionnaire you’ve created as a template so that you and/or colleagues can adopt it across multiple courses. Our educational technologists are happy to help you design or adapt questionnaires to meet your pedagogical needs.

Before you start, you may need the following:

  • an Instructor of Record or Other Editing Teacherrole in a Bryn Mawr Moodle course.

Create a questionnaire activity

  1. In your Moodle course, toggle Edit mode on.
  2. Go to the section in your course where you would like the questionnaire to be and click on +Add an activity or resource, and select Questionnaire.
  3. Give the Questionnaire a Nameand (optionally)a Description.
  4. You can optionally use the standard Availability, Activity Completion, and Restrict Access settings to control when the Questionnaire is available and/or whether students must complete it before they can access other activities.
  5. Adjust the Response Optionsto control how the questionnaire works:
    • Type: The default is “respond many”; change this if you want to limit students to responding once or daily, weekly, or monthly.
    • Respondent Type: Default is “fullname”; change to “anonymous” if you do not want students' names associated with their responses.
    • Students can view ALL responses: Default is "After answering the questionnaire"; change to “never” if you don’t want students to see each others’ responses. Other choices control when responses are revealed — for example, if you are using a questionnaire to solicit potential review or exam questions from students, you might want to choose “always” so they can see what others have already submitted and avoid duplicates.
    • Send submission notifications:Default is no; adjust if you want to receive a notice or full copy of the response via message/email when someone submits.
    • Save/Resume answers: Default is “no”; consider changing to “yes” for long surveys or surveys with short answer responses so that respondents can save their progress as they go.
    • Allow branching questions: Default is “no”; change if you want to have students elaborate on answers yes/no or multiple choice questions.
    • Autonumbering: Default is “autonumber pages and questions”; consider turning it off if you allow branching questions.
    • Submission grade: Default is “no grade”; change to give students a fixed number of points for submitting responses as an incentive.
  6. The Content options settings control where the questions on the activity come from. Create new is the default, or you can choose an existing Questionnaire as a template.

  7. Click Save and Displaywhen you are finished.

Attention:“Public” questionnaires collect data from students across multiple courses. Responses from all courses are collected into a single questionnaire, and visible to the questionnaire’s creators in the course where it was created.

Add questions and view responses

The Questionnaire interface is very similar to the Quiz interface. In a new, blank questionnaire you will be prompted to add questions, but in all other cases, when you click on the Questionnaire activity you will see several tabs:

  • Advanced settings. Save a questionnaire as a template or make it public to collect data for students in multiple courses (Moodle Docs on creating a questionnaire).
  • Questions. Add, edit, and reorder the questions in your questionnaire. There is a drop-down menu to choose different types of questions to add to your questionnaire. Once you add questions you can configure them in them under 'Manage questions'.
  • Preview. See what the questionnaire looks like for respondents.
  • Your responses. Hidden until the viewer has responded to the survey.
  • All responses. Hidden until someone responds, then visible to Teachers and to Students only if and when you’ve allowed this with the Students can view all responses setting described above. Responses can be displayed in several ways:
    • Summary: View the aggregated responses for each question.
    • List of responses: View all responses as a table, alphabetized by last name if non-anonymous. Mouse over a response to see the time stamp (useful for questionnaires that can be answered more than once, and click on the respondent’s name to see their responses individually. Use the Download in text format to export all responses as a CSV file you can open in Excel or other spreadsheet or statistical software.
    • View individual responses: View all responses an individual gave on a single page.
  • Show non-respondents.Visible to Teachers only, this tab lists all participants who haven’t responded, with the option to send them a reminder message.

Videos & Further Reading on Questionnaires

Questions?

If you have any additional questions or problems, don't hesitate to reach out to the Help Desk!

Phone: 610-526-7440 | Library and Help Desk hours
Email: [email protected] |Service catalog
Location: Canaday Library 1st floor

Related Articles

  • Moodle: Create and grade Quizzes

  • Moodle: Set up a course gradebook

  • Zoom: Create meetings

  • Moodle: Create checklists for students

  • Moodle: Create and manage assignments

Moodle: Create a questionnaire | Ask Athena (1)

Thank you! Your feedback has been submitted.

    Moodle: Create a questionnaire | Ask Athena (2024)

    FAQs

    How to create a questionnaire in Moodle? ›

    Create a questionnaire activity
    1. In your Moodle course, toggle Edit mode on.
    2. Go to the section in your course where you would like the questionnaire to be and click on +Add an activity or resource, and select Questionnaire.
    3. Give the Questionnaire a Name and (optionally) a Description.
    Aug 15, 2023

    How do I Create an interactive quiz in Moodle? ›

    How to Create a Moodle Quiz: Step-by-Step Guide
    1. Step 1: Create a New Course. ...
    2. Step 2: Add and Set Up a Quiz. ...
    3. Step 3: Create Tasks for Assessment. ...
    4. Step 4: Open a Question Bank. ...
    5. Step 1: Choose a Question Type. ...
    6. Step 2: Add Feedback. ...
    7. Step 3: Protect From Cheating. ...
    8. Step 4: Configure Quiz Design.
    Sep 2, 2023

    How to create a question bank for Moodle? ›

    Create Questions in Moodle
    1. Click on More at the top of your course and select Question Bank.
    2. On the following page, in the Question bank section, select Questions.
    3. Select the category that you want to add the question to, then click Create a new question. ...
    4. Select the question type that you want to create and click Add.
    Aug 6, 2024

    How do you Create a simple questionnaire? ›

    The following 6 tips will help you create the perfect questionnaire:
    1. 1) Use 10 Questions or Less. The shorter you keep your survey, the higher your completion rates. ...
    2. 2) One Idea Per Question. ...
    3. 3) Group Similar Questions Together. ...
    4. 4) Use Skip/Display Logic. ...
    5. 5) Use Research Questions Like MaxDiff. ...
    6. 6) Keep the Audience in Mind.

    How do I Create a questionnaire form? ›

    In the My forms tab, select New Form or New Quiz. Name your form and give it a description. Select Add Question and choose the type of question you want to add. Select Preview to see how your form will look on a computer or mobile device.

    How do I create a multiple choice question in Moodle? ›

    In the Administration block, click Question Bank then click Questions. Click Create a new question. Select Multiple Choice from the sidebar at the left, then click Add at the bottom.

    What are the different types of surveys in Moodle? ›

    The Survey activity in Moodle provides a set of verified surveys that are useful to assess and stimulate online learning. The surveys include COLLES (Constructivist On-Line Learning Environment Survey) and ATTLS (Attitudes to Thinking and Learning Survey) set ups.

    How do I create a custom survey? ›

    Launch Canva and search for “Survey” to make your own survey.
    1. Choose a survey template. Browse our survey templates and choose a format that best fits your research purposes. ...
    2. Add your survey questions. Edit the template and add your survey questions. ...
    3. Personalize your survey template. ...
    4. Download, print, or share.

    How do I add quiz questions to Moodle? ›

    Creating a new question

    1. To make a brand new question, click 'Add' and then '+ a new question'. 2. From the next screen, choose the question type you want to add and click "Next" ('When you click on a question type on the left, helpful information appears on the right. )

    How do I make Moodle more interactive? ›

    Moodle allows you to add multimedia elements such as videos, images, and audio to your courses. By incorporating these elements, you can make your courses more engaging and interactive. For example, you can use videos to introduce new concepts, images to illustrate key points, and audio to provide audio instructions.

    How do I Create a survey questionnaire in Moodle? ›

    How is it set up?
    1. In a course, with the editing turned on, choose 'Survey' from the activity chooser.
    2. Give it a name and, from the dropdown, choose your Survey type. Click the question mark ? ...
    3. Add a description if required.
    4. Expand the other sections to select the settings you need.
    5. Click Save and return to course.
    Feb 20, 2024

    How do I Create a FAQ in Moodle? ›

    Embed FAQ on Moodle
    1. Create a FAQ widget for Moodle on Common Ninja. ...
    2. Save the FAQ widget. ...
    3. Copy the FAQ Embed Code. ...
    4. Paste the code to your Moodle website's HTML field. ...
    5. Alternative Method 1: Through the HTML option in the text's editing area. ...
    6. Alternative Method 2: Add it directly to your Moodle website's HTML code.

    How do I Create a multiple choice question in Moodle? ›

    In the Administration block, click Question Bank then click Questions. Click Create a new question. Select Multiple Choice from the sidebar at the left, then click Add at the bottom.

    How do you Create a user questionnaire? ›

    Best practices for user surveys
    1. Use plain, neutral language. ...
    2. Mix up your question types. ...
    3. Add open-field responses. ...
    4. Ask one thing at a time. ...
    5. Keep your questionnaire short and focused. ...
    6. Be specific. ...
    7. Keep an eye on question order. ...
    8. Let people skip questions.

    How do I add a question to my Moodle quiz? ›

    1. Choose the type of question you want to add and then click 'Add' at the bottom:
    2. Add your question. ...
    3. Cick Save changes and repeat the steps for as many questions as you need.
    4. Click 'Save changes' when you have made your question.
    5. If you want, change the maximum grade for your quiz to reflect the number of questions.
    Jul 6, 2024

    Top Articles
    ClearScore Updates: Frequency and Timing Insights
    Manage two-factor authentication for your Apple ID from iPod touch
    Cpmc Mission Bernal Campus & Orthopedic Institute Photos
    Kostner Wingback Bed
    Umbc Baseball Camp
    Star Sessions Imx
    Alan Miller Jewelers Oregon Ohio
    Category: Star Wars: Galaxy of Heroes | EA Forums
    Palace Pizza Joplin
    Weather Annapolis 10 Day
    Anki Fsrs
    How To Delete Bravodate Account
    Wnem Radar
    Turning the System On or Off
    Craigslist Alabama Montgomery
    Shreveport Active 911
    Steamy Afternoon With Handsome Fernando
    Nashville Predators Wiki
    Video shows two planes collide while taxiing at airport | CNN
    H12 Weidian
    All Obituaries | Gateway-Forest Lawn Funeral Home | Lake City FL funeral home and cremation Lake City FL funeral home and cremation
    [PDF] PDF - Education Update - Free Download PDF
    Del Amo Fashion Center Map
    Pawn Shop Moline Il
    Kempsville Recreation Center Pool Schedule
    Craigslist Dallastx
    Obsidian Guard's Skullsplitter
    The 38 Best Restaurants in Montreal
    SOC 100 ONL Syllabus
    Elgin Il Building Department
    Chuze Fitness La Verne Reviews
    Regis Sectional Havertys
    Craigslist Summersville West Virginia
    Duff Tuff
    Geology - Grand Canyon National Park (U.S. National Park Service)
    Gary Lezak Annual Salary
    968 woorden beginnen met kruis
    SF bay area cars & trucks "chevrolet 50" - craigslist
    Www.craigslist.com Waco
    Tgirls Philly
    844 386 9815
    Babykeilani
    The Nikki Catsouras death - HERE the incredible photos | Horror Galore
    Port Huron Newspaper
    Noga Funeral Home Obituaries
    Cara Corcione Obituary
    Marcel Boom X
    Egg Inc Wiki
    Immobiliare di Felice| Appartamento | Appartamento in vendita Porto San
    Morgan State University Receives $20.9 Million NIH/NIMHD Grant to Expand Groundbreaking Research on Urban Health Disparities
    Latest Posts
    Article information

    Author: Edmund Hettinger DC

    Last Updated:

    Views: 5712

    Rating: 4.8 / 5 (78 voted)

    Reviews: 85% of readers found this page helpful

    Author information

    Name: Edmund Hettinger DC

    Birthday: 1994-08-17

    Address: 2033 Gerhold Pine, Port Jocelyn, VA 12101-5654

    Phone: +8524399971620

    Job: Central Manufacturing Supervisor

    Hobby: Jogging, Metalworking, Tai chi, Shopping, Puzzles, Rock climbing, Crocheting

    Introduction: My name is Edmund Hettinger DC, I am a adventurous, colorful, gifted, determined, precious, open, colorful person who loves writing and wants to share my knowledge and understanding with you.