Trivia - The Office (US) Season 9 (2024)

Can you name the Trivia - The Office (US) Season 9?

By DatJustice

20m

100 Questions

97 Plays97 Plays

97 Plays

Give Quiz Kudos

Give Quiz Kudos

-

")$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();var tmp = document.createElement("input");tmp.value = "go";tmp.auto = true;checkGameInput(tmp);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/100

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

20:00

S9E1 - New Guys
E - What is Andy's nickname for Pete?
M - Like Silicon Valley, Ryan claims that southwest Ohio will eventually be nicknamed what when it becomes a booming area?
H - What is the name of Angela's cat that she is trying to give away in the episode?
Angela: Attention everyone. xxxxxxxx is still available. Oscar has been flirting with adopting him. But still hasn’t given me a definite yes or no.
Oscar: Definitely no.
Angela: Fine. For any interested candidates, I will be conducting 20 minute interviews. My ideal situation would an independently wealthy cute couple with a strong commitment to education. Black or white, I’m fine with either, but not both.
S9E2 - Roy's Wedding
E - Who was Pam’s first celebrity crush?
M - What company does Roy now own?
H - What movie does Darryl say he likes because he is black?
Darryl: Andy made me his consigliere. Which means Assistant Regional Manager. I guess he thought I’d be into The Godfather ’cause I’m black. Wrong! I’m into The Godfather ’cause I’m a cinephile. I like xxxxxxxx ’cause I’m black.
S9E3 - Andy's Ancestry
E - Who does Nellie say Andy is a distant blood relative to?
M - What U.S. president is Jim said to look like in this episode?
H - Who does Stanley say no one in the slave business would buy?
Oscar: I’m just saying, what does it imply in this country when a white person shares an ancestor with a black person?
Phyllis: You think that Andy’s family owned slaves?
Stanley: Well somebody owned somebody. And I don’t think anybody would buy an xxxx.
S9E4 - Work Bus
E - Who is revealed to be trying to adopt a child in this episode?
M - What pie flavor does Pam not want to get?
H - What item if used in math can Kevin be able to compute correctly?
Angela: So wait, when xxxx are involved you can suddenly do math in your head?
Kevin: Wh…
Oscar: Hold on, Kevin, how much is 19,154 xxxx divided by 61 xxxx?
Kevin: 314 xxxx.
Oscar: What if it were salads?
Kevin: Well, it’s the…carry the four…and…it doesn’t work.
S9E5 - Here Comes Treble
E - Stephen Colbert guest stars as who from Andy's a capella days?
M - What is Andy's signature song from his a capella days?
H - Andy got the nickname 'Boner Champ' from having sex with what?
Andy: Spring sing ‘95. Got completely ripped on Bud Dries. I had sex with a xxxxxxx. I just went at that thing. Cold would have stopped most people but I stayed locked in, you know. Took the face off. It just seemed easier that way.
S9E6 - The Boat
E - Who from Dunder Mifflin knows Oscar's secret with the Senator?
M - Who does 'David Wallace have hostage as Dunder Mifflin's stock falls 73%' when Dwight is doing the radio show?
H - Where did Darryl spend his summers growing up?
Erin: Don’t you guys have that place where you used to spend your summers and have all those memories?
Darryl: I worked at a xxxxx xxxx.
Erin: See? I bet you wouldn’t sell that xxxxx xxxx for all the money in the world. Would you Darryl?
Darryl: I would if I owned it and I went broke.
S9E7 - The Whale
E - What is the name of the giant client Dwight is trying to land in this episode?
M - Who does Dwight get to come to the sales pitch so that they will go on vacation with Jan?
H - Who does Dwight imagine when thinking of a nice, reasonable person?
Dwight: I had a xxxxxx once who used to comb my hair gently.
Pam: Okay, so, when you’re selling to this woman, just imagine that she’s that nice, reasonable xxxxxx.
Dwight: Okay, I can do that.
Pam: Mm-hmm. Good. Baby steps.
Dwight: He used to fight dogs.
Pam: Like, he used to make dogs fight? Or he actually fought dogs?
Dwight: Little of this, little of that.
S9E8 - The Target
E - Who from the office has never gotten a complaint card until today?
M - What object does Angela want to use to hurt Oscar?
H - What item does Dwight's friend have constantly stolen from him?
Angela: Do you have a xxx?
Dwight: [snickers] Does he own a xxx? Show her.
Trevor: You tell me.
Angela: What is this?
Trevor: It’s the receipt for my xxx.
Angela: You don’t carry it with you?
Trevor: Read the receipt. That’s a $300 xxx. Someone could steal it.
Dwight: Do you have any idea how many xxxx Trevor’s had stolen from him?
Trevor: Now I keep it in a safe.
Dwight: Mm-hmm. Good safe?
Trevor: Oh, you tell me. [shows Dwight receipt]
Dwight: Wow!
S9E9 - Dwight Christmas
E - What Christmas movie does Pete know by heart?
M - What is the full name of the Scranton Strangler?
H - What theme does Creed want for the holiday party?
Stanley: No. I want Tropical Christmas.
Meredith: Topless Christmas.
Creed: xxxxx xxxxx xxxx. Spanish tapas, and swiss miss hot cocoa–What’s so hard to understand?
S9E10 - Lice
E - What item does everyone but Meredith put in their hair to kill the lice?
M - When effected by a mind hallucinogenic effect from the insecticidal grenade he dropped, name any number/word Dwight says when counting down from 10?
H - Who in the office was constantly being made fun of his childhood because he/she had lice on the first day of school?
xxxxxx: Of all of the vermin in God’s great green kingdom, lice are the ones I detest the most. My first day of school, I had lice, and no one would play with me. For 15 years, they called me freak and four eyes and sci-fi nerd and girl puncher. All because I had lice when I was 7.
S9E11 - Suit Warehouse
E - Darryl kills what animal when trying to shoot a basketball during his interview?
M - Before leaving for the day, the office is seen doing what at work?
H - In Dwight & Jim's fake brothers sales pitch, Dwight imagined Jim as a closeted what?
Dwight: We’d go in pretending to be family – brothers. We did it at a family owned law firm, at a family owned construction company, and a family owned motorcycle store. Jim and Dwight Shrupert. I was the dynamic, likeable winner that was doted upon by Mom. And Jim was the closeted xxxx xxxxxxxx pretending to belong. The client never knew any of that, but I knew.
S9E12 - Customer Loyalty
E - Nellie has what two people from the office work on creating a fake social media account?
M - What was the name of Jim's prank for having Dwight look for the Holy Grail in the office?
H - What computer software does Clark tell Dwight they are using in the office?
Dwight: Bust out your complaint files. I need everything you’ve got on Darryl since he started working for Jim in the last few weeks. Break it down by keyword, okay? “Infuriating, irresponsible”…
Clark: They got us set up with xxxxxxx xx, so you’re kind of dreaming here.
Dwight: Okay, I’m gonna need you to print it out. [dot matrix printer beeping and whirring loudly]
S9E13 - Junior Salesman
E - Does Clark's breath smell like peppermint or wintergreen?
M - Who in the episode is revealed to have a fear of paper?
H - What Star Trek reference does Clark use in his interview with Dwight that describes a no-win situation?
Dwight: Okay, here’s one. A customer who ordered enough paper to qualify for a volume discount now wants to return half the stock. You can’t rebate the sales price or credit for future purchases because you brokered the deal for a third party.
Clark: That’s just a classic no-win situation.
Dwight: Thank you.
Clark: So I’d xxxxxxxxx xxxx it.
Dwight: Damn it! Perfect answer, again.
S9E14 - Vandalism
E - What was drawn to deface Pam's mural?
M - What does Dwight use to get Nate's attention to come talk to them?
H - What weapon does Pam say Dwight will keep in his car for special occasions?
Pam: I was hoping for a righteous mob, and I ended up with Dwight and Nellie. But, they both have a mob mentality. And, I’m pretty sure Dwight has a xxxxxxxxx in his car.
Dwight: [enters quickly] You need my xxxxxxxxx?
S9E15 - Couples Discount
E - Which office member returns back from their long trip?
M - Who pairs up with Oscar in hopes to getting the couples discount at the nail salon?
H - What has Kevin been sneaking from the fridge that was Andy's?
Kevin: Andy left a carton of xxxx in the fridge. So, I’ve been sneaking a little bit every day for the last three months. It’s been yummy. But now, Andy’s coming back. So, I guess it’s goodbye chunky, lemon xxxx.
S9E16 - Moving On
E - Does Toby show Andy the original copy of Erin & Pete's relationship agreement?
M - What is the name of Dwight's aunt who he needs Angela's help with?
H - Andy says that your ex will shove what down your throat?
Andy: Yeah, so life gives you xxxxxx and you’ve just gotta eat them, rinds and all. And if you don’t want to eat them? Your ex-girlfriend will shove them down your throat with the help of her hunky new boyfriend. So that’s fun.
S9E17 - The Farm
E - Who is the only one from the office invited to the funeral of Dwight's relative?
M - Name either of Dwight's sibling's first name?
H - Who do the Schrutes incorrectly bury in the past believing they were dead?
Dwight: We Schrutes don’t need some Harvard doctor to tell us who’s alive and who’s dead. But, there was an unlucky streak of burying some xxxxx xxxxxxxx. And, when grave robbers discovered some scratch marks on the inside of some of the coffins, we decided to make sure that our dead were completely dead. Out of kindness.
S9E18 - Promos
E - What is the name of the woman Dwight is interested in dating?
M - What is Kevin's nickname is the Danish promos?
H - How do guys like Dwight & Clark place their seeds?
Dwight: Who needs a new tractor anyway? Maybe we’re the kinda guys who end up with a tractor that’s already been rode hard and put away muddy.
Clark: Screw new tractors. Guys like us, we gotta plant our seed a different way.
Dwight: By xxxx.
S9E19 - Stairmageddon
E - Who hates Stairmageddon?
M - Where does Angela's husband announce he is gay?
H - What does Dwight shoot at Stanley?
Dwight: Don’t worry, it’s just a xxxx xxxxxxxxxxx. Nothing to be alarmed about. It’s just a man pointing a xxxx xxxxxxxxxxx at a coworker.
S9E20 - Paper Airplane
E - Who does Dwight try to let win the airplane contest?
M - How much money can be won from the paper airplane contest?
H - Name either of the three things Erin says everyone fought over in the orphanage?
Erin: Growing up in an orphanage, you have to fight other kids. For everything. xxxxxx, xxxxxxx, xxxxxxx. I’m kinda worried about Pete seeing that side of me. I once ripped greedy Susan’s pigtail right off her head. Just for a handful of Crispix.
S9E21 - Livin' the Dream
E - Andy takes a dump on whose car?
M - What ceremony does Dwight have during lunch for everyone?
H - What type of boards did Andy break back in the day?
Andy: You know, I don’t know anything about karate but I have broken a few boards in my day. xxxxxx boards, at my family pool in Reading. I was an obese child. I never talk about that here, but Nard-dog’s outta here, so letting it all hang out!
S9E22 - A.A.R.M. Part 1
E - What's the exact opposite of a horse?
M - What does PFN stand for?
H - The tea in Nepal is very hot, but the coffee where is much hotter?
Erin: The tea in Nepal is very hot.
Dwight: But the coffee in xxxx is far hotter.
Erin: Close.
Dwight: This is Tuesday, right? The coffee in Paraguay is far hotter?
Erin: Colder.
Dwight: The coffee in Paraguay is colder?
Erin: No, I meant you’re getting colder. The correct response is, “the coffee in xxxx is much hotter.”
Dwight: Ah, much, ok.
Erin: But, that’s three wrong, so I gotta give you the steam.
S9E23 - A.A.R.M. Part 2
E - What one thing does the office decide to do with Darryl?
M - What item does Phillip choose the beet over?
H - Who does Dwight get his ring from?
Dwight: [puts down bullhorn and kneels] This is a ring, taken from the buttocks of my xxxxxxxxxxx, put there by the gangster patriarch of the Coors dynasty, melted in a foundry run by Mennonites.
Angela: Okay, yes—yes, I will!
S9E24 - Finale Part 1
E - Whose life feels pointless now that nobody’s actually filming them anymore?
M - What band was Creed a part of in the 1960s?
H - What fake number did Kevin create?
Dakota: Hi. I keep seeing this symbol in the accounts from last year. It’s..it’s all over the place. I don’t know what it means.
Oscar: That’s the reason Kevin got fired. It’s his magic number. He used to use it to balance his accounts. He used to call it a xxxxxxx. He told Dwight, [imitating Kevin] “A mistake plus xxxxxxx gets you home by seven.” He was home by 4:45 that day.
S9E25 - Finale Part 2
E - Who is Dwight's Bestish Mensch?
M - What is Baby Drake allergic to?
H - There's a lot of beauty in what types of things?
Pam: I thought it was weird when you picked us to make a documentary. But all in all…I think an xxxxxxxx paper company like Dunder Mifflin was a great subject for a documentary. There’s a lot of beauty in xxxxxxxx things. Isn’t that kind of the point?
Trivia - The Office (US) Season 9 (2024)
Top Articles
Latest Posts
Article information

Author: Horacio Brakus JD

Last Updated:

Views: 6527

Rating: 4 / 5 (51 voted)

Reviews: 90% of readers found this page helpful

Author information

Name: Horacio Brakus JD

Birthday: 1999-08-21

Address: Apt. 524 43384 Minnie Prairie, South Edda, MA 62804

Phone: +5931039998219

Job: Sales Strategist

Hobby: Sculling, Kitesurfing, Orienteering, Painting, Computer programming, Creative writing, Scuba diving

Introduction: My name is Horacio Brakus JD, I am a lively, splendid, jolly, vivacious, vast, cheerful, agreeable person who loves writing and wants to share my knowledge and understanding with you.