2023-2024 Final Jeopardy Clues (Part 4) (2024)

Quiz Lab

Quiz Lab

Miscellaneous

General Knowledge

Type in answers that appear in a list

Type in answers that appear in a list

Classic

By brook5584

20m

55 Questions

12 Plays12 Plays

12 Plays

Comments

Give Quiz Kudos

Give Quiz Kudos

-

Forced OrderAnswers have to be entered in order

Answers have to be entered in order

Random OrderRandomize order of answers

Randomize order of answers

")$objective.click(() => {window.onClickObjective(reckoningQuestObjective.quest_number, reckoningQuestObjective.objective_number, reckoningQuestObjective.quest_id, reckoningQuestObjective.objective_id, $objective);});if (!window.mweb) {$j('#snark').hide();$objective.insertAfter($j('#gameOverMsg'));} else if (is_flagship_app_view) {$j('#snark').html();$objective.appendTo($j('#snark'));} else {$objective.appendTo($j('#reckoning .stats-wrapper'));}} else if (showSnark) {var snark = getSnark(userPct);var attachSnarkModalListener = false;if (snark !== '') {snark = ""+snark+"";if (!window.mweb) {if (false) {attachSnarkModalListener = true;snark += "";} else {snark += "";}}} else {$j('#snark').hide();}$j('#snark').html(snark);if(attachSnarkModalListener){ $j('#hide-snark-open-confirmation-modal').on('click', function () { var modalArgs = {title: 'Hide These Messages?',message: 'Are you sure you want to hide post-quiz messages?', onYes: function(remodal){ $j.ajax({ type: "GET", url: "/ajax/user_settings.php", data: {s: 0}, success: function(response) { if (response.success) { $j('#snark').hide(); remodal.close(); } else { if (response.responseJSON.message) { remodal.$modal.find('#confirmation-error').html(response.responseJSON.message); remodal.$modal.find('#confirmation-error').show(); } else { remodal.$modal.find('#confirmation-error').html('There was an error saving your preferences. Please contact feedback if you continue to see this issue.'); remodal.$modal.find('#confirmation-error').show(); } } }, error: function(response) { if (response.responseJSON.message) { remodal.$modal.find('#confirmation-error').html(response.responseJSON.message); remodal.$modal.find('#confirmation-error').show(); } else { remodal.$modal.find('#confirmation-error').html('There was an error saving your preferences. Please contact feedback if you continue to see this issue.'); remodal.$modal.find('#confirmation-error').show(); } } }); } }; SporcleLib.Modal._openConfirmationModal(modalArgs); }); }} else {$j('#snark').hide();}// Update get reckoning with playlist infovar playlistData;if (mweb) {playlistData = typeof window.playlist === 'object' && window.playlist.hasOwnProperty('games') ? window.playlist : null;} else {playlistData = window.Sporcle.gameData.playlist ? window.Sporcle.gameData.playlist.vm.data : null;}if (playlistData) {playlistReckoning(playlistData, userPct, false && !stopwatch);}$j('#playGameBar').addClass('reckoning');$j('#reckonBox').show();if (mweb) {/* mobile games only */$j('#reckoning-numright').html(numRight);$j('#reckoning-time').html(displayTime(timerSecs));if (stopwatch) {$j('#reckoning-time-title').text("Stopwatch");$j('#reckoning-time, #reckoning-score').addClass('timePast');}var checkToOpenFlorinPlayGoalModal = () => {if (userPct == 0) {return;}if (!florinsPlayGoalData) {return;}var openModal = false;if (florinsPlayGoalData.reward_claimable) {openModal = true;} else if (florinsPlayGoalData.curr_streak + 1 == florinsPlayGoalData.goal_days && florinsPlayGoalData.plays_today == 0) {// First play of the day, this should complete their play goalopenModal = true;}if (openModal) { window.SporcleLib.Modal.openFlorinPlayGoalModal({ // Fudge these values to be at the goal, since we haven't necessarily logged this play yet and it might be the 7th curr_streak : florinsPlayGoalData.goal_days, reward_claimable : true, plays_today : florinsPlayGoalData.plays_today + 1, goal_days : florinsPlayGoalData.goal_days, reward_amount : florinsPlayGoalData.reward_amount, })}}if (is_flagship_app_view) {let animations = window.animations;let hapticType = 'success';let completeMsg;let animConfig = {animationData : animations.checkmark,loop : true,playSegments : [[0, 30], [31, 75]]};if (userPct == 1) {animConfig.animationData = animations.perfectScore;animConfig.playSegments = [[0, 14], [15, 75]];completeMsg = "Perfect Score!";} else if (timerSecs == 0) {hapticType = 'error';animConfig.animationData = animations.outOfTime;animConfig.playSegments = [[0, 14], [15, 75]];completeMsg = "Out of Time!";} else if (_spks && !didGiveUp) {hapticType = 'error';animConfig.animationData = animations.bomb;animConfig.playSegments = [[0, 14], [15, 75]];completeMsg = "You Hit a Mine!";}window.SporcleLib.Modal.openModalFromTpl($j('#post-game-modal-tpl').html(), {show_loading : false,onInit : (modal) => {let $modal = modal.$modal; $modal.attr('id', 'postGameModal'); postGameAnim = lottie.loadAnimation({container : $modal.find('#postGameIcon')[0],animationData : animConfig.animationData,loop : animConfig.loop,autoplay : false});$modal.find('.modal-close').on('click', () => {window.continuePostQuiz();}); $modal.find('#completeMsg').html(completeMsg); $modal.find('#postPct').html(roundPercentScore(userPct));$modal.find('#postCorrect').html($j('#reckoning-score').text());if (snark) {$modal.find('#snark').html(snark);} else {$modal.find('#snark').hide();}setTimeout(() => {postGameAnim.playSegments(animConfig.playSegments, true);// if (hapticType) {// setTimeout(() => {// window.SporcleApp.api.playHaptic(hapticType);// }, 150);// }}, 150);},onClose : () => {// Need this delay because if we open a new modal right as the close animation finishes,// Then the modal events get confused and the "onOpen" callback never gets calledsetTimeout(() => {checkToOpenFlorinPlayGoalModal();}, 50);}});} else {checkToOpenFlorinPlayGoalModal();}}$j('#playGameBox').empty().hide();$j('#postGameBox').show();}function toggleshow() {showans = !showans;}function roundPercentScore(pctScore) {return _.round(100 * pctScore);}function updateBadge(userPct) {var earned = false;if (quizBadge && userPct > 0) { if (quizBadge.criteria && quizBadge.criteria.length) { var requiredCount = quizBadge.criteria.length; var earnedCount = 0; //Loop through possible badge criteria to see if we earned them quizBadge.criteria.forEach(function (criterion) { var comparison = parseInt(criterion.compare); if(criterion.name === 'percent'){ if ((comparison === 0 && userPct === parseFloat(criterion.value)) || //'0' means percent needs to equal (comparison === 1 && userPct > parseFloat(criterion.value)) || //'1' means percent needs to be greater than (comparison === -1 && userPct < parseFloat(criterion.value)) //'-1' means percent needs to be less than (at the time of writing, no badge exists like this) ) { earnedCount++; } } else if (criterion.name === 'month'){ var d = new Date(); //getMonth() starts at 0 if((d.getMonth() + 1 == criterion.value && comparison === 0) || (d.getMonth() + 1 > criterion.value && comparison === 1) || (d.getMonth() + 1 < criterion.value && comparison === -1) ){ earnedCount++; } } else if (criterion.name === 'day'){ var d = new Date(); if((d.getDate() == criterion.value && comparison === 0) || (d.getDate() > criterion.value && comparison === 1) || (d.getDate() < criterion.value && comparison === -1) ){ earnedCount++; } } else if (criterion.name === 'day_of_the_week'){ var d = new Date(); if((d.getDay() == criterion.value && comparison === 0) || (d.getDay() > criterion.value && comparison === 1) || (d.getDay() < criterion.value && comparison === -1) ){ earnedCount++; } } else if (criterion.name === 'avg_percent' && typeof averageScore !== 'undefined') {var roundedUserPct = _.round(userPct, 2); //matches backend precision in badge trackervar roundedAvgPct = _.round(averageScore, 2);if((roundedUserPct == roundedAvgPct && comparison === 0) || (roundedUserPct > roundedAvgPct && comparison === 1) || (roundedUserPct < roundedAvgPct && comparison === -1) ){ earnedCount++; } }}); earned = earnedCount == requiredCount;} else {earned = true;}} if (earned) {quizBadge.condition_earned = true;quizBadge.achieved_count++; var spliceIndex = null;_(quizBadge.remaining_conditions).each(function(condition, index) {if (quizBadge.condition_id == condition.condition_id) {spliceIndex = index;}});_(quizBadge.conditions).each(function(condition, index) {if (quizBadge.condition_id == condition.condition_id) {condition.earned = true;}});if (spliceIndex !== null) {quizBadge.remaining_conditions.splice(spliceIndex, 1); quizBadge.condition_earned_date = (new Date()).toLocaleDateString(undefined, { year: 'numeric', month: 'long', day: 'numeric' });; }if (quizBadge.remaining_conditions.length === 0 ) {if (quizBadge.badge_earned && quizBadge.levelable) {quizBadge.achieved_count = 0;quizBadge.level++;var currDate = new Date();quizBadge.last_level_date = window.SporcleLib.getMonthString(currDate.getMonth()) + ' ' + currDate.getDate() + ', ' + currDate.getFullYear();} else {quizBadge.badge_earned = true;var currDate = new Date();quizBadge.earned_date = window.SporcleLib.getMonthString(currDate.getMonth()) + ' ' + currDate.getDate() + ', ' + currDate.getFullYear();if (quizBadge.levelable) {quizBadge.level = 1;quizBadge.last_level_date = window.SporcleLib.getMonthString(currDate.getMonth()) + ' ' + currDate.getDate() + ', ' + currDate.getFullYear();quizBadge.achieved_count = 0;}}}if (badgeTooltip) {badgeTooltip.deactivate();}if (badgeTooltipRightRail) {badgeTooltipRightRail.deactivate();}var template = _.template($j('#quiz-badge-template').html());if (window.mweb) {$j('#main-wrapper .quiz-badge').replaceWith($j(template(quizBadge)));} else {quizBadge.tooltip_trigger_id = 'quiz-badge-art';$j('#main-quiz-content .quiz-badge').replaceWith($j(template(quizBadge)));quizBadge.tooltip_trigger_id = 'quiz-badge-art-right-rail';$j('#right-rail .quiz-badge').replaceWith($j(template(quizBadge)));if (!quizBadge.badge_earned) {if (window.setupUnearnedBadgeTooltip) {window.setupUnearnedBadgeTooltip($j('#quiz-badge-art'), quizBadge);window.setupUnearnedBadgeTooltip($j('#quiz-badge-art-right-rail'), quizBadge);} else {var conditionsTemp = _.template($j('#badge-conditions-template').html());var tooltipHtml = $j(conditionsTemp(quizBadge));const badgeTooltipOptions = { //this should match /sporcle-ui/tooltips/functionalTooltipstarget : true,tipJoint : 'bottom middle',showOn : 'mouseover',hideTriggers : ['target','tip'],stemLength : 8,stemBase : 12,hideOn : 'mouseout',removeElementsOnHide : true,background : 'white',borderColor : '#d8d8d8',borderWidth : 1,shadowOffset : [3,3],shadowBlur : 10,showEffect : 'slide',showEffectDuration : 0.1,hideEffectDuration : 0.3,className : 'badge-tooltip',shadowColor : 'rgba(0,0,0,0.25)'};badgeTooltip = new Opentip('#quiz-badge-art', tooltipHtml.html(), badgeTooltipOptions);badgeTooltipRightRail = new Opentip('#quiz-badge-art-right-rail', tooltipHtml.html(), badgeTooltipOptions);}} else {if (window.setupEarnedBadgeTooltip) {window.setupEarnedBadgeTooltip($j('#quiz-badge-art'), quizBadge);window.setupEarnedBadgeTooltip($j('#quiz-badge-art-right-rail'), quizBadge);}}}}}function showHintTooltip(x, y, hint) {$hint = $j('#hintTooltip');if ($hint.length == 0) {$hint = $j('

' +'

' +'

' +'

' +'

' +'

').appendTo($j('body'));}if (hint) {var $afterContainer = $hint.find('.afterContainer');var $after = $hint.find('.after');// Set to max width before resize$afterContainer.css({width: '120px'});$hint.show();// Set tooltip text to hint$after.html(hint);// Get width of tooltip with textvar width = Math.ceil($after[0].offsetWidth) + 1;var leftShift = 0;if (mweb) {// Make sure the tooltip doesn't go off either side of the screenvar leftBound = 51;var rightBound = $j('body').width() - 71;var buf = 11;// Shift based on width of textvar shiftLimit = Math.max(width/2 - 20, 0);if (x < leftBound) {// Too close to left edge of screenleftShift = -shiftLimit;x = Math.max(x, buf);} else if (x > rightBound) {// Too close to right edge of screenleftShift = shiftLimit;x = Math.min(x, $j('body').width() - buf);}}// Set the position of the hint$hint.css({left: x + 'px',top: y + 'px',});// Set outer container size and position$afterContainer.css({width: width + 'px',left: '-' + ((width / 2) + leftShift) + 'px'});} else {$hint.hide();}}function getRandomColor() {var r = Math.round(Math.random() * 255);var g = Math.round(Math.random() * 255);var b = Math.round(Math.random() * 255);return 'rgb(' + r + ',' + g + ',' + b + ')';}function hintTooltipIsDisplayed() {return $j('#hintTooltip').is(':visible');}function getCurrentHintText() {return $j('#hintTooltip .afterContainer .after').text();}// This is used to yield execution to the main javascript thread so that we can break longer running tasks into smaller tasks.// See here: https://web.dev/articles/optimize-long-tasks?utm_source=devtoolsfunction yieldToMain () {return new Promise(resolve => {setTimeout(resolve, 0);});}async function runStartCode(stopwatch) {if (typeof gamePageIsLoaded != "undefined" && gamePageIsLoaded) {if (window.startTriggered) {return;} else {window.startTriggered = true;}if (typeof stopwatch !== 'undefined') {if (stopwatch) {window.selectTimerSetting('stopwatch');} else {window.selectTimerSetting('timer');}}// The `startGame` function does a lot, so we want to yield execution both before and after this call. Yielding before// will allow the existing task to finish, freeing up the runtime to move to the next thing in the message queue before startGame// executes. Yielding after will do the same, before we perform the rest of the actions related to starting a quiz.await yieldToMain();await startGame(1200);await yieldToMain();pickSlot();callSPHooks('postStart');}}function callSPHooks(name) {if (typeof _spHooks != 'undefined') {var hlen = _spHooks[name].length;for (var i = 0; i < hlen; i++) {_spHooks[name][i]();}}}

0/55

Quiz is untimed. Quiz plays in practice mode will not be counted towards challenge completion or badge progress.

20:00

ClueWho is or What isCategory
Both issued in April, 80 years apart, the first proclamations by these 2 presidents each declared national days of mourningPRESIDENTIAL PROCLAMATIONS
An early owner of this 1889 painting full of blue & green noted how well the artist 'understood the exquisite nature of flowers!'FINE ART
About 30 miles from Florence, a little hill gives this tiny Tuscan town its name, familiar to American visitorsON VACATION IN ITALY
In disarray, it was sold at auction in 1915 to a local Wiltshire man, who would donate it to the British government 3 years laterA BIT OF BRITAIN
Before his death in 2005, he said he was 'probably the last head of state to be able to recognize all his compatriots in the street'ROYALTY
Originally known as Longacre, it got its name after a newspaper moved its offices there in 1904TOURIST SPOTS
Until Alabama became the 22nd state, this one was first alphabeticallyALPHABETICAL AMERICA
"Down--steadily down it crept... downward with its lateral velocity. To the right--to the left" is in this 1842 taleSHORT STORIES
The distance between its 2 legs at ground level is 630 feet, making it as wide as it is tallLANDMARKS
TIME mentioned 'cruelty & enforced conformity' when summing up this novel with a 'stonily silent narrator'20th CENTURY BOOKS
A 2020 edition of this beloved 1911 novel came with a glossary of horticultural terms & a location guideCHILDREN'S BOOKS
A radical in an 1833 failed uprising in Germany, Ludwig von Rochau coined this term for acts taken for practical reasons not ethicsWORD ORIGINS
Achilles Tatius wrote that it 'was like a mountain... at the top of this mountain rose a second sun'WONDERS OF THE ANCIENT WORLD
Isolated in 1945 during uranium fission research, it was named for an ancient deity to suggest humans gaining a new powerCHEMICAL ELEMENTS
Over the motto 'Fortis est Veritas', the coat of arms of this city features a beast of burden crossing over some waterBRITISH CITIES
After the Vietnam War, Vietnam got bogged down in a campaign against this leader whom it managed to overthrow in 197920th CENTURY HISTORY
In a 1980 National Book Award winner, we learn this title character gets his name from the rank of his late dad--technical sergeantLITERARY CHARACTERS
At Leicester Cathedral in March 2015, the Archbishop of Canterbury led a religious ceremony for this deceased English monarchBRITISH HISTORY
Telling the story of a duke, a jester & the jester's daughter, it was written by poet Francesco Maria PiaveRHYME TIME: OPERA VERSION
Known for a fabled event of 1881, it housed an auto repair shop after the disappearance of the horse & buggyHISTORIC SPOTS
On Nov. 15, 1961 JFK suspended the 8-hour workday at this agency, saying its work needed to proceed 'with all possible speed'EXECUTIVE ORDERS
In the 16th century, she changed the "EW" in her family name to a "U" to help her new French in-laws spell it more easilyHISTORIC WOMEN
Early 1900s labels for this beverage brand featured a beaver sitting on a log at the top of a mapBUSINESS LOGOS
On the 2022 Bicentennial of his birth, the body of this man was exhumed & DNA used to determine his genetic afflictionsEUROPEAN SCIENTISTS
Of the Seven Sisters colleges, this one located in a place of the same name is the farthest southCOLLEGES
FDR gets credit for implementing this as a concept in the U.S. & the metaphor was used by FDR Jr., running for office in 1966ALSO SEEN AT THE CIRCUS
When asked if she was the inspiration for the wife in a 1922 novel, this woman replied, "No. She was much fatter"AUTHORS' WIVES
This first name is shared by a character introduced in 1941 & a member of royalty who is sixth in line to the British throneNAME'S THE SAME
ClueWho is or What isCategory
When this body was discovered in 1978, Persephone was suggested as its nameNAMES IN THE HEAVENS
A 1902 work says an enigmatic character has a half-English mom & a half-French dad, but this name of his is German for 'short'LITERARY CHARACTERS
Bearing the name of a man who died in Iowa in 1838, these began service in 1979 & today number in the thousandsARMY TECHNOLOGY
Best known for a novel, she wrote at least 6 full-length plays & collaborated with Moms Mabley on a 1931 Broadway revue20th CENTURY AUTHORS
In this 2017 film Dante is a hairless breed known as a Xolo dogANIMATED FILM CHARACTERS
Never even a soldier, this man lied that his nickname came from a shrapnel wound while fighting in the ArgonneNOTORIOUS FIGURES
This series grew out of a screenplay titled 'Murdoch'TELEVISION
Paul Robeson said that even as this character 'kills, his honor is at stake... the honor of his whole culture is involved'ON THE STAGE
Perhaps inspiring a line 2 centuries later, in 1774 he wrote that he was headed 'farther than any other man has been before me'EXPLORERS
It was proposed in Congress in 1926 in honor of a big 150th anniversary; it opened 17 years laterWASHINGTON, D.C.
In 1530 he made his last confession & wished that 'I had served God as diligently as I have done the king'FAMOUS LAST WORDS
According to the BBC, this 1953 event 'did more than any other to make television a mainstream medium'TELEVISION HISTORY
In 1959 Bob Bartlett & Hiram Fong each won a coin flip to gain this alliterative title1950s POLITICS
From the 470s B.C., Aeschylus' earliest surviving work has this title; he'd fought them repeatedly in the preceding yearsANCIENT DRAMA
The first vice president & the first president not born in one of the original 13 states were both born in this statePRESIDENTS & VICE PRESIDENTS
Oliver Stone, screenwriter of this 1983 movie, named its main character to honor the Super Bowl-winning QB from 19821980s MOVIE CHARACTERS
He said that California prison psych tests he took were ones he had designed, so he made himself look docile & unlikely to escape; then he did1960s PEOPLE
In 1805, after 4 years presiding over the Senate, he left the chamber, calling it 'a sanctuary; a citadel of law, of order'U.S. SENATE HISTORY
A letter from him begins, 'On the thirty-third day after I had left Cadiz, I reached the Indian Ocean'HISTORIC LETTERS
The 42-foot-high statue of Athena in this state capital is the tallest indoor statue in the United StatesSTATUES
Churchill gave a word a new meaning when he called for a 'talk with Soviet Russia upon the highest level... a parley at' thisWORDS & THEIR MEANINGS
''It was kind of a prodding to myself to play it straight', said Johnny Cash of this 1956 hitCOUNTRY MUSIC
The opera based on this 1993 memoir was staged at a prison for the first time in 2023, at Sing Sing with a chorus of 14 inmatesFROM PAGE TO STAGE
Fearful of independence in 1975, around 120,000 of this country's people, a third of the population, fled to the NetherlandsCOUNTRIES OF THE WORLD
In December 2023 she became the oldest solo artist, at 78, to top the Billboard Hot 100 chart, with a song she recorded in 1958FEMALE SINGERS
One is a procedure foundational to computer science; the other was made in large part obsolete by computersANAGRAMS
A book by historian Thomas Carlyle that Dickens said he'd read 500 times has this title subject that Charles would write about himselfLITERARY INSPIRATION
2023-2024 Final Jeopardy Clues (Part 4) (2024)
Top Articles
Latest Posts
Article information

Author: Moshe Kshlerin

Last Updated:

Views: 6749

Rating: 4.7 / 5 (57 voted)

Reviews: 88% of readers found this page helpful

Author information

Name: Moshe Kshlerin

Birthday: 1994-01-25

Address: Suite 609 315 Lupita Unions, Ronnieburgh, MI 62697

Phone: +2424755286529

Job: District Education Designer

Hobby: Yoga, Gunsmithing, Singing, 3D printing, Nordic skating, Soapmaking, Juggling

Introduction: My name is Moshe Kshlerin, I am a gleaming, attractive, outstanding, pleasant, delightful, outstanding, famous person who loves writing and wants to share my knowledge and understanding with you.