{"id":2009,"date":"2026-07-21T20:28:19","date_gmt":"2026-07-21T14:58:19","guid":{"rendered":"https:\/\/lastroundai.com\/blog\/?post_type=iq&#038;p=2009"},"modified":"2026-07-21T20:28:19","modified_gmt":"2026-07-21T14:58:19","slug":"aptitude","status":"publish","type":"iq","link":"https:\/\/lastroundai.com\/interview-questions\/aptitude","title":{"rendered":"Aptitude Interview Questions (2026): 50 Q&#038;A"},"content":{"rendered":"<p>A final-year engineering student walked out of a campus placement round in 2025 convinced he&#8217;d bombed the technical interview, only to find out later that the actual filter was the aptitude test he&#8217;d taken that morning. He&#8217;d spent three weeks grinding LeetCode and zero minutes on boats and streams, and the recruiter&#8217;s own scorecard weighted the aptitude round almost as heavily as the coding round. That&#8217;s the part most candidates underestimate: for a huge share of campus and lateral hiring in India and similar markets, the aptitude test is not a formality before the &#8220;real&#8221; interview, it is the interview, or at least the gate you have to clear before anyone looks at your resume again.<\/p>\n<p>Here&#8217;s an opinion that might be wrong: most aptitude prep spends its time on the topics that feel satisfying to practice, percentages, profit and loss, simple interest, because the arithmetic is clean and a wrong answer is obviously wrong. Permutations and combinations, probability, and data interpretation get less attention because the setup takes longer to think through and the formulas look more intimidating on a first pass. In practice those are exactly the topics that separate a candidate who finishes the section with time to spare from one who&#8217;s still on question 12 when the timer runs out. GeeksforGeeks catalogs 28 separate quantitative aptitude topics and 15 logical reasoning categories on its own reference hub (<a href=\"https:\/\/www.geeksforgeeks.org\/aptitude\/aptitude-questions-and-answers\/\" target=\"_blank\" rel=\"noopener noreferrer\">GeeksforGeeks, Aptitude Questions and Answers<\/a>), and IndiaBIX lists 34 distinct math topics on its practice platform (<a href=\"https:\/\/www.indiabix.com\/aptitude\/questions-and-answers\/\" target=\"_blank\" rel=\"noopener noreferrer\">IndiaBIX, Aptitude<\/a>). That&#8217;s a wide net, and no one memorizes all of it cold under a 30 or 40 minute clock. The candidates who do well have usually narrowed it down to the dozen or so patterns that show up over and over.<\/p>\n<p>This page covers aptitude interview questions across eight areas: number system and HCF\/LCM fundamentals, percentages and profit and loss, time-speed-distance and time and work, averages and ratios and mixtures, permutations and combinations and probability, data interpretation, logical reasoning (series, blood relations, syllogisms, coding-decoding, directions), and the harder edge cases, calendars, clocks, and the traps that catch people even when they know the formula.<\/p>\n<div class=\"iq-stats not-prose\"><div class=\"iq-stat\"><span class=\"iq-stat__value\">50<\/span><span class=\"iq-stat__label\">Questions<\/span><\/div><div class=\"iq-stat\"><span class=\"iq-stat__value\">28<\/span><span class=\"iq-stat__label\">Quant Topics Cataloged<\/span><\/div><div class=\"iq-stat\"><span class=\"iq-stat__value\">15<\/span><span class=\"iq-stat__label\">Reasoning Topics Cataloged<\/span><\/div><div class=\"iq-stat\"><span class=\"iq-stat__value\">MCQ, Timed<\/span><span class=\"iq-stat__label\">Format<\/span><\/div><\/div>\n<h2>Number system, HCF, LCM, and divisibility<\/h2>\n<p>This is the section that decides whether the rest of the test feels fast or slow. Nobody fails an aptitude round on number system alone, but a shaky grip on it slows down almost every other topic that builds on it.<\/p>\n<div class=\"iq-dsec iq-dsec--easy\"><div class=\"iq-dsec__row\"><h2 class=\"iq-dsec__h\" id=\"easy\"><span class=\"iq-dsec__dot\" aria-hidden=\"true\"><\/span>Easy questions<\/h2><span class=\"iq-dsec__n\">15<\/span><\/div><div class=\"iq-dsec__bar\" aria-hidden=\"true\"><\/div><\/div>\n<div class=\"iq-qa\"><button class=\"iq-qa__q\" type=\"button\" aria-expanded=\"false\"><span class=\"iq-qa__qtext\">What&#039;s the fastest way to find the HCF and LCM of two numbers, and how are they related?<\/span><span class=\"iq-qa__meta\"><span class=\"iq-qa__tag\">Number System<\/span><span class=\"iq-badge iq-badge--easy\">Easy<\/span><span class=\"iq-qa__chev\" aria-hidden=\"true\"><\/span><\/span><\/button><div class=\"iq-qa__a\"><div class=\"iq-qa__a-inner\"><\/p>\n<p>The Euclidean algorithm is the fast way to get HCF: divide the larger number by the smaller, then keep dividing the previous divisor by the remainder until the remainder hits zero, the last non-zero divisor is the HCF. Once you have the HCF, LCM falls out of a single relationship: for any two numbers, HCF times LCM equals the product of the two numbers.<\/p>\n<p><div class=\"iq-code not-prose\"><div class=\"iq-code__bar\"><span class=\"iq-code__lang\">text<\/span><button class=\"iq-code__copy\" type=\"button\">Copy<\/button><\/div><pre><code class=\"language-text\">\n\nHCF(84, 126):\n\n126 = 1\u00d784 + 42\n\n84 = 2\u00d742 + 0  \u2192  HCF = 42\nLCM(84, 126) = (84 \u00d7 126) \/ 42 = 252\n<\/code><\/pre><\/div><\/p>\n<p>That shortcut only works for two numbers at a time. For three or more, you either extend the Euclidean method pairwise or fall back to prime factorization, which is slower but never wrong.<\/p>\n<p><\/div><\/div><\/div>\n<div class=\"iq-qa\"><button class=\"iq-qa__q\" type=\"button\" aria-expanded=\"false\"><span class=\"iq-qa__qtext\">How do you check if a large number is divisible by 3, 9, or 11 without doing the full division?<\/span><span class=\"iq-qa__meta\"><span class=\"iq-qa__tag\">Divisibility<\/span><span class=\"iq-badge iq-badge--easy\">Easy<\/span><span class=\"iq-qa__chev\" aria-hidden=\"true\"><\/span><\/span><\/button><div class=\"iq-qa__a\"><div class=\"iq-qa__a-inner\"><\/p>\n<p>For 3 and 9, sum the digits and check if that sum is divisible by 3 or 9 respectively, and you can repeat the digit sum if the first pass still leaves a big number. For 11, take the alternating sum of the digits, add the digits in the odd positions, subtract the sum of the digits in the even positions, and check if the result is divisible by 11, including zero.<\/p>\n<p><div class=\"iq-code not-prose\"><div class=\"iq-code__bar\"><span class=\"iq-code__lang\">text<\/span><button class=\"iq-code__copy\" type=\"button\">Copy<\/button><\/div><pre><code class=\"language-text\">\n\nIs 8712 divisible by 11?\n\nDigits (right to left): 2,1,7,8\n\nOdd positions: 2 + 7 = 9\n\nEven positions: 1 + 8 = 9\n\n9 \u2013 9 = 0  \u2192  divisible by 11\n<\/code><\/pre><\/div><br \/>\n<\/div><\/div><\/div>\n<div class=\"iq-qa\"><button class=\"iq-qa__q\" type=\"button\" aria-expanded=\"false\"><span class=\"iq-qa__qtext\">What&#039;s the shortcut for squaring a number that ends in 5, like 85, without long multiplication?<\/span><span class=\"iq-qa__meta\"><span class=\"iq-qa__tag\">Squaring Shortcuts<\/span><span class=\"iq-badge iq-badge--easy\">Easy<\/span><span class=\"iq-qa__chev\" aria-hidden=\"true\"><\/span><\/span><\/button><div class=\"iq-qa__a\"><div class=\"iq-qa__a-inner\"><\/p>\n<p>Split the number into the leading digits and the trailing 5. Take the leading digits as a single number, multiply it by itself plus 1, and append 25 to the end of that result. For 85, the leading digit is 8, so compute 8 times 9, which is 72, then append 25 to get 7225.<\/p>\n<p><div class=\"iq-code not-prose\"><div class=\"iq-code__bar\"><span class=\"iq-code__lang\">text<\/span><button class=\"iq-code__copy\" type=\"button\">Copy<\/button><\/div><pre><code class=\"language-text\">\n\n95^2:\n\nLeading part = 9\n\n9 \u00d7 (9+1) = 90\n\nAppend 25  \u2192  9025\n<\/code><\/pre><\/div><\/p>\n<p>This only works for numbers ending in exactly 5. It&#8217;s one of the few aptitude shortcuts that&#8217;s genuinely faster than a calculator once it&#8217;s automatic, since it turns a two-digit multiplication into a one-digit one.<\/p>\n<p><\/div><\/div><\/div>\n<div class=\"iq-qa\"><button class=\"iq-qa__q\" type=\"button\" aria-expanded=\"false\"><span class=\"iq-qa__qtext\">If a shopkeeper marks up goods 40 percent above cost and gives a 20 percent discount, what&#039;s the actual profit percentage?<\/span><span class=\"iq-qa__meta\"><span class=\"iq-qa__tag\">Profit and Loss<\/span><span class=\"iq-badge iq-badge--easy\">Easy<\/span><span class=\"iq-qa__chev\" aria-hidden=\"true\"><\/span><\/span><\/button><div class=\"iq-qa__a\"><div class=\"iq-qa__a-inner\"><\/p>\n<p>You can&#8217;t just subtract 20 from 40. Work it through on a cost price of 100: the marked price becomes 140, and a 20 percent discount on 140 is 28, leaving a selling price of 112. That&#8217;s a profit of 12 on a cost of 100, so the profit percentage is 12 percent, not 20.<\/p>\n<p><div class=\"iq-code not-prose\"><div class=\"iq-code__bar\"><span class=\"iq-code__lang\">text<\/span><button class=\"iq-code__copy\" type=\"button\">Copy<\/button><\/div><pre><code class=\"language-text\">\n\nCost = 100\n\nMarked price = 100 \u00d7 1.40 = 140\n\nDiscount = 20% of 140 = 28\n\nSelling price = 140 \u2013 28 = 112\n\nProfit = 112 \u2013 100 = 12  \u2192  12% profit\n<\/code><\/pre><\/div><br \/>\n<\/div><\/div><\/div>\n<div class=\"iq-qa\"><button class=\"iq-qa__q\" type=\"button\" aria-expanded=\"false\"><span class=\"iq-qa__qtext\">A number is increased by 20 percent and then decreased by 20 percent. Is the final value equal to the original? Why do people get this wrong?<\/span><span class=\"iq-qa__meta\"><span class=\"iq-qa__tag\">Percentages<\/span><span class=\"iq-badge iq-badge--easy\">Easy<\/span><span class=\"iq-qa__chev\" aria-hidden=\"true\"><\/span><\/span><\/button><div class=\"iq-qa__a\"><div class=\"iq-qa__a-inner\"><\/p>\n<p>No, the final value is always lower than the original whenever you increase and then decrease by the same percentage, because the second percentage change is applied to a bigger base than the first one was. Take 100: a 20 percent increase gives 120, then a 20 percent decrease on 120 is 24, leaving 96, not 100.<\/p>\n<p>The general result is that increasing by x percent and then decreasing by x percent changes the original value by minus x-squared over 100 percent. People get it wrong because they mentally treat both percentage changes as if they were happening on the same fixed base, which is only true if you&#8217;re adding and subtracting a fixed amount, not a percentage of a moving number.<\/p>\n<p><\/div><\/div><\/div>\n<div class=\"iq-qa\"><button class=\"iq-qa__q\" type=\"button\" aria-expanded=\"false\"><span class=\"iq-qa__qtext\">A train 150 meters long crosses a platform in 15 seconds and a signal pole in 5 seconds. What&#039;s the length of the platform?<\/span><span class=\"iq-qa__meta\"><span class=\"iq-qa__tag\">Trains<\/span><span class=\"iq-badge iq-badge--easy\">Easy<\/span><span class=\"iq-qa__chev\" aria-hidden=\"true\"><\/span><\/span><\/button><div class=\"iq-qa__a\"><div class=\"iq-qa__a-inner\"><\/p>\n<p>Crossing a signal pole means covering only the train&#8217;s own length, so that gives you speed directly: 150 meters in 5 seconds is 30 meters per second. Crossing a platform means covering the train&#8217;s length plus the platform&#8217;s length, so 30 meters per second times 15 seconds is 450 meters total, and subtracting the train&#8217;s own 150 meters leaves a 300 meter platform.<\/p>\n<p><div class=\"iq-code not-prose\"><div class=\"iq-code__bar\"><span class=\"iq-code__lang\">text<\/span><button class=\"iq-code__copy\" type=\"button\">Copy<\/button><\/div><pre><code class=\"language-text\">\n\nSpeed = 150 \/ 5 = 30 m\/s\n\nDistance for platform crossing = 30 \u00d7 15 = 450 m\n\nPlatform length = 450 \u2013 150 = 300 m\n<\/code><\/pre><\/div><br \/>\n<\/div><\/div><\/div>\n<div class=\"iq-qa\"><button class=\"iq-qa__q\" type=\"button\" aria-expanded=\"false\"><span class=\"iq-qa__qtext\">If A can do a job in 10 days and B in 15 days, how long do they take working together, and why isn&#039;t it just 12.5 days?<\/span><span class=\"iq-qa__meta\"><span class=\"iq-qa__tag\">Time and Work<\/span><span class=\"iq-badge iq-badge--easy\">Easy<\/span><span class=\"iq-qa__chev\" aria-hidden=\"true\"><\/span><\/span><\/button><div class=\"iq-qa__a\"><div class=\"iq-qa__a-inner\"><\/p>\n<p>Averaging the two times gives the wrong answer because work rates add, not the number of days. A does 1\/10 of the job per day, B does 1\/15 per day, so together they do 1\/10 + 1\/15 = 1\/6 of the job per day, which means the whole job takes 6 days.<\/p>\n<p><div class=\"iq-code not-prose\"><div class=\"iq-code__bar\"><span class=\"iq-code__lang\">text<\/span><button class=\"iq-code__copy\" type=\"button\">Copy<\/button><\/div><pre><code class=\"language-text\">\n\nA\u2019s rate = 1\/10 job\/day\n\nB\u2019s rate = 1\/15 job\/day\n\nCombined = 1\/10 + 1\/15 = 3\/30 + 2\/30 = 5\/30 = 1\/6\n\nTime together = 6 days\n<\/code><\/pre><\/div><\/p>\n<p>Averaging days only happens to look plausible here because 10 and 15 aren&#8217;t far apart. Try it with 2 days and 100 days and it&#8217;s obvious that &#8220;51 days&#8221; (the average) is nowhere close to the real answer, which is under 2 days.<\/p>\n<p><\/div><\/div><\/div>\n<div class=\"iq-qa\"><button class=\"iq-qa__q\" type=\"button\" aria-expanded=\"false\"><span class=\"iq-qa__qtext\">The average age of a class of 30 students is 12. A new student joins and the average becomes 12.2. What&#039;s the new student&#039;s age?<\/span><span class=\"iq-qa__meta\"><span class=\"iq-qa__tag\">Averages<\/span><span class=\"iq-badge iq-badge--easy\">Easy<\/span><span class=\"iq-qa__chev\" aria-hidden=\"true\"><\/span><\/span><\/button><div class=\"iq-qa__a\"><div class=\"iq-qa__a-inner\"><\/p>\n<p>Work from total sums, not averages directly. The original 30 students total 30 times 12, which is 360. After the new student joins, 31 students total 31 times 12.2, which is 378.2. The new student&#8217;s age is the difference, 378.2 minus 360, which is 18.2.<\/p>\n<p><div class=\"iq-code not-prose\"><div class=\"iq-code__bar\"><span class=\"iq-code__lang\">text<\/span><button class=\"iq-code__copy\" type=\"button\">Copy<\/button><\/div><pre><code class=\"language-text\">\n\nOriginal total = 30 \u00d7 12 = 360\n\nNew total = 31 \u00d7 12.2 = 378.2\n\nNew student\u2019s age = 378.2 \u2013 360 = 18.2\n<\/code><\/pre><\/div><br \/>\n<\/div><\/div><\/div>\n<div class=\"iq-qa\"><button class=\"iq-qa__q\" type=\"button\" aria-expanded=\"false\"><span class=\"iq-qa__qtext\">If a to b is 2 to 3 and b to c is 4 to 5, what&#039;s a to b to c, and what&#039;s the general method for combining two ratios that share a common term?<\/span><span class=\"iq-qa__meta\"><span class=\"iq-qa__tag\">Ratios<\/span><span class=\"iq-badge iq-badge--easy\">Easy<\/span><span class=\"iq-qa__chev\" aria-hidden=\"true\"><\/span><\/span><\/button><div class=\"iq-qa__a\"><div class=\"iq-qa__a-inner\"><\/p>\n<p>The shared term, b, has to be made equal across both ratios before you can chain them together. Here b is 3 in the first ratio and 4 in the second, so scale the first ratio by 4 and the second by 3 to make b equal to 12 in both, then read off the combined ratio.<\/p>\n<p><div class=\"iq-code not-prose\"><div class=\"iq-code__bar\"><span class=\"iq-code__lang\">text<\/span><button class=\"iq-code__copy\" type=\"button\">Copy<\/button><\/div><pre><code class=\"language-text\">\n\na:b = 2:3  \u2192  \u00d74  \u2192  8:12\n\nb:c = 4:5  \u2192  \u00d73  \u2192  12:15\n\nCombined: a:b:c = 8:12:15\n<\/code><\/pre><\/div><br \/>\n<\/div><\/div><\/div>\n<div class=\"iq-qa\"><button class=\"iq-qa__q\" type=\"button\" aria-expanded=\"false\"><span class=\"iq-qa__qtext\">What&#039;s the actual difference between a permutation and a combination, in your own words, not the formula?<\/span><span class=\"iq-qa__meta\"><span class=\"iq-qa__tag\">Permutations and Combinations<\/span><span class=\"iq-badge iq-badge--easy\">Easy<\/span><span class=\"iq-qa__chev\" aria-hidden=\"true\"><\/span><\/span><\/button><div class=\"iq-qa__a\"><div class=\"iq-qa__a-inner\"><\/p>\n<p>A permutation counts arrangements where order matters, first place and second place are different outcomes even with the same two people. A combination counts selections where order doesn&#8217;t matter, choosing the same two people for a committee is one outcome no matter which one you picked first.<\/p>\n<p>The fastest way to tell which one a question wants: ask whether swapping two chosen items around changes the outcome. If yes, it&#8217;s a permutation question. If the two arrangements describe the same real-world result, it&#8217;s a combination question.<\/p>\n<p><\/div><\/div><\/div>\n<div class=\"iq-qa\"><button class=\"iq-qa__q\" type=\"button\" aria-expanded=\"false\"><span class=\"iq-qa__qtext\">In how many ways can 5 people be seated in a row, and how does that change if 2 specific people must sit together?<\/span><span class=\"iq-qa__meta\"><span class=\"iq-qa__tag\">Permutations<\/span><span class=\"iq-badge iq-badge--easy\">Easy<\/span><span class=\"iq-qa__chev\" aria-hidden=\"true\"><\/span><\/span><\/button><div class=\"iq-qa__a\"><div class=\"iq-qa__a-inner\"><\/p>\n<p>Five distinct people in a row is a straight factorial, 5 factorial, which is 120 arrangements. When two specific people must sit together, treat that pair as a single block, so you&#8217;re really arranging 4 units (the block plus the other 3 people), which is 4 factorial, times 2 for the two internal orders of the pair itself.<\/p>\n<p><div class=\"iq-code not-prose\"><div class=\"iq-code__bar\"><span class=\"iq-code__lang\">text<\/span><button class=\"iq-code__copy\" type=\"button\">Copy<\/button><\/div><pre><code class=\"language-text\">\n\n5 people, no restriction: 5! = 120\n\n2 must sit together: 4! \u00d7 2 = 24 \u00d7 2 = 48\n<\/code><\/pre><\/div><br \/>\n<\/div><\/div><\/div>\n<div class=\"iq-qa\"><button class=\"iq-qa__q\" type=\"button\" aria-expanded=\"false\"><span class=\"iq-qa__qtext\">In a DI set with a bar graph and a pie chart shown together, what&#039;s the first thing you should check before answering any question?<\/span><span class=\"iq-qa__meta\"><span class=\"iq-qa__tag\">Data Interpretation<\/span><span class=\"iq-badge iq-badge--easy\">Easy<\/span><span class=\"iq-qa__chev\" aria-hidden=\"true\"><\/span><\/span><\/button><div class=\"iq-qa__a\"><div class=\"iq-qa__a-inner\"><\/p>\n<p>Check the units and the base value each chart represents before touching a single question, because a pie chart usually shows a percentage breakdown of some total that&#8217;s given separately, often in the bar graph or in a line of text above both charts. Answering percentage-of-percentage questions without first converting the pie chart&#8217;s shares back into absolute numbers using that shared base is the most common way to burn time redoing a question.<\/p>\n<p><\/div><\/div><\/div>\n<div class=\"iq-qa\"><button class=\"iq-qa__q\" type=\"button\" aria-expanded=\"false\"><span class=\"iq-qa__qtext\">What&#039;s the pattern in the number series 2, 6, 12, 20, 30, and how do you spot second-difference patterns fast?<\/span><span class=\"iq-qa__meta\"><span class=\"iq-qa__tag\">Number Series<\/span><span class=\"iq-badge iq-badge--easy\">Easy<\/span><span class=\"iq-qa__chev\" aria-hidden=\"true\"><\/span><\/span><\/button><div class=\"iq-qa__a\"><div class=\"iq-qa__a-inner\"><\/p>\n<p>Take the differences between consecutive terms first: 4, 6, 8, 10. Those differences themselves increase by a constant amount, 2 each time, which means the original series follows a quadratic pattern rather than a simple constant-difference or constant-ratio one. The next difference should be 12, so the next term is 30 + 12, which is 42.<\/p>\n<p>Spotting this fast just means checking the first differences before assuming the series is arithmetic or geometric. If the first differences aren&#8217;t constant, check whether they themselves form a clean pattern before giving up and guessing.<\/p>\n<p><\/div><\/div><\/div>\n<div class=\"iq-qa\"><button class=\"iq-qa__q\" type=\"button\" aria-expanded=\"false\"><span class=\"iq-qa__qtext\">In coding-decoding, if CAT is coded as DBU, how is DOG coded, and what&#039;s the underlying rule you&#039;re looking for?<\/span><span class=\"iq-qa__meta\"><span class=\"iq-qa__tag\">Coding-Decoding<\/span><span class=\"iq-badge iq-badge--easy\">Easy<\/span><span class=\"iq-qa__chev\" aria-hidden=\"true\"><\/span><\/span><\/button><div class=\"iq-qa__a\"><div class=\"iq-qa__a-inner\"><\/p>\n<p>Compare each letter&#8217;s position in the alphabet to its coded counterpart. C to D is plus 1, A to B is plus 1, T to U is plus 1, so the rule is simply shift every letter forward by one position in the alphabet. Apply that same shift to DOG: D becomes E, O becomes P, G becomes H, giving EPH.<\/p>\n<p><\/div><\/div><\/div>\n<div class=\"iq-qa\"><button class=\"iq-qa__q\" type=\"button\" aria-expanded=\"false\"><span class=\"iq-qa__qtext\">Find the odd one out: 3, 5, 7, 9, 11. What logic actually justifies calling one of these the odd one, versus just picking the one that looks like an outlier?<\/span><span class=\"iq-qa__meta\"><span class=\"iq-qa__tag\">Classification<\/span><span class=\"iq-badge iq-badge--easy\">Easy<\/span><span class=\"iq-qa__chev\" aria-hidden=\"true\"><\/span><\/span><\/button><div class=\"iq-qa__a\"><div class=\"iq-qa__a-inner\"><\/p>\n<p>Every number here except one is a prime number, 3, 5, 7, and 11 are all prime, while 9 factors into 3 times 3 and isn&#8217;t. The justification has to be a rule that applies cleanly to four of the five and clearly fails for the fifth, not a vague sense that one number &#8220;looks different,&#8221; since in a list of all-odd numbers, oddness itself can&#8217;t be the classifying rule.<\/p>\n<p><\/div><\/div><\/div>\n<div class=\"iq-dsec iq-dsec--medium\"><div class=\"iq-dsec__row\"><h2 class=\"iq-dsec__h\" id=\"medium\"><span class=\"iq-dsec__dot\" aria-hidden=\"true\"><\/span>Medium questions<\/h2><span class=\"iq-dsec__n\">23<\/span><\/div><div class=\"iq-dsec__bar\" aria-hidden=\"true\"><\/div><\/div>\n<div class=\"iq-qa\"><button class=\"iq-qa__q\" type=\"button\" aria-expanded=\"false\"><span class=\"iq-qa__qtext\">A trick question: what&#039;s the largest number that divides both 289 and 391, leaving a remainder of 5 in each case?<\/span><span class=\"iq-qa__meta\"><span class=\"iq-qa__tag\">HCF<\/span><span class=\"iq-badge iq-badge--medium\">Medium<\/span><span class=\"iq-qa__chev\" aria-hidden=\"true\"><\/span><\/span><\/button><div class=\"iq-qa__a\"><div class=\"iq-qa__a-inner\"><\/p>\n<p>The moment a question mentions a common remainder, subtract that remainder from both numbers first, then find the HCF of the reduced numbers. Here that means finding HCF(289-5, 391-5), which is HCF(284, 386).<\/p>\n<p><div class=\"iq-code not-prose\"><div class=\"iq-code__bar\"><span class=\"iq-code__lang\">text<\/span><button class=\"iq-code__copy\" type=\"button\">Copy<\/button><\/div><pre><code class=\"language-text\">\n\n386 = 1\u00d7284 + 102\n\n284 = 2\u00d7102 + 80\n\n102 = 1\u00d780 + 22\n\n80 = 3\u00d722 + 14\n\n22 = 1\u00d714 + 8\n\n14 = 1\u00d78 + 6\n\n8 = 1\u00d76 + 2\n\n6 = 3\u00d72 + 0  \u2192  HCF = 2\n<\/code><\/pre><\/div><\/p>\n<p>Candidates who skip the &#8220;subtract the remainder first&#8221; step almost always end up computing HCF(289, 391) directly, which gives the wrong answer entirely because the numbers themselves aren&#8217;t exact multiples of anything meaningful once you leave the remainder in.<\/p>\n<p><\/div><\/div><\/div>\n<div class=\"iq-qa\"><button class=\"iq-qa__q\" type=\"button\" aria-expanded=\"false\"><span class=\"iq-qa__qtext\">How many trailing zeros does 100! have, and what&#039;s the shortcut?<\/span><span class=\"iq-qa__meta\"><span class=\"iq-qa__tag\">Factorials<\/span><span class=\"iq-badge iq-badge--medium\">Medium<\/span><span class=\"iq-qa__chev\" aria-hidden=\"true\"><\/span><\/span><\/button><div class=\"iq-qa__a\"><div class=\"iq-qa__a-inner\"><\/p>\n<p>Trailing zeros come from factors of 10, and every 10 is a 2 paired with a 5. In a factorial there are always far more factors of 2 than factors of 5, so the count of trailing zeros is just the count of factors of 5 in the number. Divide 100 by 5, then by 25, then by 125 (stopping once the divisor exceeds the number), and add up the quotients.<\/p>\n<p><div class=\"iq-code not-prose\"><div class=\"iq-code__bar\"><span class=\"iq-code__lang\">text<\/span><button class=\"iq-code__copy\" type=\"button\">Copy<\/button><\/div><pre><code class=\"language-text\">\n\n100 \/ 5   = 20\n\n100 \/ 25  = 4\n\n100 \/ 125 = 0 (stop)\n\nTrailing zeros = 20 + 4 = 24\n<\/code><\/pre><\/div><br \/>\n<\/div><\/div><\/div>\n<div class=\"iq-qa\"><button class=\"iq-qa__q\" type=\"button\" aria-expanded=\"false\"><span class=\"iq-qa__qtext\">How do you find the unit digit of a number raised to a large power, like 7 to the power 123?<\/span><span class=\"iq-qa__meta\"><span class=\"iq-qa__tag\">Unit Digit<\/span><span class=\"iq-badge iq-badge--medium\">Medium<\/span><span class=\"iq-qa__chev\" aria-hidden=\"true\"><\/span><\/span><\/button><div class=\"iq-qa__a\"><div class=\"iq-qa__a-inner\"><\/p>\n<p>Unit digits repeat in a cycle of at most 4 as you raise a base to successive powers, so the trick is finding that cycle and then working out where the given exponent falls inside it. For 7, the unit digits of 7^1, 7^2, 7^3, 7^4 are 7, 9, 3, 1, and then the cycle repeats.<\/p>\n<p><div class=\"iq-code not-prose\"><div class=\"iq-code__bar\"><span class=\"iq-code__lang\">text<\/span><button class=\"iq-code__copy\" type=\"button\">Copy<\/button><\/div><pre><code class=\"language-text\">\n\nCycle for 7: 7, 9, 3, 1 (length 4)\n\n123 mod 4 = 3  \u2192  matches the 3rd position in the cycle\n\n7^123 has unit digit 3\n<\/code><\/pre><\/div><\/p>\n<p>The one gotcha: if the exponent mod 4 comes out to 0, that maps to the last position in the cycle, not a fresh cycle starting at position 0. People who forget that off-by-one usually get the unit digit for a multiple-of-4 exponent wrong.<\/p>\n<p><\/div><\/div><\/div>\n<div class=\"iq-qa\"><button class=\"iq-qa__q\" type=\"button\" aria-expanded=\"false\"><span class=\"iq-qa__qtext\">What&#039;s the difference between a successive percentage change and simply adding the two percentages?<\/span><span class=\"iq-qa__meta\"><span class=\"iq-qa__tag\">Percentages<\/span><span class=\"iq-badge iq-badge--medium\">Medium<\/span><span class=\"iq-qa__chev\" aria-hidden=\"true\"><\/span><\/span><\/button><div class=\"iq-qa__a\"><div class=\"iq-qa__a-inner\"><\/p>\n<p>A successive change means the second percentage is applied to the already-changed value, not the original one, so you can&#8217;t just add the two percentages together and call it done except as a rough estimate. The correct formula for two successive changes of a percent and b percent is a + b + (ab\/100), and that correction term, ab over 100, is exactly what candidates forget under time pressure.<\/p>\n<p><div class=\"iq-code not-prose\"><div class=\"iq-code__bar\"><span class=\"iq-code__lang\">text<\/span><button class=\"iq-code__copy\" type=\"button\">Copy<\/button><\/div><pre><code class=\"language-text\">\n\nTwo successive increases of 10% and 20%:\n\nNaive (wrong): 10 + 20 = 30%\n\nCorrect: 10 + 20 + (10\u00d720)\/100 = 32%\n<\/code><\/pre><\/div><\/p>\n<p>The sign of that correction term flips when one of the changes is a decrease, so a 10 percent increase followed by a 20 percent decrease works out to 10 &#8211; 20 &#8211; (10\u00d720)\/100 = -12 percent, an overall 12 percent decrease.<\/p>\n<p><\/div><\/div><\/div>\n<div class=\"iq-qa\"><button class=\"iq-qa__q\" type=\"button\" aria-expanded=\"false\"><span class=\"iq-qa__qtext\">Simple interest versus compound interest on the same principal and rate, which is always larger after year one, and when do they start to diverge meaningfully?<\/span><span class=\"iq-qa__meta\"><span class=\"iq-qa__tag\">Interest<\/span><span class=\"iq-badge iq-badge--medium\">Medium<\/span><span class=\"iq-qa__chev\" aria-hidden=\"true\"><\/span><\/span><\/button><div class=\"iq-qa__a\"><div class=\"iq-qa__a-inner\"><\/p>\n<p>For a single year, simple interest and compound interest give exactly the same amount, because there&#8217;s nothing yet to compound on. The difference only starts showing up from the second year onward, since compound interest earns interest on the previous year&#8217;s interest and simple interest never does.<\/p>\n<p><div class=\"iq-code not-prose\"><div class=\"iq-code__bar\"><span class=\"iq-code__lang\">text<\/span><button class=\"iq-code__copy\" type=\"button\">Copy<\/button><\/div><pre><code class=\"language-text\">\n\nPrincipal 1000, rate 10%, 2 years:\n\nSI = 1000 \u00d7 10 \u00d7 2 \/ 100 = 200\n\nCI = 1000 \u00d7 (1.10^2 \u2013 1) = 1000 \u00d7 0.21 = 210\n\nDifference at year 2 = 10 (this equals P\u00d7(r\/100)^2 for 2 years)\n<\/code><\/pre><\/div><\/p>\n<p>That&#8217;s also a useful shortcut for a specific question type: the difference between CI and SI over exactly two years always equals the principal times the square of the rate, expressed as a decimal.<\/p>\n<p><\/div><\/div><\/div>\n<div class=\"iq-qa\"><button class=\"iq-qa__q\" type=\"button\" aria-expanded=\"false\"><span class=\"iq-qa__qtext\">A trader claims a 25 percent profit but actually uses a false weight of 800 grams for a kilogram. What&#039;s his real profit percentage?<\/span><span class=\"iq-qa__meta\"><span class=\"iq-qa__tag\">Profit and Loss<\/span><span class=\"iq-badge iq-badge--medium\">Medium<\/span><span class=\"iq-qa__chev\" aria-hidden=\"true\"><\/span><\/span><\/button><div class=\"iq-qa__a\"><div class=\"iq-qa__a-inner\"><\/p>\n<p>This is a two-step trap. The claimed 25 percent markup applies to the price he charges, but he&#8217;s also handing over less actual product than he&#8217;s charging for, so the real profit compounds both effects rather than just adding them. The standard formula for profit from a false weight alone is (true weight minus claimed weight) over claimed weight, times 100, which for 1000 grams claimed but 800 grams delivered is 200\/800 = 25 percent.<\/p>\n<p>Combine that 25 percent weight-based profit with the 25 percent markup he&#8217;s already charging using the successive-percentage formula: 25 + 25 + (25\u00d725)\/100 = 56.25 percent. That&#8217;s the number most candidates miss, they compute one of the two 25 percents and stop, instead of combining both sources of profit.<\/p>\n<p><\/div><\/div><\/div>\n<div class=\"iq-qa\"><button class=\"iq-qa__q\" type=\"button\" aria-expanded=\"false\"><span class=\"iq-qa__qtext\">Two trains moving in opposite directions versus the same direction, how does relative speed change and why does that trip people up?<\/span><span class=\"iq-qa__meta\"><span class=\"iq-qa__tag\">Relative Speed<\/span><span class=\"iq-badge iq-badge--medium\">Medium<\/span><span class=\"iq-qa__chev\" aria-hidden=\"true\"><\/span><\/span><\/button><div class=\"iq-qa__a\"><div class=\"iq-qa__a-inner\"><\/p>\n<p>Moving toward each other or apart from each other, relative speed is the sum of the two individual speeds, because the gap between them is closing or opening at the combined rate. Moving in the same direction, relative speed is the difference of the two speeds, because only the speed gap matters for how fast one train pulls away from or catches up to the other.<\/p>\n<p>The trip-up is almost always a sign error under pressure, adding when the question actually calls for subtraction, especially in a &#8220;train A catches up with train B&#8221; question where both are moving the same way. Reading the direction words carefully before touching the formula saves more time than memorizing the formula itself.<\/p>\n<p><\/div><\/div><\/div>\n<div class=\"iq-qa\"><button class=\"iq-qa__q\" type=\"button\" aria-expanded=\"false\"><span class=\"iq-qa__qtext\">Given a boat&#039;s upstream and downstream times over the same distance, how do you get its speed in still water and the stream&#039;s speed separately?<\/span><span class=\"iq-qa__meta\"><span class=\"iq-qa__tag\">Boats and Streams<\/span><span class=\"iq-badge iq-badge--medium\">Medium<\/span><span class=\"iq-qa__chev\" aria-hidden=\"true\"><\/span><\/span><\/button><div class=\"iq-qa__a\"><div class=\"iq-qa__a-inner\"><\/p>\n<p>Downstream speed is the boat&#8217;s own speed plus the current, upstream speed is the boat&#8217;s own speed minus the current. Once you&#8217;ve computed both of those speeds from distance and time, the boat&#8217;s still-water speed is their average and the stream&#8217;s speed is half their difference.<\/p>\n<p><div class=\"iq-code not-prose\"><div class=\"iq-code__bar\"><span class=\"iq-code__lang\">text<\/span><button class=\"iq-code__copy\" type=\"button\">Copy<\/button><\/div><pre><code class=\"language-text\">\n\nDownstream speed = 20 km\/h, Upstream speed = 12 km\/h\n\nBoat\u2019s speed in still water = (20 + 12) \/ 2 = 16 km\/h\n\nStream\u2019s speed = (20 \u2013 12) \/ 2 = 4 km\/h\n<\/code><\/pre><\/div><br \/>\n<\/div><\/div><\/div>\n<div class=\"iq-qa\"><button class=\"iq-qa__q\" type=\"button\" aria-expanded=\"false\"><span class=\"iq-qa__qtext\">A tap fills a tank in 6 hours and another tap empties it in 8 hours. If both are opened together, does the tank ever fill? How long does it take?<\/span><span class=\"iq-qa__meta\"><span class=\"iq-qa__tag\">Pipes and Cisterns<\/span><span class=\"iq-badge iq-badge--medium\">Medium<\/span><span class=\"iq-qa__chev\" aria-hidden=\"true\"><\/span><\/span><\/button><div class=\"iq-qa__a\"><div class=\"iq-qa__a-inner\"><\/p>\n<p>Yes, because the filling rate (1\/6 per hour) is faster than the emptying rate (1\/8 per hour), so the net rate is still positive. Subtract the two rates the same way you&#8217;d add rates for two people working together, since an outlet pipe is really just negative work.<\/p>\n<p><div class=\"iq-code not-prose\"><div class=\"iq-code__bar\"><span class=\"iq-code__lang\">text<\/span><button class=\"iq-code__copy\" type=\"button\">Copy<\/button><\/div><pre><code class=\"language-text\">\n\nFill rate = 1\/6 per hour\n\nEmpty rate = 1\/8 per hour\n\nNet rate = 1\/6 \u2013 1\/8 = 4\/24 \u2013 3\/24 = 1\/24 per hour\n\nTime to fill = 24 hours\n<\/code><\/pre><\/div><br \/>\n<\/div><\/div><\/div>\n<div class=\"iq-qa\"><button class=\"iq-qa__q\" type=\"button\" aria-expanded=\"false\"><span class=\"iq-qa__qtext\">Three people can do a job alone in a, b, and c days. How do you turn their combined daily fraction back into a total number of days?<\/span><span class=\"iq-qa__meta\"><span class=\"iq-qa__tag\">Time and Work<\/span><span class=\"iq-badge iq-badge--medium\">Medium<\/span><span class=\"iq-qa__chev\" aria-hidden=\"true\"><\/span><\/span><\/button><div class=\"iq-qa__a\"><div class=\"iq-qa__a-inner\"><\/p>\n<p>Add their individual daily rates, 1\/a plus 1\/b plus 1\/c, to get the fraction of the job they finish together in one day, then take the reciprocal of that sum to get the total number of days. The step people skip under time pressure is that final reciprocal, they compute the combined daily fraction correctly and then report that fraction itself as the answer instead of flipping it.<\/p>\n<p><div class=\"iq-code not-prose\"><div class=\"iq-code__bar\"><span class=\"iq-code__lang\">text<\/span><button class=\"iq-code__copy\" type=\"button\">Copy<\/button><\/div><pre><code class=\"language-text\">\n\na=8, b=12, c=24 days\n\nCombined rate = 1\/8 + 1\/12 + 1\/24 = 3\/24 + 2\/24 + 1\/24 = 6\/24 = 1\/4\n\nTotal time together = 4 days\n<\/code><\/pre><\/div><br \/>\n<\/div><\/div><\/div>\n<div class=\"iq-qa\"><button class=\"iq-qa__q\" type=\"button\" aria-expanded=\"false\"><span class=\"iq-qa__qtext\">A mixture has milk and water in a ratio of 4 to 1. How much water do you add to 25 liters of that mixture to bring the ratio to 2 to 1?<\/span><span class=\"iq-qa__meta\"><span class=\"iq-qa__tag\">Mixtures<\/span><span class=\"iq-badge iq-badge--medium\">Medium<\/span><span class=\"iq-qa__chev\" aria-hidden=\"true\"><\/span><\/span><\/button><div class=\"iq-qa__a\"><div class=\"iq-qa__a-inner\"><\/p>\n<p>In 25 liters at a 4:1 ratio, milk is 20 liters and water is 5 liters. Adding water only increases the water side, milk stays fixed at 20 liters, so set up the new ratio with milk fixed and solve for the new water amount.<\/p>\n<p><div class=\"iq-code not-prose\"><div class=\"iq-code__bar\"><span class=\"iq-code__lang\">text<\/span><button class=\"iq-code__copy\" type=\"button\">Copy<\/button><\/div><pre><code class=\"language-text\">\n\nMilk = 25 \u00d7 4\/5 = 20 L, Water = 25 \u00d7 1\/5 = 5 L\n\nNew ratio needed: milk:water = 2:1, milk stays at 20\n\n20 \/ new_water = 2\/1  \u2192  new_water = 10 L\n\nWater to add = 10 \u2013 5 = 5 L\n<\/code><\/pre><\/div><br \/>\n<\/div><\/div><\/div>\n<div class=\"iq-qa\"><button class=\"iq-qa__q\" type=\"button\" aria-expanded=\"false\"><span class=\"iq-qa__qtext\">What is alligation, and when is it faster than setting up an equation?<\/span><span class=\"iq-qa__meta\"><span class=\"iq-qa__tag\">Alligation<\/span><span class=\"iq-badge iq-badge--medium\">Medium<\/span><span class=\"iq-qa__chev\" aria-hidden=\"true\"><\/span><\/span><\/button><div class=\"iq-qa__a\"><div class=\"iq-qa__a-inner\"><\/p>\n<p>Alligation is a shortcut for finding the ratio in which two ingredients at different values (price, concentration, whatever the quantity being mixed represents) must be combined to produce a mixture at a target value in between. Cross-subtract diagonally: the ratio of the two quantities equals (higher value minus mean value) to (mean value minus lower value).<\/p>\n<p><div class=\"iq-code not-prose\"><div class=\"iq-code__bar\"><span class=\"iq-code__lang\">text<\/span><button class=\"iq-code__copy\" type=\"button\">Copy<\/button><\/div><pre><code class=\"language-text\">\n\nMixing 10%-fat milk and 20%-fat cream to get 15%-fat mixture:\n\nRatio of 10% : 20% = (20-15) : (15-10) = 5 : 5 = 1:1\n<\/code><\/pre><\/div><\/p>\n<p>It&#8217;s faster than an equation for anything with exactly two ingredients and a target mean, which is the majority of mixture questions on a timed test. Once there are three or more components involved, it stops being a clean shortcut and an equation is usually less error-prone.<\/p>\n<p><\/div><\/div><\/div>\n<div class=\"iq-qa\"><button class=\"iq-qa__q\" type=\"button\" aria-expanded=\"false\"><span class=\"iq-qa__qtext\">The average of 5 numbers is 20. If one number is replaced by a new one, the average becomes 22. What was the change in that one number?<\/span><span class=\"iq-qa__meta\"><span class=\"iq-qa__tag\">Averages<\/span><span class=\"iq-badge iq-badge--medium\">Medium<\/span><span class=\"iq-qa__chev\" aria-hidden=\"true\"><\/span><\/span><\/button><div class=\"iq-qa__a\"><div class=\"iq-qa__a-inner\"><\/p>\n<p>Total for the original 5 numbers is 5 times 20, which is 100. Total after the replacement is 5 times 22, which is 110. Since only one number changed and the other four stayed exactly the same, the entire 10-point jump in the total came from that one replaced number, so it increased by 10.<\/p>\n<p><\/div><\/div><\/div>\n<div class=\"iq-qa\"><button class=\"iq-qa__q\" type=\"button\" aria-expanded=\"false\"><span class=\"iq-qa__qtext\">How many ways can a committee of 3 be chosen from 5 men and 4 women if it must include at least 1 woman?<\/span><span class=\"iq-qa__meta\"><span class=\"iq-qa__tag\">Combinations<\/span><span class=\"iq-badge iq-badge--medium\">Medium<\/span><span class=\"iq-qa__chev\" aria-hidden=\"true\"><\/span><\/span><\/button><div class=\"iq-qa__a\"><div class=\"iq-qa__a-inner\"><\/p>\n<p>&#8220;At least 1&#8221; is almost always faster to solve by subtracting the case you don&#8217;t want from the total, rather than adding up every valid case separately. Total ways to choose any 3 people from 9 is C(9,3) = 84. Subtract the one case that violates the condition, all-men committees, C(5,3) = 10, leaving 74.<\/p>\n<p><div class=\"iq-code not-prose\"><div class=\"iq-code__bar\"><span class=\"iq-code__lang\">text<\/span><button class=\"iq-code__copy\" type=\"button\">Copy<\/button><\/div><pre><code class=\"language-text\">\n\nTotal = C(9,3) = 84\n\nAll-men (invalid) = C(5,3) = 10\n\nAt least 1 woman = 84 \u2013 10 = 74\n<\/code><\/pre><\/div><br \/>\n<\/div><\/div><\/div>\n<div class=\"iq-qa\"><button class=\"iq-qa__q\" type=\"button\" aria-expanded=\"false\"><span class=\"iq-qa__qtext\">What&#039;s the probability of getting at least one head in three tosses of a fair coin, and why is that phrasing usually solved backward?<\/span><span class=\"iq-qa__meta\"><span class=\"iq-qa__tag\">Probability<\/span><span class=\"iq-badge iq-badge--medium\">Medium<\/span><span class=\"iq-qa__chev\" aria-hidden=\"true\"><\/span><\/span><\/button><div class=\"iq-qa__a\"><div class=\"iq-qa__a-inner\"><\/p>\n<p>&#8220;At least one&#8221; has many ways to succeed, at least one head could mean 1, 2, or 3 heads, but exactly one way to fail entirely, zero heads. It&#8217;s almost always faster to compute the probability of the one failing case and subtract from 1 than to add up every succeeding case.<\/p>\n<p><div class=\"iq-code not-prose\"><div class=\"iq-code__bar\"><span class=\"iq-code__lang\">text<\/span><button class=\"iq-code__copy\" type=\"button\">Copy<\/button><\/div><pre><code class=\"language-text\">\n\nP(no heads in 3 tosses) = (1\/2)^3 = 1\/8\n\nP(at least one head) = 1 \u2013 1\/8 = 7\/8\n<\/code><\/pre><\/div><br \/>\n<\/div><\/div><\/div>\n<div class=\"iq-qa\"><button class=\"iq-qa__q\" type=\"button\" aria-expanded=\"false\"><span class=\"iq-qa__qtext\">How many distinct arrangements does the word MISSISSIPPI have, and why do you divide by factorials of the repeated letters?<\/span><span class=\"iq-qa__meta\"><span class=\"iq-qa__tag\">Permutations<\/span><span class=\"iq-badge iq-badge--medium\">Medium<\/span><span class=\"iq-qa__chev\" aria-hidden=\"true\"><\/span><\/span><\/button><div class=\"iq-qa__a\"><div class=\"iq-qa__a-inner\"><\/p>\n<p>If every letter were distinct, an 11-letter word would have 11 factorial arrangements. But MISSISSIPPI repeats letters, 4 I&#8217;s, 4 S&#8217;s, and 2 P&#8217;s, and swapping two identical letters produces an arrangement that looks exactly the same on paper, so those swaps have already been overcounted and need to be divided back out.<\/p>\n<p><div class=\"iq-code not-prose\"><div class=\"iq-code__bar\"><span class=\"iq-code__lang\">text<\/span><button class=\"iq-code__copy\" type=\"button\">Copy<\/button><\/div><pre><code class=\"language-text\">\n\nTotal letters = 11 (M-1, I-4, S-4, P-2)\n\nArrangements = 11! \/ (4! \u00d7 4! \u00d7 2!) = 39,916,800 \/ 1,152 = 34,650\n<\/code><\/pre><\/div><br \/>\n<\/div><\/div><\/div>\n<div class=\"iq-qa\"><button class=\"iq-qa__q\" type=\"button\" aria-expanded=\"false\"><span class=\"iq-qa__qtext\">How do you quickly estimate a percentage from a pie chart without a calculator, using degree measures?<\/span><span class=\"iq-qa__meta\"><span class=\"iq-qa__tag\">Data Interpretation<\/span><span class=\"iq-badge iq-badge--medium\">Medium<\/span><span class=\"iq-qa__chev\" aria-hidden=\"true\"><\/span><\/span><\/button><div class=\"iq-qa__a\"><div class=\"iq-qa__a-inner\"><\/p>\n<p>A full pie chart is 360 degrees representing 100 percent, so each degree is exactly 100\/360, which is 5\/18 percent. Instead of dividing by 360 directly, multiply the given degree value by 5\/18, which is usually faster to do in your head, especially when the degree value is a multiple of 18 or 36.<\/p>\n<p><div class=\"iq-code not-prose\"><div class=\"iq-code__bar\"><span class=\"iq-code__lang\">text<\/span><button class=\"iq-code__copy\" type=\"button\">Copy<\/button><\/div><pre><code class=\"language-text\">\n\nA sector spans 72 degrees.\n\nPercentage = 72 \u00d7 5\/18 = 20%\n<\/code><\/pre><\/div><br \/>\n<\/div><\/div><\/div>\n<div class=\"iq-qa\"><button class=\"iq-qa__q\" type=\"button\" aria-expanded=\"false\"><span class=\"iq-qa__qtext\">A table shows year-on-year sales. How do you compute CAGR from that table, and how is it different from a simple average growth rate?<\/span><span class=\"iq-qa__meta\"><span class=\"iq-qa__tag\">Data Interpretation<\/span><span class=\"iq-badge iq-badge--medium\">Medium<\/span><span class=\"iq-qa__chev\" aria-hidden=\"true\"><\/span><\/span><\/button><div class=\"iq-qa__a\"><div class=\"iq-qa__a-inner\"><\/p>\n<p>CAGR, compound annual growth rate, is the single constant annual rate that would take the starting value to the ending value over the given number of years if it compounded every year, and it&#8217;s found by taking the nth root of the ratio of ending to starting value, then subtracting 1. A simple average of the year-by-year percentage changes ignores compounding entirely and treats each year&#8217;s growth as if it were happening off the original base every time, which overstates or understates the real trend depending on the pattern of the numbers.<\/p>\n<p><div class=\"iq-code not-prose\"><div class=\"iq-code__bar\"><span class=\"iq-code__lang\">text<\/span><button class=\"iq-code__copy\" type=\"button\">Copy<\/button><\/div><pre><code class=\"language-text\">\n\nSales grow from 100 to 200 over 5 years\n\nCAGR = (200\/100)^(1\/5) \u2013 1 = 2^0.2 \u2013 1 \u2248 0.1487  \u2192  ~14.87%\n<\/code><\/pre><\/div><br \/>\n<\/div><\/div><\/div>\n<div class=\"iq-qa\"><button class=\"iq-qa__q\" type=\"button\" aria-expanded=\"false\"><span class=\"iq-qa__qtext\">What&#039;s the fastest way to compare two fractions like 47\/63 and 52\/71 without a calculator?<\/span><span class=\"iq-qa__meta\"><span class=\"iq-qa__tag\">Data Interpretation<\/span><span class=\"iq-badge iq-badge--medium\">Medium<\/span><span class=\"iq-qa__chev\" aria-hidden=\"true\"><\/span><\/span><\/button><div class=\"iq-qa__a\"><div class=\"iq-qa__a-inner\"><\/p>\n<p>Cross-multiply instead of converting both to decimals. Compare 47 times 71 against 52 times 63, whichever product is bigger tells you which fraction is bigger, since cross-multiplication preserves the inequality direction as long as both denominators are positive.<\/p>\n<p><div class=\"iq-code not-prose\"><div class=\"iq-code__bar\"><span class=\"iq-code__lang\">text<\/span><button class=\"iq-code__copy\" type=\"button\">Copy<\/button><\/div><pre><code class=\"language-text\">\n\n47 \u00d7 71 = 3337\n\n52 \u00d7 63 = 3276\n\n3337 &gt; 3276  \u2192  47\/63 &gt; 52\/71\n<\/code><\/pre><\/div><br \/>\n<\/div><\/div><\/div>\n<div class=\"iq-qa\"><button class=\"iq-qa__q\" type=\"button\" aria-expanded=\"false\"><span class=\"iq-qa__qtext\">Pointing to a photograph, a man says &#039;She is the daughter of my grandfather&#039;s only son.&#039; How is she related to the man?<\/span><span class=\"iq-qa__meta\"><span class=\"iq-qa__tag\">Blood Relations<\/span><span class=\"iq-badge iq-badge--medium\">Medium<\/span><span class=\"iq-qa__chev\" aria-hidden=\"true\"><\/span><\/span><\/button><div class=\"iq-qa__a\"><div class=\"iq-qa__a-inner\"><\/p>\n<p>Work outward from the fixed point, not from the pronoun. The grandfather&#8217;s only son is the man&#8217;s father, since the man himself is a descendant of that grandfather and the son being referred to has to be the direct link in that generation. The daughter of the man&#8217;s father is either the man&#8217;s sister, or the man himself if he were female, but since the question already establishes &#8220;she&#8221; as a separate person being pointed at, the answer is his sister.<\/p>\n<p><\/div><\/div><\/div>\n<div class=\"iq-qa\"><button class=\"iq-qa__q\" type=\"button\" aria-expanded=\"false\"><span class=\"iq-qa__qtext\">How do syllogism questions with some and all statements actually get evaluated, and where do candidates go wrong with some are not?<\/span><span class=\"iq-qa__meta\"><span class=\"iq-qa__tag\">Syllogism<\/span><span class=\"iq-badge iq-badge--medium\">Medium<\/span><span class=\"iq-qa__chev\" aria-hidden=\"true\"><\/span><\/span><\/button><div class=\"iq-qa__a\"><div class=\"iq-qa__a-inner\"><\/p>\n<p>Syllogisms get evaluated by drawing every possible Venn diagram consistent with the given statements and checking whether the proposed conclusion holds in all of them, not just the one diagram that comes to mind first. &#8220;All A are B&#8221; only guarantees A is fully inside B, it says nothing about whether B has anything outside A. &#8220;Some A are not B&#8221; is genuinely weaker than it sounds, it&#8217;s consistent with anywhere from almost-no-overlap to A and B being completely separate categories.<\/p>\n<p>The most common mistake is treating &#8220;some A are B&#8221; as if it implies &#8220;some A are not B,&#8221; which isn&#8217;t guaranteed, it&#8217;s entirely possible that all A are B and the statement &#8220;some A are B&#8221; is still technically true. Syllogism questions exploit exactly that gap between what a statement logically guarantees and what it merely leaves open as a possibility.<\/p>\n<p><\/div><\/div><\/div>\n<div class=\"iq-qa\"><button class=\"iq-qa__q\" type=\"button\" aria-expanded=\"false\"><span class=\"iq-qa__qtext\">A person walks 5km north, turns right and walks 3km, then turns right again and walks 5km. How far and in what direction is he from the start?<\/span><span class=\"iq-qa__meta\"><span class=\"iq-qa__tag\">Directions<\/span><span class=\"iq-badge iq-badge--medium\">Medium<\/span><span class=\"iq-qa__chev\" aria-hidden=\"true\"><\/span><\/span><\/button><div class=\"iq-qa__a\"><div class=\"iq-qa__a-inner\"><\/p>\n<p>Track each leg on a mental (or scratch-paper) coordinate grid rather than trying to hold the whole path in your head. Starting at (0,0): 5km north puts him at (0,5). Turning right (now facing east) and walking 3km puts him at (3,5). Turning right again (now facing south) and walking 5km puts him at (3,0).<\/p>\n<p><div class=\"iq-code not-prose\"><div class=\"iq-code__bar\"><span class=\"iq-code__lang\">text<\/span><button class=\"iq-code__copy\" type=\"button\">Copy<\/button><\/div><pre><code class=\"language-text\">\n\nStart: (0,0)\n\nAfter 5km north: (0,5)\n\nAfter 3km east: (3,5)\n\nAfter 5km south: (3,0)\n\nDistance from start = sqrt(3^2 + 0^2) = 3 km, due east\n<\/code><\/pre><\/div><\/p>\n<p>The two 5km legs, one north and one south, cancel out completely, which is exactly the kind of detail the question is testing for, whether you actually plot the path or just add up all the distances walked regardless of direction.<\/p>\n<p><\/div><\/div><\/div>\n<div class=\"iq-qa\"><button class=\"iq-qa__q\" type=\"button\" aria-expanded=\"false\"><span class=\"iq-qa__qtext\">What&#039;s the difference between a syllogism conclusion that follows and one that&#039;s merely possible, and why do test-makers exploit that gap?<\/span><span class=\"iq-qa__meta\"><span class=\"iq-qa__tag\">Syllogism<\/span><span class=\"iq-badge iq-badge--medium\">Medium<\/span><span class=\"iq-qa__chev\" aria-hidden=\"true\"><\/span><\/span><\/button><div class=\"iq-qa__a\"><div class=\"iq-qa__a-inner\"><\/p>\n<p>A conclusion &#8220;follows&#8221; only if it&#8217;s true in every single Venn diagram consistent with the given statements, no exceptions. A conclusion is merely &#8220;possible&#8221; if there&#8217;s at least one valid diagram where it&#8217;s true and at least one other valid diagram where it&#8217;s false, meaning the given statements don&#8217;t guarantee it either way.<\/p>\n<p>Test-writers exploit this because a possible conclusion often reads as intuitively likely, the kind of thing a reasonable person would guess is true, which is exactly why candidates mark it as following when it&#8217;s actually still open. The discipline required here is mechanical: draw the most extreme diagram that still satisfies every given statement, and if the conclusion breaks in that extreme case, it doesn&#8217;t follow, no matter how reasonable it sounds.<\/p>\n<p><\/div><\/div><\/div>\n<div class=\"iq-dsec iq-dsec--hard\"><div class=\"iq-dsec__row\"><h2 class=\"iq-dsec__h\" id=\"hard\"><span class=\"iq-dsec__dot\" aria-hidden=\"true\"><\/span>Hard questions<\/h2><span class=\"iq-dsec__n\">12<\/span><\/div><div class=\"iq-dsec__bar\" aria-hidden=\"true\"><\/div><\/div>\n<div class=\"iq-qa\"><button class=\"iq-qa__q\" type=\"button\" aria-expanded=\"false\"><span class=\"iq-qa__qtext\">Two numbers are in the ratio 3:4 and their LCM is 84. What are the numbers, and why doesn&#039;t the ratio alone tell you the answer?<\/span><span class=\"iq-qa__meta\"><span class=\"iq-qa__tag\">Ratio and LCM<\/span><span class=\"iq-badge iq-badge--hard\">Hard<\/span><span class=\"iq-qa__chev\" aria-hidden=\"true\"><\/span><\/span><\/button><div class=\"iq-qa__a\"><div class=\"iq-qa__a-inner\"><\/p>\n<p>A ratio only fixes the relative size of two numbers, not their actual values, so you need a second piece of information, here the LCM, to pin down a common multiplier. If the numbers are 3k and 4k, their LCM (since 3 and 4 share no common factor) is 12k. Setting 12k equal to 84 gives k = 7, so the numbers are 21 and 28.<\/p>\n<p><div class=\"iq-code not-prose\"><div class=\"iq-code__bar\"><span class=\"iq-code__lang\">text<\/span><button class=\"iq-code__copy\" type=\"button\">Copy<\/button><\/div><pre><code class=\"language-text\">\n\nNumbers: 3k and 4k\n\ngcd(3, 4) = 1, so LCM(3k, 4k) = 12k\n\n12k = 84  \u2192  k = 7\n\nNumbers: 21 and 28\n<\/code><\/pre><\/div><\/p>\n<p>This only works cleanly because 3 and 4 are coprime. If the ratio terms shared a common factor, you&#8217;d have to strip that out first before multiplying to get the LCM formula right.<\/p>\n<p><\/div><\/div><\/div>\n<div class=\"iq-qa\"><button class=\"iq-qa__q\" type=\"button\" aria-expanded=\"false\"><span class=\"iq-qa__qtext\">Two items are sold at the same price, one at a 20 percent profit and the other at a 20 percent loss. Is the overall result profit, loss, or breakeven?<\/span><span class=\"iq-qa__meta\"><span class=\"iq-qa__tag\">Profit and Loss<\/span><span class=\"iq-badge iq-badge--hard\">Hard<\/span><span class=\"iq-qa__chev\" aria-hidden=\"true\"><\/span><\/span><\/button><div class=\"iq-qa__a\"><div class=\"iq-qa__a-inner\"><\/p>\n<p>It&#8217;s always a loss, and the size of that loss follows a clean formula: when the same selling price gives a profit of x percent on one item and a loss of x percent on the other, the overall result is a loss of (x\/10) squared percent. For x = 20, that&#8217;s a 4 percent loss overall, not breakeven.<\/p>\n<p><div class=\"iq-code not-prose\"><div class=\"iq-code__bar\"><span class=\"iq-code__lang\">text<\/span><button class=\"iq-code__copy\" type=\"button\">Copy<\/button><\/div><pre><code class=\"language-text\">\n\nItem A: sold at 120% of its cost (20% profit)\n\nItem B: sold at 80% of its cost (20% loss)\n\nBoth sold at the same price P, so:\n\nCost A = P \/ 1.20, Cost B = P \/ 0.80\n\nTotal cost = P\/1.2 + P\/0.8, Total SP = 2P\n\nLoss % = (x\/10)^2 = (20\/10)^2 = 4%\n<\/code><\/pre><\/div><\/p>\n<p>The reason it&#8217;s never breakeven: equal percentage profit and loss aren&#8217;t symmetric in absolute terms, because they&#8217;re each measured against a different cost price, and the item sold at a loss had a higher original cost than the one sold at a profit.<\/p>\n<p><\/div><\/div><\/div>\n<div class=\"iq-qa\"><button class=\"iq-qa__q\" type=\"button\" aria-expanded=\"false\"><span class=\"iq-qa__qtext\">A man travels a certain distance at speed x and returns at speed y. What&#039;s his average speed for the round trip, and why is it not just x plus y over 2?<\/span><span class=\"iq-qa__meta\"><span class=\"iq-qa__tag\">Average Speed<\/span><span class=\"iq-badge iq-badge--hard\">Hard<\/span><span class=\"iq-qa__chev\" aria-hidden=\"true\"><\/span><\/span><\/button><div class=\"iq-qa__a\"><div class=\"iq-qa__a-inner\"><\/p>\n<p>Average speed for equal distances at two different speeds is the harmonic mean, 2xy over x plus y, not the arithmetic mean, because he spends more time traveling at the slower speed. Average speed is always total distance over total time, and since the distances are equal but the times aren&#8217;t, the arithmetic mean overweights the faster leg.<\/p>\n<p><div class=\"iq-code not-prose\"><div class=\"iq-code__bar\"><span class=\"iq-code__lang\">text<\/span><button class=\"iq-code__copy\" type=\"button\">Copy<\/button><\/div><pre><code class=\"language-text\">\n\nDistance D each way, speeds x and y\n\nTime out = D\/x, Time back = D\/y\n\nTotal distance = 2D, Total time = D\/x + D\/y = D(x+y)\/(xy)\n\nAverage speed = 2D \/ [D(x+y)\/(xy)] = 2xy \/ (x+y)\n<\/code><\/pre><\/div><\/p>\n<p>For x = 40 and y = 60, the harmonic mean gives 48, while the naive arithmetic average would wrongly give 50. The gap between the two grows as x and y get further apart.<\/p>\n<p><\/div><\/div><\/div>\n<div class=\"iq-qa\"><button class=\"iq-qa__q\" type=\"button\" aria-expanded=\"false\"><span class=\"iq-qa__qtext\">A container has a mixture that&#039;s repeatedly diluted, some volume removed and replaced with water, n times. What&#039;s the concentration formula, and why do people forget the exponent?<\/span><span class=\"iq-qa__meta\"><span class=\"iq-qa__tag\">Mixtures<\/span><span class=\"iq-badge iq-badge--hard\">Hard<\/span><span class=\"iq-qa__chev\" aria-hidden=\"true\"><\/span><\/span><\/button><div class=\"iq-qa__a\"><div class=\"iq-qa__a-inner\"><\/p>\n<p>Each time you remove a fraction of the mixture and replace it with pure water, the remaining original substance gets multiplied by the same fraction again, so after n repetitions the fraction of the original substance left is (1 minus removed-fraction) raised to the power n, not multiplied by n.<\/p>\n<p><div class=\"iq-code not-prose\"><div class=\"iq-code__bar\"><span class=\"iq-code__lang\">text<\/span><button class=\"iq-code__copy\" type=\"button\">Copy<\/button><\/div><pre><code class=\"language-text\">\n\nContainer: 40 L, remove 4 L and replace with water, 3 times\n\nFraction remaining each time = (40-4)\/40 = 0.9\n\nAfter 3 replacements: original substance left = 40 \u00d7 0.9^3 = 29.16 L\n<\/code><\/pre><\/div><\/p>\n<p>The mistake people make is treating this as a linear reduction, subtracting the same 4 liters worth of concentration three separate times, which massively understates how much of the original substance is actually gone, because the mixture being removed each round is progressively more diluted.<\/p>\n<p><\/div><\/div><\/div>\n<div class=\"iq-qa\"><button class=\"iq-qa__q\" type=\"button\" aria-expanded=\"false\"><span class=\"iq-qa__qtext\">Two dice are thrown together. What&#039;s the probability that the sum is a prime number, and where do candidates usually miscount the sample space?<\/span><span class=\"iq-qa__meta\"><span class=\"iq-qa__tag\">Probability<\/span><span class=\"iq-badge iq-badge--hard\">Hard<\/span><span class=\"iq-qa__chev\" aria-hidden=\"true\"><\/span><\/span><\/button><div class=\"iq-qa__a\"><div class=\"iq-qa__a-inner\"><\/p>\n<p>The full sample space for two dice is 36 outcomes, not 11 (the count of possible sums), because each die is distinct and (3,4) is a different outcome from (4,3) even though both sum to 7. Miscounting the sample space as 11 possible sums, each treated as equally likely, is the single most common error in this topic.<\/p>\n<p>The prime sums possible with two dice are 2, 3, 5, 7, and 11. Counting the actual dice-pair outcomes that produce each: sum 2 has 1 way, sum 3 has 2, sum 5 has 4, sum 7 has 6, sum 11 has 2, for a total of 15 favorable outcomes out of 36, giving a probability of 15\/36, which simplifies to 5\/12.<\/p>\n<p><\/div><\/div><\/div>\n<div class=\"iq-qa\"><button class=\"iq-qa__q\" type=\"button\" aria-expanded=\"false\"><span class=\"iq-qa__qtext\">In a caselet-style DI question with several interlinked conditions in a paragraph, what&#039;s a practical strategy for not getting stuck reading it twice?<\/span><span class=\"iq-qa__meta\"><span class=\"iq-qa__tag\">Data Interpretation<\/span><span class=\"iq-badge iq-badge--hard\">Hard<\/span><span class=\"iq-qa__chev\" aria-hidden=\"true\"><\/span><\/span><\/button><div class=\"iq-qa__a\"><div class=\"iq-qa__a-inner\"><\/p>\n<p>Build a small table or grid as you read the paragraph the first time, rather than reading it once for comprehension and once again to extract numbers. Most caselets describe relationships between a handful of categories, people, products, years, that map cleanly onto rows and columns, and writing the numbers into that grid as you go means you only read the paragraph once.<\/p>\n<p>The other habit worth building: note explicitly which values the caselet gives you directly versus which ones you&#8217;re expected to derive. Test-writers often bury one condition that has to be worked out from two others rather than read off directly, and candidates who treat every number in the paragraph as a given tend to miss that derived value entirely.<\/p>\n<p><\/div><\/div><\/div>\n<div class=\"iq-qa\"><button class=\"iq-qa__q\" type=\"button\" aria-expanded=\"false\"><span class=\"iq-qa__qtext\">In a circular seating arrangement puzzle with 6 people and 4 clues, what&#039;s a reliable way to start without guessing?<\/span><span class=\"iq-qa__meta\"><span class=\"iq-qa__tag\">Seating Arrangement<\/span><span class=\"iq-badge iq-badge--hard\">Hard<\/span><span class=\"iq-qa__chev\" aria-hidden=\"true\"><\/span><\/span><\/button><div class=\"iq-qa__a\"><div class=\"iq-qa__a-inner\"><\/p>\n<p>Start with whichever clue fixes a relationship the most tightly, usually one naming two specific people as immediate neighbors or directly opposite each other, and place those two first before touching any other clue. Placing the loosest clue first, something like &#8220;A is not next to B,&#8221; gives you almost no information to build on and tends to produce false starts that need backtracking.<\/p>\n<p>After placing the tightest clue, work through the remaining clues in order of how many people they involve, fewest first, and eliminate positions rather than trying to solve the whole arrangement in one pass. Most six or eight person circular arrangements resolve fully after two or three clues are placed correctly, the remaining clues usually just confirm the arrangement or fix the last one or two open seats.<\/p>\n<p><\/div><\/div><\/div>\n<div class=\"iq-qa\"><button class=\"iq-qa__q\" type=\"button\" aria-expanded=\"false\"><span class=\"iq-qa__qtext\">What day of the week was January 1, 1901, and what&#039;s the actual method, not the mnemonic, for solving calendar problems fast?<\/span><span class=\"iq-qa__meta\"><span class=\"iq-qa__tag\">Calendar<\/span><span class=\"iq-badge iq-badge--hard\">Hard<\/span><span class=\"iq-qa__chev\" aria-hidden=\"true\"><\/span><\/span><\/button><div class=\"iq-qa__a\"><div class=\"iq-qa__a-inner\"><\/p>\n<p>The real method counts &#8220;odd days,&#8221; the remainder when the total number of days since a known reference point is divided by 7, since the day of the week just cycles every 7 days regardless of the actual date. A normal year contributes 1 odd day, a leap year contributes 2, because 365 mod 7 is 1 and 366 mod 7 is 2.<\/p>\n<p>January 1, 1900 was a Monday (a commonly memorized reference point). 1900 was not a leap year despite being divisible by 4, because century years are only leap years if divisible by 400, and 1900 isn&#8217;t. So 1900 contributes exactly 1 odd day, moving January 1, 1901 forward by one day from Monday to Tuesday. The century-year leap rule is the exact detail candidates forget, treating 1900 as a leap year purely because it&#8217;s divisible by 4 gives the wrong day entirely.<\/p>\n<p><\/div><\/div><\/div>\n<div class=\"iq-qa\"><button class=\"iq-qa__q\" type=\"button\" aria-expanded=\"false\"><span class=\"iq-qa__qtext\">At what time between 3 and 4 o&#039;clock will the minute and hour hands of a clock be exactly opposite each other?<\/span><span class=\"iq-qa__meta\"><span class=\"iq-qa__tag\">Clocks<\/span><span class=\"iq-badge iq-badge--hard\">Hard<\/span><span class=\"iq-qa__chev\" aria-hidden=\"true\"><\/span><\/span><\/button><div class=\"iq-qa__a\"><div class=\"iq-qa__a-inner\"><\/p>\n<p>The minute hand moves 6 degrees per minute and the hour hand moves 0.5 degrees per minute, so the minute hand gains 5.5 degrees on the hour hand every minute. At 3:00 exactly, the hour hand is at 90 degrees and the minute hand is at 0, a gap of 90 degrees. For the hands to be exactly opposite, that gap needs to become 180 degrees.<\/p>\n<p><div class=\"iq-code not-prose\"><div class=\"iq-code__bar\"><span class=\"iq-code__lang\">text<\/span><button class=\"iq-code__copy\" type=\"button\">Copy<\/button><\/div><pre><code class=\"language-text\">\n\nAt 3:00, hour hand is ahead by 90 degrees.\n\nFor hands to be opposite, minute hand must gain 90+180 = 270 degrees on hour hand\n\n(since minute hand needs to go from behind to 180 degrees past)\n\nTime needed = 270 \/ 5.5 = 49 1\/11 minutes\n\nAnswer: 3:49 1\/11\n<\/code><\/pre><\/div><\/p>\n<p>The step people skip is realizing the minute hand starts behind the hour hand at 3:00, so it first has to close the 90 degree gap and then open up an additional 180 degrees on the other side, not just close 90 degrees of gap to reach 180.<\/p>\n<p><\/div><\/div><\/div>\n<div class=\"iq-qa\"><button class=\"iq-qa__q\" type=\"button\" aria-expanded=\"false\"><span class=\"iq-qa__qtext\">A candidate reduces travel speed by 25 percent for a journey and reaches 20 minutes late. What&#039;s the original time taken, and why does a relative-error method beat setting up two full equations here?<\/span><span class=\"iq-qa__meta\"><span class=\"iq-qa__tag\">Time and Speed<\/span><span class=\"iq-badge iq-badge--hard\">Hard<\/span><span class=\"iq-qa__chev\" aria-hidden=\"true\"><\/span><\/span><\/button><div class=\"iq-qa__a\"><div class=\"iq-qa__a-inner\"><\/p>\n<p>Speed and time are inversely proportional for a fixed distance, so a 25 percent reduction in speed means the new speed is 3\/4 of the original, which means the new time is 4\/3 of the original time, since time is the reciprocal relationship. The time increased by 1\/3 of the original time, and that 1\/3 corresponds to the 20 minute delay given in the question.<\/p>\n<p><div class=\"iq-code not-prose\"><div class=\"iq-code__bar\"><span class=\"iq-code__lang\">text<\/span><button class=\"iq-code__copy\" type=\"button\">Copy<\/button><\/div><pre><code class=\"language-text\">\n\nNew speed = 3\/4 of original  \u2192  New time = 4\/3 of original time\n\nExtra time = (4\/3 \u2013 1) \u00d7 original time = (1\/3) \u00d7 original time = 20 minutes\n\nOriginal time = 60 minutes\n<\/code><\/pre><\/div><\/p>\n<p>Setting up two separate distance equations with an unknown distance and unknown original speed works too, but it&#8217;s slower and gives more places to make an arithmetic slip. Going straight from the percentage change in speed to the reciprocal percentage change in time skips the unknowns entirely.<\/p>\n<p><\/div><\/div><\/div>\n<div class=\"iq-qa\"><button class=\"iq-qa__q\" type=\"button\" aria-expanded=\"false\"><span class=\"iq-qa__qtext\">Why do so many candidates get time-and-work problems with negative work, like a leak in a tank, wrong even when they know the formula?<\/span><span class=\"iq-qa__meta\"><span class=\"iq-qa__tag\">Time and Work<\/span><span class=\"iq-badge iq-badge--hard\">Hard<\/span><span class=\"iq-qa__chev\" aria-hidden=\"true\"><\/span><\/span><\/button><div class=\"iq-qa__a\"><div class=\"iq-qa__a-inner\"><\/p>\n<p>The formula itself, subtracting rates instead of adding them, isn&#8217;t usually the problem. The actual failure point is candidates forgetting that the emptying rate needs to be subtracted from the correct combined filling rate first, before comparing it against the intended time, rather than being applied at the very end as an adjustment to a final answer that&#8217;s already been computed without it.<\/p>\n<p>A typical setup: two pipes together fill a tank in 6 hours, but with a leak present it actually takes 8 hours. The mistake is computing &#8220;6 hours normally, 8 hours with the leak, so the leak alone would empty it in 2 hours,&#8221; which looks reasonable but is wrong, because rates don&#8217;t subtract like that. The leak&#8217;s own rate has to be found by comparing the combined-with-leak rate (1\/8) against the combined-without-leak rate (1\/6), and the leak&#8217;s rate is the difference of those two rates, 1\/6 minus 1\/8, which is 1\/24, meaning the leak alone would empty the tank in 24 hours, not 2.<\/p>\n<p><\/div><\/div><\/div>\n<div class=\"iq-qa\"><button class=\"iq-qa__q\" type=\"button\" aria-expanded=\"false\"><span class=\"iq-qa__qtext\">What&#039;s the single most common careless mistake candidates make under time pressure in a 30 to 40 question aptitude section, based on patterns worth watching for in review?<\/span><span class=\"iq-qa__meta\"><span class=\"iq-qa__tag\">Test Strategy<\/span><span class=\"iq-badge iq-badge--hard\">Hard<\/span><span class=\"iq-qa__chev\" aria-hidden=\"true\"><\/span><\/span><\/button><div class=\"iq-qa__a\"><div class=\"iq-qa__a-inner\"><\/p>\n<p>Misreading which quantity the question is actually asking for, after correctly solving for a different, related quantity. A time-work question asks for the number of days remaining after some work is already done, and the candidate correctly computes total days for the job, then submits that number instead of subtracting the days already elapsed. A percentage question asks for the new value after a change, and the candidate correctly computes the percentage change itself, then submits that percentage instead of applying it to get the final value.<\/p>\n<p>The pattern across almost every version of this mistake: the math itself is done correctly, and the error happens in the last 5 seconds, translating a correctly-computed intermediate result back into the specific answer the question actually asked for. Reading the question a second time after finishing the calculation, specifically to check what&#8217;s being asked rather than to redo the math, catches most of these before they cost a mark.<\/p>\n<p><\/div><\/div><\/div>\n<h2>How to prepare for an aptitude interview in 2026<\/h2>\n<p>Skip the version of prep that&#8217;s just working through a 500-question PDF start to finish. Pick the dozen patterns that actually show up in the section you&#8217;re prepping for, successive percentage change, work-rate problems with a leak or a negative rate, at-least-one probability, and drill those specifically until the setup step is automatic. A candidate who&#8217;s fast on 12 well-chosen patterns beats one who&#8217;s slow but technically correct on all 34 topics IndiaBIX lists.<\/p>\n<p>Time yourself from the start, not after you&#8217;ve already built confidence untimed. Most aptitude sections give roughly a minute per question on average, and the honest constraint isn&#8217;t whether you can solve a given problem, it&#8217;s whether you can solve it, recognize you&#8217;re stuck, and move on within that window. Practicing untimed and only adding a clock at the very end teaches the wrong instinct, since the skill that actually matters under real test conditions is deciding fast when to cut your losses on a question and come back to it later.<\/p>\n<p>One habit that pays off more than people expect: keep a running log of exactly which question types you get wrong, not just the topic name but the specific trap, forgetting the reciprocal step in average speed, treating a possible syllogism conclusion as if it follows, and review that log before each practice session instead of just doing more fresh questions. The same handful of traps tend to repeat across different numbers and different phrasing.<\/p>\n<h2>Get the reps in before the real thing<\/h2>\n<p>Reading through worked solutions is not the same as producing one yourself with a timer running and someone watching. <a href=\"\/products\/mock-interviews\">LastRoundAI&#8217;s mock interview mode<\/a> runs live rounds with real-time follow-up questions in your browser, and the free plan includes 15 credits a month that reset monthly rather than piling up unused. Starter is $19\/mo if a handful of sessions isn&#8217;t enough runway.<\/p>\n<p>Once your speed on the actual test holds up, the slower part of the process is usually getting in front of enough roles that still run an aptitude round as part of hiring. <a href=\"\/products\/auto-apply\">Auto-Apply<\/a> queues tailored applications for your review, 10 a month on the free plan, up to 400 a month on the Ultimate plan, and nothing goes out until you approve it.<\/p>\n<p>Questions about either product go to contact@lastroundai.com. That&#8217;s the only inbox we check.<\/p>\n<div class=\"iq-sources not-prose\"><div class=\"iq-sources__title\">Sources &amp; further reading<\/div><ul class=\"iq-sources__list\"><li><a href=\"https:\/\/www.geeksforgeeks.org\/aptitude\/aptitude-questions-and-answers\/\" target=\"_blank\" rel=\"nofollow noopener\">GeeksforGeeks, Aptitude Questions and Answers<\/a><\/li><li><a href=\"https:\/\/www.indiabix.com\/aptitude\/questions-and-answers\/\" target=\"_blank\" rel=\"nofollow noopener\">IndiaBIX, Aptitude Questions and Answers<\/a><\/li><\/ul><\/div>\n","protected":false},"excerpt":{"rendered":"<p>A final-year engineering student walked out of a campus placement round in 2025 convinced he&#8217;d bombed the technical interview, only to find out later that the actual filter was the aptitude test he&#8217;d taken that morning. He&#8217;d spent three weeks grinding LeetCode and zero minutes on boats and streams, and the recruiter&#8217;s own scorecard weighted&#8230;<\/p>\n","protected":false},"author":4,"featured_media":2034,"comment_status":"open","ping_status":"closed","template":"","meta":{"_kad_post_transparent":"","_kad_post_title":"","_kad_post_layout":"","_kad_post_sidebar_id":"","_kad_post_content_style":"","_kad_post_vertical_padding":"","_kad_post_feature":"","_kad_post_feature_position":"","_kad_post_header":false,"_kad_post_footer":false,"_kad_post_classname":"","footnotes":""},"tags":[],"class_list":["post-2009","iq","type-iq","status-publish","has-post-thumbnail","hentry"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v27.8 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>Aptitude Interview Questions (2026): Q&amp;A | LastRoundAI<\/title>\n<meta name=\"description\" content=\"50 real aptitude interview questions for 2026: percentages, time and work, permutations, probability, data interpretation, and logical reasoning, with worked answers.\" \/>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/lastroundai.com\/interview-questions\/aptitude\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Aptitude Interview Questions (2026): Q&amp;A | LastRoundAI\" \/>\n<meta property=\"og:description\" content=\"50 real aptitude interview questions for 2026: percentages, time and work, permutations, probability, data interpretation, and logical reasoning, with worked answers.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/lastroundai.com\/interview-questions\/aptitude\" \/>\n<meta property=\"og:site_name\" content=\"LastRound AI\" \/>\n<meta property=\"og:image\" content=\"https:\/\/lastroundai.com\/blog\/wp-content\/uploads\/2026\/07\/iq-aptitude-og.png\" \/>\n\t<meta property=\"og:image:width\" content=\"1200\" \/>\n\t<meta property=\"og:image:height\" content=\"630\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/png\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:label1\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data1\" content=\"1 minute\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\\\/\\\/schema.org\",\"@graph\":[{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/lastroundai.com\\\/interview-questions\\\/aptitude\",\"url\":\"https:\\\/\\\/lastroundai.com\\\/interview-questions\\\/aptitude\",\"name\":\"Aptitude Interview Questions (2026): Q&A | LastRoundAI\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/lastroundai.com\\\/blog\\\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\\\/\\\/lastroundai.com\\\/interview-questions\\\/aptitude#primaryimage\"},\"image\":{\"@id\":\"https:\\\/\\\/lastroundai.com\\\/interview-questions\\\/aptitude#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/lastroundai.com\\\/blog\\\/wp-content\\\/uploads\\\/2026\\\/07\\\/iq-aptitude-og.png\",\"datePublished\":\"2026-07-21T14:58:19+00:00\",\"description\":\"50 real aptitude interview questions for 2026: percentages, time and work, permutations, probability, data interpretation, and logical reasoning, with worked answers.\",\"breadcrumb\":{\"@id\":\"https:\\\/\\\/lastroundai.com\\\/interview-questions\\\/aptitude#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/lastroundai.com\\\/interview-questions\\\/aptitude\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/lastroundai.com\\\/interview-questions\\\/aptitude#primaryimage\",\"url\":\"https:\\\/\\\/lastroundai.com\\\/blog\\\/wp-content\\\/uploads\\\/2026\\\/07\\\/iq-aptitude-og.png\",\"contentUrl\":\"https:\\\/\\\/lastroundai.com\\\/blog\\\/wp-content\\\/uploads\\\/2026\\\/07\\\/iq-aptitude-og.png\",\"width\":1200,\"height\":630,\"caption\":\"Aptitude interview questions \u2014 LastRoundAI\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/lastroundai.com\\\/interview-questions\\\/aptitude#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/lastroundai.com\\\/blog\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Interview Questions\",\"item\":\"https:\\\/\\\/lastroundai.com\\\/interview-questions\"},{\"@type\":\"ListItem\",\"position\":3,\"name\":\"Aptitude Interview Questions (2026): 50 Q&#038;A\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/lastroundai.com\\\/blog\\\/#website\",\"url\":\"https:\\\/\\\/lastroundai.com\\\/blog\\\/\",\"name\":\"LastRound AI\",\"description\":\"Interview Assistant prep, tech careers and AI tools\",\"publisher\":{\"@id\":\"https:\\\/\\\/lastroundai.com\\\/blog\\\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\\\/\\\/lastroundai.com\\\/blog\\\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Organization\",\"@id\":\"https:\\\/\\\/lastroundai.com\\\/blog\\\/#organization\",\"name\":\"LastRound AI\",\"url\":\"https:\\\/\\\/lastroundai.com\\\/blog\\\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/lastroundai.com\\\/blog\\\/#\\\/schema\\\/logo\\\/image\\\/\",\"url\":\"https:\\\/\\\/lastroundai.com\\\/blog\\\/wp-content\\\/uploads\\\/2026\\\/06\\\/lastroundai-transprant-logo-optimized-BxEo2Wtq.png\",\"contentUrl\":\"https:\\\/\\\/lastroundai.com\\\/blog\\\/wp-content\\\/uploads\\\/2026\\\/06\\\/lastroundai-transprant-logo-optimized-BxEo2Wtq.png\",\"width\":400,\"height\":400,\"caption\":\"LastRound AI\"},\"image\":{\"@id\":\"https:\\\/\\\/lastroundai.com\\\/blog\\\/#\\\/schema\\\/logo\\\/image\\\/\"}}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"Aptitude Interview Questions (2026): Q&A | LastRoundAI","description":"50 real aptitude interview questions for 2026: percentages, time and work, permutations, probability, data interpretation, and logical reasoning, with worked answers.","robots":{"index":"index","follow":"follow","max-snippet":"max-snippet:-1","max-image-preview":"max-image-preview:large","max-video-preview":"max-video-preview:-1"},"canonical":"https:\/\/lastroundai.com\/interview-questions\/aptitude","og_locale":"en_US","og_type":"article","og_title":"Aptitude Interview Questions (2026): Q&A | LastRoundAI","og_description":"50 real aptitude interview questions for 2026: percentages, time and work, permutations, probability, data interpretation, and logical reasoning, with worked answers.","og_url":"https:\/\/lastroundai.com\/interview-questions\/aptitude","og_site_name":"LastRound AI","og_image":[{"width":1200,"height":630,"url":"https:\/\/lastroundai.com\/blog\/wp-content\/uploads\/2026\/07\/iq-aptitude-og.png","type":"image\/png"}],"twitter_card":"summary_large_image","twitter_misc":{"Est. reading time":"1 minute"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"WebPage","@id":"https:\/\/lastroundai.com\/interview-questions\/aptitude","url":"https:\/\/lastroundai.com\/interview-questions\/aptitude","name":"Aptitude Interview Questions (2026): Q&A | LastRoundAI","isPartOf":{"@id":"https:\/\/lastroundai.com\/blog\/#website"},"primaryImageOfPage":{"@id":"https:\/\/lastroundai.com\/interview-questions\/aptitude#primaryimage"},"image":{"@id":"https:\/\/lastroundai.com\/interview-questions\/aptitude#primaryimage"},"thumbnailUrl":"https:\/\/lastroundai.com\/blog\/wp-content\/uploads\/2026\/07\/iq-aptitude-og.png","datePublished":"2026-07-21T14:58:19+00:00","description":"50 real aptitude interview questions for 2026: percentages, time and work, permutations, probability, data interpretation, and logical reasoning, with worked answers.","breadcrumb":{"@id":"https:\/\/lastroundai.com\/interview-questions\/aptitude#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/lastroundai.com\/interview-questions\/aptitude"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/lastroundai.com\/interview-questions\/aptitude#primaryimage","url":"https:\/\/lastroundai.com\/blog\/wp-content\/uploads\/2026\/07\/iq-aptitude-og.png","contentUrl":"https:\/\/lastroundai.com\/blog\/wp-content\/uploads\/2026\/07\/iq-aptitude-og.png","width":1200,"height":630,"caption":"Aptitude interview questions \u2014 LastRoundAI"},{"@type":"BreadcrumbList","@id":"https:\/\/lastroundai.com\/interview-questions\/aptitude#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/lastroundai.com\/blog"},{"@type":"ListItem","position":2,"name":"Interview Questions","item":"https:\/\/lastroundai.com\/interview-questions"},{"@type":"ListItem","position":3,"name":"Aptitude Interview Questions (2026): 50 Q&#038;A"}]},{"@type":"WebSite","@id":"https:\/\/lastroundai.com\/blog\/#website","url":"https:\/\/lastroundai.com\/blog\/","name":"LastRound AI","description":"Interview Assistant prep, tech careers and AI tools","publisher":{"@id":"https:\/\/lastroundai.com\/blog\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/lastroundai.com\/blog\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Organization","@id":"https:\/\/lastroundai.com\/blog\/#organization","name":"LastRound AI","url":"https:\/\/lastroundai.com\/blog\/","logo":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/lastroundai.com\/blog\/#\/schema\/logo\/image\/","url":"https:\/\/lastroundai.com\/blog\/wp-content\/uploads\/2026\/06\/lastroundai-transprant-logo-optimized-BxEo2Wtq.png","contentUrl":"https:\/\/lastroundai.com\/blog\/wp-content\/uploads\/2026\/06\/lastroundai-transprant-logo-optimized-BxEo2Wtq.png","width":400,"height":400,"caption":"LastRound AI"},"image":{"@id":"https:\/\/lastroundai.com\/blog\/#\/schema\/logo\/image\/"}}]}},"_links":{"self":[{"href":"https:\/\/lastroundai.com\/blog\/wp-json\/wp\/v2\/iq\/2009","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/lastroundai.com\/blog\/wp-json\/wp\/v2\/iq"}],"about":[{"href":"https:\/\/lastroundai.com\/blog\/wp-json\/wp\/v2\/types\/iq"}],"author":[{"embeddable":true,"href":"https:\/\/lastroundai.com\/blog\/wp-json\/wp\/v2\/users\/4"}],"replies":[{"embeddable":true,"href":"https:\/\/lastroundai.com\/blog\/wp-json\/wp\/v2\/comments?post=2009"}],"version-history":[{"count":1,"href":"https:\/\/lastroundai.com\/blog\/wp-json\/wp\/v2\/iq\/2009\/revisions"}],"predecessor-version":[{"id":2063,"href":"https:\/\/lastroundai.com\/blog\/wp-json\/wp\/v2\/iq\/2009\/revisions\/2063"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/lastroundai.com\/blog\/wp-json\/wp\/v2\/media\/2034"}],"wp:attachment":[{"href":"https:\/\/lastroundai.com\/blog\/wp-json\/wp\/v2\/media?parent=2009"}],"wp:term":[{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/lastroundai.com\/blog\/wp-json\/wp\/v2\/tags?post=2009"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}