Popular Quizzes Today
1
Find the US States - No Outlines Minefield
2
Find the Countries of Europe - No Outlines Minefield
3
Countries of the World
History
World Leaders
QUIZ LAB SUBMISSIONThis quiz has not been published by Sporcle
This quiz has not been published by Sporcle
RandomHistoryorWorld LeadersQuiz
Can you name the most famous person born on every day?
By Sheener
Plays
Comments
Bookmark Quiz
MORE INFO
ClassicType in answers that appear in a list
Type in answers that appear in a list
hide this ad
")$objective.click(() => {window.onClickObjective(reckoningQuestObjective.quest_number, reckoningQuestObjective.objective_number, reckoningQuestObjective.objective_id, $objective);});if (!window.mweb) {$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 (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 () {ga('send','event', 'Game Page', 'Hide Snark', window.gameurl_short); var modalArgs = { 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(); } } }); }, msg: 'Are you sure you want to hide post-quiz messages?' }; 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');}}$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; var spliceIndex = null;_(quizBadge.remaining_conditions).each(function(condition, index) {if (quizBadge.condition_id == condition.condition_id) {spliceIndex = index;}});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.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();}}}badgeTooltip.deactivate();badgeTooltipRightRail.deactivate();var template = _.template($j('#quiz-badge-template').html());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) {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);}}}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();}function runStartCode(stopwatch) {if (typeof stopwatch !== 'undefined') {if (stopwatch) {window.selectTimerSetting('stopwatch');} else {window.selectTimerSetting('timer');}}if (typeof gamePageIsLoaded != "undefined" && gamePageIsLoaded) {startGame(1500);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/366
25:00
|
|
| ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
|
| ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
|
| ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
|
|
FAQs
What day has the most famous people born on? ›
...
Celebrities born on Sept. 9
- Adam Sandler.
- Hugh Grant.
- Michelle Williams.
- Kelsey Asbille.
- Eric Stonestreet.
- Zoe Kazan.
- William Miller.
- Henry Thomas.
Turns out that most successful people were born in October, with June and July not far behind. Indeed, celebs bringing in the big bucks like Bill Gates and Kim Kardashian have October birthdays, while Kanye West celebrates in June and Jennifer Lopez in July. Could there actually be something to it?
What's the rarest birthday? ›December 25 (Christmas Day) is the least common birthday, while January 1 (New Year's Day) is the second least common.
Who has the rarest birthday? ›- December 25th.
- January 1st.
- December 24th.
- July 4th.
- January 2nd.
- December 26th.
- November 27th.
- November 23rd.
- Muhammad (570 – 632) Founder of Islam.
- Martin Luther King (1929 – 1968) Civil Rights leader.
- Abraham Lincoln (1809 – 1865) American President during civil war, helped end slavery.
- Nelson Mandela (1918 – 2013) Anti-apartheid leader, first President of democratic South Africa in 1994.
- Ronald Reagan, 40th president of the United States (1981–89).
- Abraham Lincoln, 16th president of the United States (1861–65).
- Martin Luther King Jr., civil rights activist.
- George Washington, 1st president of the United States (1789–97).
- Benjamin Franklin,
Virgin Mary, 1st-century BC–1st-century AD. The mother of Jesus, Mary is venerated by both Christians and Muslims, and is probably the most famous woman in history. The actual details of her life are veiled as much as they are elucidated by the New Testament.
What birth month has the highest IQ? ›Those born in September are, apparently, the smartest out of the entire year. According to Marie Claire, a study published in the National Bureau of Economic Research found that there's a clear correlation between the month during which you were born and how smart you are.
What month are most millionaires born? ›October is the most common birth month for our successful celebrities, with the likes of Bill Gates, Kim Kardashian, and Simon Cowell having October birthdays and a total of 36 out of 300 celebrities being born in this month.
What month are pretty people born in? ›A new study has revealed that people born in April are the sexiest - and having a birthday in April myself, I'm obviously completely sold on the theory…
Who was the 1st famous person? ›
Due to the public's overwhelming interest in her, Sarah Bernhardt is widely considered to be the world's first celebrity, and is still revered today.
What is a zero birthday? ›You know the ones I am talking about — the ones that end in a zero. The ones that make you happy when you are young, happy that you are getting older, can do more, be more. The zero birthdays as you get older that make you stop and think about your future, your life, your family, your mortality.
What time of day are most babies born? ›Sixty percent of babies are born during the day, between 6 A.M. and 6 P.M. And, 3.5 times as many babies are born at exactly 8:00 A.M., the most common minute to be born, than at the least common, 3:09 A.M.
Is there a golden birthday? ›What is a Golden Birthday? Your golden birthday is when the date of your birth coincides with your age. For example, if you were born on October 8, your golden birthday took place when you turned 8. If you were born on December 21, your golden birthday took place when you turned 21.
What time of year is best to have a baby? ›The study found that for conceptions between January and May, gestation length declined by about a week before shooting back up to average length in June. In terms of birth weight, summer was the best time to conceive.
What is the rarest month to be born in 2022? ›February is the least common birth month, with avereage of 316,891 babies born in February annually.
Who is the bravest woman in history? ›Ida Lewis, the namesake of Arlington National Cemetery's Lewis Drive, was once known as “the bravest woman in America.” Lewis served as an official lighthouse keeper for the U.S. Lighthouse Service (later absorbed into the Coast Guard) from 1879 until her death, at age 69, in 1911.
Who is the most impactful person in American history? ›Rank | Name |
---|---|
1 | Abraham Lincoln 16th President of the United States |
2 | George Washington First President of the United States of America |
3 | Thomas Jefferson Third president of the United States of America, and the most conspicuous apostle of democracy in America. |
In the history of human progress, a few events have stood out as especially revolutionary: the intentional use of fire, the invention of agriculture, the industrial revolution, possibly the invention of computers and the Internet.
What was America called before 1400? ›Two names that America could have received before the arrival of the Europeans were Zuania (of Caribbean origin) and Abya-Yala (used by the Kuna people of Panama).
When did America start declining? ›
Assessment. According to American public intellectual Noam Chomsky, America's decline started shortly after the end of World War II, with the "loss of China" followed by the Indochina Wars. By 1970, the United States' share of world wealth had declined to about 25%, which was still large but sharply reduced.
Who is the most admirable woman in the world? ›Roosevelt was named the most admired woman 13 times. The highest number of top-ten appearances belongs to Queen Elizabeth II, with 52. Despite never winning, broadcaster Oprah Winfrey has finished in the top ten a total of 33 times, including finishing second 14 times.
Who was the first female born in the world? ›EVA. EVA, EVE is the first woman. There are two stories of the creation of Eve and Adam.
Who is the most famous girl alive? ›1. Oprah Winfrey. Her real name is Oprah Gail Winfrey, and she was born in Kosciusko, Mississippi, on January 29, 1954. She takes the top rank, and she deserves it because she was born to a teenage mother who was living in hardship.
What is the smartest age? ›Concentration abilities peak around age 43.
A 2015 study from researchers at Harvard University and the Boston Attention and Learning Laboratory suggests that our ability to sustain attention improves with age, reaching its peak around age 43.
The first genius IQ score was around 140. That's about one in every 250 people. But one leading researcher in the 1940s suggested that a genius should have an IQ over 180. That's about one in every 2 million people.
What event changed history the most? ›- 1 America Declaring Independence. ...
- 2 The 9/11 Terrorist Attacks. ...
- 3 The Treaty of Versailles. ...
- 4 The Holocaust. ...
- 5 The Fall of the Berlin Wall. ...
- 6 The Invention of the Assembly Line. ...
- 7 Columbus Finding the New World. ...
- 8 The First Successful Plane Flight.
Herodotus has been called the “father of history.” An engaging narrator with a deep interest in the customs of the people he described, he remains the leading source of original historical information not only for Greece between 550 and 479 BCE but also for much of western Asia and Egypt at that time.