Re: How to unhide correct answers on Canvas quizzes? (2024)

Skip to main content

Learn about Community

Sign In

You're signed out

Sign in to ask questions, follow content, and engage with the Community

Sign In

'; hoverCardInner.innerHTML = loadingHTML.repeat(4); hoverCardContainer.classList.add('profile-hover-card-show'); // Extract information from the image element const titleField = avatar.getAttribute('title'); const userInfoUrl = `https://${mainURL}/api/2.0/search?q=SELECT first_name, last_name, login, view_href, rank, topics, solutions_authored, id, email FROM users WHERE login = '${titleField}'`; const userPostsUrl = `https://${mainURL}/api/2.0/search?q=SELECT count(*) FROM messages WHERE author.login = '${titleField}'`; const userSolutionsUrl = `https://${mainURL}/api/2.0/search?q=SELECT count(*) FROM messages WHERE author.login = '${titleField}' AND is_solution = true`; const userBadgesUrl = `https://${mainURL}/api/2.0/search?q=SELECT user_badges from users where login = '${titleField}'`; // Fetch user information async function createProfileData() { const userInfo = await fetch(userInfoUrl); const userPosts = await fetch(userPostsUrl); const userSolutions = await fetch(userSolutionsUrl); const userBadges = await fetch(userBadgesUrl); const userInfoData = await userInfo.json(); const userPostsData = await userPosts.json(); const userSolutionsData = await userSolutions.json(); const userBadgesData = await userBadges.json(); const userBadgesArray = userBadgesData.data.items[0].user_badges.items; const earnedBadgesArray = userBadgesArray.filter(badge => badge.earned_date); earnedBadgesArray.sort((a, b) => new Date(b.earned_date) - new Date(a.earned_date)); const userRankName = userInfoData.data.items[0].rank.name; const userID = userInfoData.data.items[0].id; // const userKudosUrl = `https://${mainURL}/restapi/vc/users/id/${userID}/metrics/name/net_kudos_events_received?restapi.response_format=json`; const userKudos = await fetch(userKudosUrl); const userKudosData = await userKudos.json(); let fullName = userInfoData.data.items[0].login; if (userInfoData.data.items[0].first_name !== undefined && userInfoData.data.items[0].last_name !== undefined) { let firstName = userInfoData.data.items[0].first_name; let lastName = userInfoData.data.items[0].last_name; fullName = firstName + " " + lastName; } else { fullName = userInfoData.data.items[0].login; } let userRankIcon = ""; if (userInfoData.data.items[0].rank.icon_left !== undefined) { userRankIcon = userInfoData.data.items[0].rank.icon_left; } else { userRankIcon = ""; } let userEmail = ""; // <#if user_has_role> if (userInfoData.data.items[0].email !== undefined) { userEmail = userInfoData.data.items[0].email; } else { userEmail = ""; } // <#else> userEmail = ""; // #if> const userViewHref = userInfoData.data.items[0].view_href; const userPostsCount = userPostsData.data.count; const userSolutionsCount = userSolutionsData.data.count; const userKudosCount = userKudosData.response.value.$; const userBadgesCount = earnedBadgesArray.length; let badgesHTML = ""; if (earnedBadgesArray.length === 0) { badgesHTML = `

This user hasn't earned any badges yet.

`; } else { for (let i = 0; i < earnedBadgesArray.length; i++) { const badgeName = earnedBadgesArray[i].badge.title; const badgeIcon = earnedBadgesArray[i].badge.icon_url; const badgeHTML = `

Re: How to unhide correct answers on Canvas quizzes? (12)

`; badgesHTML += badgeHTML; if (i >= 4) { break; } }; } const hoverCardHTML = `

${fullName}

Re: How to unhide correct answers on Canvas quizzes? (13)${userRankName}

${userEmail}

${badgesHTML}

${userPostsCount} posts ${userKudosCount} likes ${userSolutionsCount} solutions

`; // // Display the hover card return hoverCardHTML; } if (hoverCardInner.innerHTML.includes('loading-box')) { createProfileData().then((hoverCardHTML) => { hoverCardInner.innerHTML = hoverCardHTML; }); } } }); //Hide the hover card on mouseout avatar.addEventListener('mouseout', () => { const hoverCardContainer = avatar.nextElementSibling; hoverCardContainer.classList.remove('profile-hover-card-show'); }); hoverCardInner.addEventListener('mouseout', () => { const hoverCardContainer = avatar.nextElementSibling; hoverCardContainer.classList.remove('profile-hover-card-show'); }); hoverCardInner.addEventListener('mouseover', () => { const hoverCardContainer = avatar.nextElementSibling; hoverCardContainer.classList.add('profile-hover-card-show'); }); }); });

Turn on suggestions

Auto-suggest helps you quickly narrow down your search results by suggesting possible matches as you type.

Showing results for

Showonly | Search instead for

Did you mean:

  • Community
  • Canvas
  • Canvas LMS
  • Canvas Question Forum
  • Re: How to unhide correct answers on Canvas quizze...

Options

  • Subscribe to RSS Feed
  • Mark Topic as New
  • Mark Topic as Read
  • Float this Topic for Current User
  • Bookmark
  • Subscribe
  • Mute
  • Printer Friendly Page

`; const toolTip = document.createElement('div'); toolTip.classList.add('like-button-tooltip'); toolTip.innerHTML = toolTipCode; likeButton.appendChild(toolTip); } document.addEventListener('DOMContentLoaded', function () { const likeButton = document.querySelector('.lia-button-image-kudos'); const likeButtonLink = document.querySelector('.kudos-link'); let likeDismissCookie = localStorage.getItem("inst_comm_like_dismiss"); if (!likeDismissCookie) { localStorage.setItem("inst_comm_like_dismiss", "-1"); loginDate = -1; } if (likeDismissCookie !== "-1") { // toolTip.style.display = 'none'; const storedTime = new Date(parseInt(loginDate)); const currentTime = new Date(); if (storedTime.getTime() < currentTime.getTime()) { localStorage.setItem("inst_comm_like_dismiss", "-1"); } } else { createToolTip(likeButton, likeButtonLink); const toolTip = document.querySelector('.like-button-tooltip'); const toolTipClose = document.querySelector('.like-button-tooltip-close'); const observer = new IntersectionObserver(entries => { entries.forEach(entry => { if (entry.isIntersecting) { toolTip.style.display = 'block'; setTimeout(() => { toolTip.style.opacity = '1'; }, 2000); // toolTip.style.animationName = 'toolTipFlash'; // Stop observing once elementOne is visible observer.unobserve(likeButton); } }); }); // Start observing elementTwo observer.observe(likeButton); likeButtonLink.addEventListener('click', () => { toolTip.style.display = 'none'; }); if (toolTipClose) { toolTipClose.addEventListener("click", function () { const now = new Date(); const fourteenDays = new Date(now.getTime() + 14 * 24 * 60 * 60 * 1000); // Adding 24 hours in milliseconds const epochTime = fourteenDays.getTime(); // Getting the epoch time in milliseconds localStorage.setItem("inst_comm_like_dismiss", epochTime); toolTip.style.display = 'none'; }); } setTimeout(() => { toolTip.style.opacity = '0'; setTimeout(() => { toolTip.style.display = 'none'; }, 500); // Fade out duration (0.5 seconds) + delay (0.5 seconds) = 1 second }, 15000); // Hide after 10 seconds (including 2-second fade-in delay) } });

How to unhide correct answers on Canvas quizzes?

Jump to solution

Re: How to unhide correct answers on Canvas quizzes? (14)

rollok29

Community Novice

  • Mark as New
  • Bookmark
  • Subscribe
  • Mute
  • Subscribe to RSS Feed
  • Permalink
  • Print
  • Report Inappropriate Content

‎07-22-202310:50 PM

Hi there! I have a professor that has been giving us weekly quizzes. He sent a message telling us to study the questions because they will be on our midterm & finals. The issue is, some of the students can see the correct answers to the quiz by finding them through a backgate-way (they have to do it on the app, they click the quiz through the grade section, and then click on "submission & rubric"), but that only works for some students. For others, like myself, it says "correct answers are hidden".

What are all the ways that you might be able to see the correct answers, when they're hidden in other ways on canvas? Obviously they're available somewhere, since others are able to see them. I need to find a way to unhide these answers so that I can study for the midterm and final.

Solved!Go to Solution.

Labels (2)

Labels

  • Labels:
  • Canvas

  • Canvas Mobile

I also have this question

1 Solution

Jump to solution

Re: How to unhide correct answers on Canvas quizzes? (15)

julian_ebeli

Community Participant

  • Mark as New
  • Bookmark
  • Subscribe
  • Mute
  • Subscribe to RSS Feed
  • Permalink
  • Print
  • Report Inappropriate Content

‎07-23-202306:53 PM

Hi @rollok29

Quizzes new has some options for showing the answers.

Go to the quiz and choose Build then settings

There is a section "Restrict student result view"

You can play around with the options

Re: How to unhide correct answers on Canvas quizzes? (16)

View solution in original post

This reply answered my question

1Like

  • All forum topics
  • Previous Topic
  • Next Topic

5 Replies

Jump to solution

Re: How to unhide correct answers on Canvas quizzes? (17)

julian_ebeli

Community Participant

  • Mark as New
  • Bookmark
  • Subscribe
  • Mute
  • Subscribe to RSS Feed
  • Permalink
  • Print
  • Report Inappropriate Content

‎07-23-202306:53 PM

Hi @rollok29

Quizzes new has some options for showing the answers.

Go to the quiz and choose Build then settings

There is a section "Restrict student result view"

You can play around with the options

Re: How to unhide correct answers on Canvas quizzes? (18)

This reply answered my question

1Like

Jump to solution

Re: How to unhide correct answers on Canvas quizzes? (19)

Re: How to unhide correct answers on Canvas quizzes? (20)Chris_Hofer

Community Coach

In response to julian_ebeli

  • Mark as New
  • Bookmark
  • Subscribe
  • Mute
  • Subscribe to RSS Feed
  • Permalink
  • Print
  • Report Inappropriate Content

‎07-23-202307:49 PM

@julian_ebeli...

After reading@rollok29's question, it appears Kyla is a student, not an instructor. You've shared a screenshot of settings that can be configured from an instructor's perspective...not a student's point of view. Therefore, Kyla cannot play around with these options.

0Likes

Jump to solution

Re: How to unhide correct answers on Canvas quizzes? (21)

Re: How to unhide correct answers on Canvas quizzes? (22)RecycledElectro

Community Coach

In response to Chris_Hofer

  • Mark as New
  • Bookmark
  • Subscribe
  • Mute
  • Subscribe to RSS Feed
  • Permalink
  • Print
  • Report Inappropriate Content

‎11-23-202301:41 PM

Kyla may need to ask her instructor to allow her to see the correct answers to the quiz.

I suggest she email her instructor with a screen shot or two of what she sees, explain the issue, and include a link to this discussion.

0Likes

Jump to solution

Re: How to unhide correct answers on Canvas quizzes? (23)

GabrielMiguel

Community Novice

In response to julian_ebeli

  • Mark as New
  • Bookmark
  • Subscribe
  • Mute
  • Subscribe to RSS Feed
  • Permalink
  • Print
  • Report Inappropriate Content

‎11-23-202305:35 AM

where is it

0Likes

Jump to solution

Re: How to unhide correct answers on Canvas quizzes? (24)

Re: How to unhide correct answers on Canvas quizzes? (25)ColtonSwapp

Instructure

  • Mark as New
  • Bookmark
  • Subscribe
  • Mute
  • Subscribe to RSS Feed
  • Permalink
  • Print
  • Report Inappropriate Content

‎08-03-202312:54 PM

Hello@rollok29

Thanks for posting about this in the Canvas Community!

I just wanted to reply to this post you made and let you know you would need to have your instructor reconfigure the settings of all the quizzes you are trying to view the correct answers for. You as a student, don't have the ability to adjust these settings due to your permissions in the course.

If your instructor needs help getting those settings reconfigured, they are totally welcome to reach out to Canvas support for further assistance.

Sorry for the confusion on this. Hopefully this helps!

-Colton

1Like

Re: How to unhide correct answers on Canvas quizzes? (26)

Unanswered Topics

  • Home screen all white without tasks appearing in t...

  • Are there any assessment design PD courses specifi...

  • Groups

  • How and Where to host React for multiple partners

  • change default email

View All

Latest Topics

  • Home screen all white without tasks appearing in t...

  • What happens to students assessments if I remove o...

  • Find rubrics

  • Assigning point values to each part of fill-in mul...

  • Making webp logo for my website

View All

View our top guides and resources:

Find My Canvas URL Help Logging into Canvas Generate a Pairing Code Canvas Browser and Computer Requirements Change Canvas Notification Settings Submit a Peer Review Assignment

To participate in the Instructurer Community, you need to sign up or log in:

Sign In

Re: How to unhide correct answers on Canvas quizzes? (2024)

FAQs

How do you let students see the correct answers on canvas quizzes? ›

After the Until date or when all exams are taken, the instructor can go into settings and check the box to "Let Students See Their Quiz Responses (Incorrect Questions Will Be Marked in Student Feedback)", and "Let Students See The Correct Answers" and choose dates.

How to hide correct answers in canvas quiz? ›

Select the desired course.
  1. Find the desired quiz by going to the Quizzes tab.
  2. Click the three dots next to the desired quiz and select Edit.
  3. Scroll down to the Hide Correct Answers at field and select the date you would like for students to no longer be able to access the correct answers at.
Feb 21, 2024

How do I change the correct answer in a canvas quiz? ›

In this guide:
  1. Open Quizzes.
  2. Edit Quiz.
  3. Open Questions Tab.
  4. Edit Multiple Choice Question.
  5. Select New Correct Answer.
  6. Select Regrade Option.
  7. Update Question.
  8. Save Quiz.

Can Canvas detect cheating? ›

Through the Quiz Log function, the system will detect when the person taking the online test opens a new tab or browser, recording and reporting any suspicious action. Canvas can also avert cheating by locking the browser during the exam. Canvas tracks the time spent by the student on each question.

How do I recover my canvas answers? ›

Click Settings in your Canvas course menu.
  1. Click Restore Deleted Items.
  2. Click Restore next to the item you wish to bring restore.

How do I unhide quiz grades in canvas? ›

Unhiding Grades in Classic Quiz – two options
  1. Find the quiz in the grade book.
  2. Click on the crossed-out eye.
  3. Click Post Grades – 3 optionsPost all grades.
  4. Post only those that are graded.
  5. Post by sections.
  6. Click Post.
  7. Grades are now visible to the students.

Can you hide quiz results in canvas? ›

Canvas does not allow you to hide/show grade columns. Instead, you decide whether to (1) hide/ show scores currently held in the column and (2) whether to hide/show future scores. These are two separate decisions. It is possible for a column to contain both hidden and showing scores!

Can you have two correct answers in a canvas quiz? ›

Multiple Answers questions can have more than one correct answer. Hover your cursor to the left of any answer to reveal a green "ghost" arrow.

Can you edit canvas responses? ›

If your instructor allows, you can edit and delete your own discussion posts. If the edit or delete option does not appear, your instructor has restricted this setting in your course.

Can you redo quizzes on canvas? ›

Some instructors will allow you to retake a quiz. The quiz will show you if you are allowed more attempts. Note: Your instructor may be using an upgraded quiz tool called New Quizzes in your course. If the quiz you are accessing displays differently, your instructor may be using New Quizzes.

How do I see hidden scores on canvas? ›

How to show grades
  1. Go to your Canvas Gradebook.
  2. Select the 3 dot icon at the top of the assignment column (See Fig. ...
  3. Select Post Grades (See Fig. ...
  4. A red dot will appear next to those grades that are currently hidden.
  5. Change the option to Graded (See Fig.
Apr 3, 2023

How do I see anonymous survey answers on canvas? ›

Click a course card to access that course.
  1. Click Quizzes in the Course Navigation Menu.
  2. Click the name of the survey.
  3. Click the Options icon, and click the Show Student Survey Results link to view individual submissions.
  4. Click on an anonymous student to see that student's response. ...
  5. The student's response will appear.
Dec 16, 2022

Can students see comments when grades are hidden in canvas? ›

When grades are hidden, students cannot see any assignment grades, instructor comments or grade change notifications. Students can view the submitted assignment or re-submit if necessary, even when grades are hidden. However, students are not able to view their quiz responses, if quiz grades are hidden.

How to see a locked quiz on Canvas? ›

To unlock a quiz on canvas follow the following simple steps:
  1. Log in to your account.
  2. Click on courses.
  3. Click on the course you are taking.
  4. Then you go to “quizzes”.
  5. Click on the upcoming one by checking the date.
Jan 30, 2020

Top Articles
Latest Posts
Article information

Author: Aracelis Kilback

Last Updated:

Views: 6266

Rating: 4.3 / 5 (64 voted)

Reviews: 95% of readers found this page helpful

Author information

Name: Aracelis Kilback

Birthday: 1994-11-22

Address: Apt. 895 30151 Green Plain, Lake Mariela, RI 98141

Phone: +5992291857476

Job: Legal Officer

Hobby: LARPing, role-playing games, Slacklining, Reading, Inline skating, Brazilian jiu-jitsu, Dance

Introduction: My name is Aracelis Kilback, I am a nice, gentle, agreeable, joyous, attractive, combative, gifted person who loves writing and wants to share my knowledge and understanding with you.