Skip to content
geeksforgeeks
  • Tutorials
    • Python
    • Java
    • Data Structures & Algorithms
    • ML & Data Science
    • Interview Corner
    • Programming Languages
    • Web Development
    • CS Subjects
    • DevOps And Linux
    • School Learning
    • Practice Coding Problems
  • Courses
    • DSA to Development
    • Get IBM Certification
    • Newly Launched!
      • Master Django Framework
      • Become AWS Certified
    • For Working Professionals
      • Interview 101: DSA & System Design
      • Data Science Training Program
      • JAVA Backend Development (Live)
      • DevOps Engineering (LIVE)
      • Data Structures & Algorithms in Python
    • For Students
      • Placement Preparation Course
      • Data Science (Live)
      • Data Structure & Algorithm-Self Paced (C++/JAVA)
      • Master Competitive Programming (Live)
      • Full Stack Development with React & Node JS (Live)
    • Full Stack Development
    • Data Science Program
    • All Courses
  • DSA
  • Practice Mathematical Algorithm
  • Mathematical Algorithms
  • Pythagorean Triplet
  • Fibonacci Number
  • Euclidean Algorithm
  • LCM of Array
  • GCD of Array
  • Binomial Coefficient
  • Catalan Numbers
  • Sieve of Eratosthenes
  • Euler Totient Function
  • Modular Exponentiation
  • Modular Multiplicative Inverse
  • Stein's Algorithm
  • Juggler Sequence
  • Chinese Remainder Theorem
  • Quiz on Fibonacci Numbers
Open In App
Next Article:
Mensuration 2D - Solved Questions and Answers
Next article icon

Compound Interest - Solved Questions and Answers

Last Updated : 26 Jun, 2025
Comments
Improve
Suggest changes
Like Article
Like
Report

Question 1: Find the compound interest on Rs. 10,000 at 10% per annum for a time period of three and a half years.

Solution:

Time period of 3 years and 6 months means for 3 years, the interest is compounded yearly and for the remaining 6 months, the interest is compounded half-yearly.
This means that we have 3 cycles of interest compounded yearly and 1 cycle of interest compounded half yearly.
So, Amount = P [1 + (R / 100)]3 [1 + ( {R/2} / 100 )]
=> Amount = 10000 [1 + 0.1]3 [1 + 0.05]
=> Amount = 10000 (1.1)3 (1.05)
=> Amount = Rs. 13975.50
=> Compound Interest, CI = Amount - Principal = 13975.50 - 10000
Therefore, CI = Rs. 3975.50 

Question 2: If Rs. 5000 amounts to Rs. 5832 in two years compounded annually, find the rate of interest per annum.

Solution:

Here, P = 5000, A = 5832, n = 2
A = P [1 + (R / 100)]n
5832 = 5000 [1 + (R / 100)]2
1 + (R / 100)]2 = 5832 / 5000
[1 + (R / 100)]2 = 11664 / 10000
[1 + (R / 100)] = 108 / 100 => R / 100 = 8 / 100
R = 8%
Thus, the required rate of interest per annum in 8%

Question 3: The difference between the SI and CI on a certain sum of money at a 10 % rate of annual interest for 2 years is Rs. 549. Find the sum.

Solution:

Let the sum be P
R = 10 %
n = 2 years
SI = P x R x n / 100
= P x 10 x 2 / 100
= 0.20 P
CI = A - P = P [1 + (R / 100)]n - P = 0.21 P
Now, it is given that CI - SI = 549
=> 0.21 P - 0.20 P = 549
=> 0.01 P = 549 => P = 54900
Therefore, the required sum of money is Rs. 54,900 

Question 4: A sum of Rs. 1000 is to be divided among two brothers such that if the interest is compounded annually is 5 % per annum, then the money with the first brother after 4 years is equal to the money with the second brother after 6 years. 

Solution:

Let the first brother be given Rs. P => Money with second brother = Rs. 1000 - P
Now, according to the question,
P [1 + (5 / 100)]4 = (1000 - P) [1 + (5 / 100)]6
=> P (1.05)4 = (1000 - P) (1.05)6
=> 0.9070 P = 1000 - P
=> 1.9070 P = 1000
=> P = 524.38
Therefore, share of first brother = Rs. 524.38
Share of second brother = Rs. 475.62 

Question 5: A sum of money amounts to Rs. 669 after 3 years and to Rs. 1003.50 after 6 years on compound interest. Find the sum. 

Solution:

Let the sum of money be Rs. P => P [1 + (R/100)]3= 669
P [1 + (R/100)]6= 1003.50
Dividing both equations, we get [1 + (R/100)]3 = 1003.50 / 669 = 1.50
Now, we put this value in the equation P [1 + (R/100)]3= 669
=> P x 1.50 = 669
=> P = 446
Thus, the required sum of money is Rs. 446 

Question 6: An investment doubles itself in 15 years if the interest is compounded annually. How many years will it take to become 8 times?

Solution:

It is given that the investment doubles itself in 15 years.
Let the initial investment be Rs. P => At the end of 15 years, A = 2 P
Now, this 2 P will be invested. => Amount after 15 more years = 2 x 2 P = 4 P
Now, this 4 P will be invested. => Amount after 15 more years = 2 x 4 P = 8 P
Thus, the investment (P) will become 8 times (8 P) in 15 + 15 + 15 = 45 years

Question 7: If the difference between compound interest and simple interest on some principle amount is at the rate of interest of 20% per annum for 3 years in $48, then what is the principle amount?

Solution:

Here, T = 3 years, R = 20%, P = ?
Also, C.I - S.I = 48
P(1 + (R / 100))T - P - (P × R × T) / 100 = 48
⇒ P(1 + (20/100))3 - P - (P × 20 × 3) / 100 = 48
⇒ P(6/5)3 - P - P (3/5) = 48
⇒ P ((216/125)3 - 1 - (3/5)) = 48
⇒ P (0.128) = 48
⇒ P = (48/0.128)
⇒ P = 375

Therefore, the principle amount is $375.

Question 8: A sum of money placed at compound interest doubles itself in 3 years. In how many years will it amount to 8 times itself?

Solution:

Let in 3 years, P = y, C.I = 2y (since, it doubles itself)
Now, by formula,
C.I = P (1 + (R / 100))T
⇒ 2y = y (1 + (R / 100))3
⇒ 2 = (1 + (R / 100))3

So, (1 + (R/100)) = 21/3 . . . (i)

We need to find, T = ? when C.I = 8y,
By formula,

C.I = P (1 + (R / 100))T
⇒ 8y = y(21/3)T [From equation (i)]
⇒ 23y = y(2T/3)
On Comparing, we get
T/3 = 3
⇒ T = 3(3)
⇒ T = 9 years.

Therefore, in 9 years the the sum of money will amount to 8times itself.

Question 9: In how many years will a sum of $800 at 10% per annum compound semi-annually become $926. ?

Solution:

Given that, P = $800, R = 10% per year, A = $1064.8, T = ?

By formula, Amount,
A = P (1 + ((R/2)/100))2T
⇒ 926.1 = 800(1 + (5/100))2T
⇒ (926.1 /800) = (21 /20)2T
⇒ (9261 /8000) = (21/20)2T
⇒ (21/20)3 = (21/10)2T

On comparing, we get
2T = 3
⇒ T = 3/2 years

Therefore, in 3/2 years the semi-annually compounded sum will become $926.1

Question 10: A tree increases annually by (1/8)th of its height. By how much will it increase after 2 years, if it stands today 64cm high?

Solution:

The increase% is given by, (1/8) × 100 % = (25/2) %

By formula,
C.I. = P (1 + (R / 100))T
⇒ C.I.= 64(1 + (25/(2 × 100)))2
⇒ C.I.= 64(9/8)2
⇒ C.I.= 64(81/64)
⇒ C.I.= 81
Total Increase = Height after 2 years−Initial Height = 81−64 = 17 cm

Therefore, the tree will compound to height 17cms after 2 years.

Also Check:

  • Problems on Compound Interest | Set 2
  • Real-Life Applications of Compound Interest
  • Tricks to Solve Compound Interest



Next Article
Mensuration 2D - Solved Questions and Answers

K

kartik
Improve
Article Tags :
  • Mathematical
  • Placements
  • QA – Placements
  • DSA
Practice Tags :
  • Mathematical

Similar Reads

    Aptitude Questions and Answers
    Aptitude questions can be challenging, but with the right preparation and practice, you can tackle them with ease. Our comprehensive guide to aptitude questions and answers covers all the essential topics of Aptitude, including Quantitative Aptitude, Logical Reasoning, and Verbal Ability. Whether yo
    3 min read

    Quantitative Aptitude

    What are Numbers?
    Numbers are symbols we use to count, measure, and describe things. They are everywhere in our daily lives and help us understand and organize the world.Numbers are like tools that help us:Count how many things there are (e.g., 1 apple, 3 pencils).Measure things (e.g., 5 meters, 10 kilograms).Show or
    15+ min read
    HCF and LCM - Solved Questions and Answers
    Question 1: Find the greatest number that will divide 72, 96, and 120, leaving the same remainder in each case.Answer:To find the greatest number that will divide these numbers leaving the same remainder, we need to find the Highest Common Factor (HCF) of the differences between the numbers. The dif
    12 min read
    Pipes and Cistern - Solved Questions and Answers
    Question 1: Two pipes, A and B, can fill a tank separately in 12 and 16 hours, respectively. If both of them are opened together when the tank is initially empty, how much time will it take to completely fill the tank? Solution: Part of tank filled by pipe A in one hour working alone = 1 / 12 Part o
    12 min read
    Speed, Time and Distance – Solved Questions and Answers
    Question 1: A runner can complete a 750 m race in two and a half minutes. Will he be able to beat another runner who runs at 17.95 km/hr? Solution: We are given that the first runner can complete a 750 m race in 2 minutes and 30 seconds or 150 seconds. Speed of the first runner = 750 / 150 = 5 m / s
    7 min read
    Boats and Streams -Solved Questions and Answers
    Question 1: A 100 m long train moving at a speed of 60 km/hr passes a man standing on the pavement near a railway track. Find the time taken by the train to pass the man. Solution: Length of the train = 100 m = 0.1 km Speed of the train = 60 km / hr So, the time taken by the train to pass the man =
    8 min read
    Percentages - Solved Questions and Answers
    Question 1: A defect-finding machine rejects 0.085% of all cricket bats. Find the number of bats manufactured on a particular day if it is given that on that day, the machine rejected only 34 bats. Solution:Let the total number of bats on that day be n. 0.085 % of n = 34 => (0.085 / 100) x n = 34
    8 min read
    Ratio and Proportion - Solved Questions and Answers
    Question 1: If a: b = 5: 9 and b: c = 7: 4, then find a: b: c.Solution: Here, we make the common term ‘b’ equal in both ratios.Therefore, we multiply the first ratio by 7 and the second ratio by 9.So, we have a : b = 35 : 63 and b : c = 63 : 36Thus, a : b : c = 35 : 63 : 36Question 2: Find the mean
    5 min read
    Mixture and Alligation - Solved Questions and Answers
    Question 1: From a vessel of 20 liters of pure milk, 1 liter is taken out and replaced with water, so as to keep the volume constant at 20 liters. This process is repeated 5 times. Find the percentage of pure milk left in the vessel after 5 replacements. Solution: Here, we need to apply the formula
    3 min read
    Algebra Practice Questions Easy Level
    Algebra questions basically involve modeling word problems into equations and then solving them. Some of the very basic formulae that come in handy while solving algebra questions are : (a + b) 2 = a 2 + b 2 + 2 a b(a - b) 2 = a 2 + b 2 - 2 a b(a + b) 2 - (a - b) 2 = 4 a b(a + b) 2 + (a - b) 2 = 2 (
    3 min read
    Average in Maths
    An average is the middle value of a group of numbers. The average is calculated by adding up all the numbers in a group and dividing the total by how many of numbers there are. The image below shows three rows of apples with 6, 11, and 7 apples, and if we take the average of all three rows, we get 8
    15 min read
    Ages - Solved Questions and Answers
    Question 1: A’s age after 15 years would be equal to 5 times his age 5 years ago. Find his age 3 years hence.Solution : Let A’s present age be ‘n’ years.According to the question,n + 15 = 5 (n – 5)=> n + 15 = 5 n – 25=> 4n = 40=> n = 10=> A’s present age = 10 yearsTherefore, A’s age 3 ye
    4 min read
    Profit and Loss - Aptitude Questions and Answers
    Question 1: A person buys a pen from a wholesaler at Rs. 10 for 20 pens. He sells those pens at Rs. 10 for 15 pens. Find his profit or loss percent. Solution: CP for each pen = 10 / 20 = Rs. 0.50SP for each pen = 10 / 15 = Rs. 2 / 3 Profit = SP - CP = Rs. (2 / 3) - 0.50 = Rs. 1 / 6 Therefore, profit
    5 min read
    Simple Interest - Solved Questions and Answers
    Question 1: What would be the annual interest accrued on a deposit of Rs. 10,000 in a bank that pays a 4 % per annum rate of simple interest?Solution : Here, P = 10000, R = 4, T = 1SI = P x R x T / 100SI = 10000 x 4 x 1 / 100SI = 400Thus, the annual interest would be Rs. 400Question 2: A sum of mone
    4 min read
    Compound Interest - Solved Questions and Answers
    Question 1: Find the compound interest on Rs. 10,000 at 10% per annum for a time period of three and a half years.Solution:Time period of 3 years and 6 months means for 3 years, the interest is compounded yearly and for the remaining 6 months, the interest is compounded half-yearly. This means that
    6 min read
    Mensuration 2D - Solved Questions and Answers
    Important Mensuration Formulas2D- ShapeAreaPerimeterSquarea24aRectanglel × b2 (l + b)Circleπr2 2πrScalene Triangle√ [s (s-a) (s-b) (s-c)]Where, s = (a + b + c)/2a + b + cIsosceles Triangle1/2 × base × height2a + bEquilateral triangle√3/4 x23aParallelogrambase × height2 (a + b)Rhombus1/2 × d1 × d24aT
    5 min read
    Mensuration 3D - Solved Questions and Answers
    Question 1: Find the length of the largest rod that can be kept in a cuboidal room of dimensions 10 x 15 x 6 m.Solution: Largest rod would lie along the diagonal. Length of largest rod = Length of diagonal of the room = (L2 + B2 + H2)1/2 Length of the largest rod = (102 + 152 + 62)1/2 = (100 + 225 +
    3 min read
    Height and Distances - Solved Questions and Answers
    Question 1: From the top of a lighthouse, the angles of depression of two ships are 30 and 45 degrees. The two ships, as it was observed from the top of the lighthouse, were 100 m apart. Find the height of the lighthouse.Solution:Here, we can apply the formula Height = Distance/[cot(original angle)
    6 min read
    Progression - Aptitude Questions and Answers
    Progression (or Sequences and Series) is are mathematical concepts that involve arranging numbers in a particular order based on a repeatable pattern. The topic of Progressions is frequently asked in various competitive exams like SSC, Bank PO, and other government job exams and is a crucial part of
    5 min read
    Logarithm - Solved Questions and Answers
    Logarithm is an important topic that needs to be prepared well for the Quantitative Aptitude section of exams. It requires practicing a lot of questions within a time limit. The logarithmic function is the inverse of the exponential function. It is defined as:y = logax, if and only if x = ay; for x
    3 min read
    Permutation and Combination - Aptitude Questions and Answers
    Permutation and Combination are fundamental concepts in mathematics that deal with arranging and selecting objects from a set. These concepts are crucial in various fields, including probability theory, and statistics. There are different types of questions that you can use to test your understandin
    4 min read
    Probability - Solved Questions and Answers
    Question 1: Three unbiased coins are tossed. What is the probability that at most one had occurred? Solution: S = {HHH, HHT, HTH, THH, HTT, THT, TTH, TTT} Favorable outcomes = {HTT, THT, TTH, TTT} Total number of outcomes = 8 Number of favorable outcomes = 4 Required probability = 4 / 8 = 0.50 Quest
    11 min read
    Introduction to Geometry
    Geometry is the branch of mathematics that deals with the shapes, angles, dimensions, and sizes of various things that we see in everyday life. It is mainly divided into plane and solid geometry. In plane geometry, 2d shapes such as triangles, squares, rectangles, and circles are studied. Whereas, i
    9 min read
    Clock - Solved Questions and Answers
    Clock questions are commonly included in quantitative aptitude exams. These questions typically require the application of basic arithmetic and algebraic concepts to solve problems related to time and time difference between two events.Question 1: Find the angle between the hands of a clock at 3:20
    4 min read
    Calendar - Solved Questions and Answers
    Question 1: If January 1st, 2023, is a Sunday, what day of the week will October 31st, 2023?Solution: To solve this problem, we need to count the number of days between January 1st, 2023, and October 31st, 2023, and then find out what day of the week October 31st, 2023, falls on.Total number of days
    7 min read
    Coding Decoding - Solved Questions and Answers
    Question 1: If EARTH is written as FCUXM in a certain code. How is MOON written in that code? Solution: Question 2: If DELHI is written as EDMGJ in a certain code. How is NEPAL written in that code?Solution : Question 3: If SYMBOL is written as NZTMPC is it a certain code? How is NUMBER written in t
    4 min read
    Races and Games - Aptitude Questions and Answers
    Question 1: In a 100 m race, A beats B by 28 meters. Also, at the finish line, A was 7 seconds ahead of B. Find the time taken by A to complete the race. Solution: According to the question, B covers 28 m in 7 seconds.B's speed = 28 / 7 = 4 m/s Time required by B to complete 100 m = 100 / 4 = 25 s N
    5 min read
    Data Interpretation - Aptitude Questions and Answers
    Data interpretation questions are an essential part of the Quantitative Aptitude section. Data Interpretation questions require the ability to analyze and interpret different forms of data, including tables, graphs, charts, and more. With a focus on percentage, ratio and proportion, data interpretat
    8 min read

    Logical Reasoning

    Number Series - Logical Reasoning Aptitude Questions and Answer
    Number Series is a widely asked topic in the Logical Reasoning section of competitive examinations held in India. In these types of questions, there will be a series of numbers given, along with a blank to be filled out. You are given the task of finding out the answer to the blank by figuring out t
    12 min read
    Alphanumeric Series - Logical Reasoning Questions and Answer
    Alphanumeric series is formed by combining both alphabets and numbers. Alphanumeric series sometimes include symbols such as @,&,#, etc. So we can say that the Alphanumeric series is the combination of alphabets, numbers and symbols. This is an important topic that needs to be covered for the Lo
    11 min read
    Analogy - Logical Reasoning Question and Answer
    Analogy is a topic of Logical Reasoning where two things are compared and conclusions are drawn based on their similarities. Analogies are asked in various forms. These questions are also very important for the Verbal Ability section of competitive examinations like SSC, Banking, RBI, etc. The follo
    6 min read
    Making Judgements: Reasoning Questions
    Judgement questions are part of the Logical Reasoning section in most of the competitive examinations. Judgement questions are solved by combining the knowledge given in the question and through common sense. Judgement questions must be prepared comprehensively as this is a scoring section in the re
    11 min read
    Course of Action - Logical Reasoning Questions and Answer
    Course of Action is an important topic that needs to be covered for the Logical Reasoning section of the competitive examinations. It tests the analytical and logical ability of a candidate. The following article covers the concepts, questions, and answers related to the topic.Practicing Statements
    6 min read
    Statement and Conclusion - Logical Reasoning Questions and Answer
    The Statement and Conclusion section is a part of logical and analytical reasoning, which is frequently asked in all competitive exams, especially in banking sector exams. Statement and conclusion questions are a set of statements followed by conclusions. The general idea to solve such questions is
    6 min read
    Cause and Effect: Logical Reasoning Questions and Answers
    Cause and Effect Reasoning Section is one of the most tricky topics of Logical Reasoning section. The questions which come in this section are very easy in nature but they are designed in such a way that they are tricky. Candidates often get confused while solving these problems. It is asked in many
    10 min read
    Statement and Argument - Logical Reasoning Questions and Answer
    Argument is a very important part of analytical reasoning, expressing different opinions for or against something. In competitive examinations, different types of questions are asked from this section in the form of inferences, assumptions, courses of action, syllogisms, etc. This is why argument is
    7 min read
    Reasoning Tricks to Solve Coding -Decoding
    Coding -decoding is one of the most common sections included in all competitive exams, which are basically designed for hiring processes and higher education. Many candidates find Coding-Decoding questions challenging to solve, and as a result, they avoid attempting these scoring questions and lose
    5 min read
    Statement and Assumption - Logical Reasoning Questions and Answer
    Statement and Assumption in Logical Reasoning is the most generally asked topic in competitive exams. The fundamental behind such topics is to test the applicant's critical thinking skills. There are a number of statement and assumption questions asked in the various exams, like SSC, Banking, etc. O
    6 min read
    Venn Diagram
    Venn diagrams are visual tools used to show relationships between different sets. They use overlapping circles to represent how sets intersect, share elements, or stay separate. These diagrams help categorize items, making it easier to understand similarities and differences. In mathematics, Venn di
    14 min read

    Logical Reasoning: Verbal Reasoning

    Placement | Reasoning | Blood Relationship
    While solving the questions on blood relationship, one should be familiar with basic concepts like various relations. Mother's or Father's Brother - Uncle Mother's or Father's Sister - Aunt Mother's or Father's Father - Grand Father Mother's or Father's Mother - Grand Mother Grand Father's or Grand
    2 min read
    Syllogism: Verbal Reasoning Questions and Answers
    Syllogism is an essential part of various competitive exams in India. It is generally a part of the Verbal Ability section, and plays a vital role in examinations sharing 3 or 4 marks out of the total marks. There are many ways of reaching the final solution to questions of syllogisms. The most popu
    5 min read
    Cubes: Verbal Reasoning Questions and Answers
    Cubes is an important topic that needs to be prepared for the Logical Reasoning section of the competitive examinations. Candidates needs to practice questions in order to score well in these exams. The following article covers concepts, formulas and questions that are often asked. So try and practi
    4 min read
    Seating Arrangement : Aptitude Questions and Answers
    Seating arrangement is the logical arrangement of people or objects. This concept involves arrangement of people in many possible ways. Seating Arrangement is a common category of Logical Reasoning that is asked in competitive exams.In these types of questions, you will have to arrange a group of pe
    6 min read
    Puzzles
    Puzzles are commonly asked in exams and interviews to test logical and analytical thinking. Here is a list of most asked Puzzles divided into four categories as per examination pattern. 1. Analytical / Mathematical PuzzlesPuzzle TitleAsked in CompanyFind ages of daughtersGoogle, MicrosoftCalculate t
    4 min read
    Data Sufficiency in Logical Reasoning
    Data Sufficiency in Logical Reasoning is an important topic to prepare for competitive exams in India. It tests the logical, analytical and thinking capacity or ability of a candidate. Candidates need to practice the questions for scoring well in the examinationThe following article contains various
    6 min read

    Logical Reasoning: Non-Verbal Reasoning

    Mirror Image: Verbal Reasoning
    Mirror Image Questions are mostly asked in the Logical Reasoning section of competitive examinations. So candidates need to prepare well by practicing some Mirror Images Questions given below. When we see ourselves in a mirror or see anything in a mirror, the way we see ourselves in a mirror or the
    5 min read
    Dice
    A Dice is a cube with 6 faces each of which contains a digit or a pattern denoting a digit from 1 to 6. It is, however, not uncommon for the faces of a dice to have different kinds of symbols. These puzzles based on dice are quite common in aptitude sections of various tests including GATE. Therefor
    5 min read

    Verbal Ability

    Spellings - Verbal Ability Questions and Answers
    Spelling Correction is an important topic that needs to be practiced well for the verbal ability section of the competitive exams. Following is the practice set of questions for spelling correction. It is quite an easy topic if you have correct knowledge of English Vocabulary. It is a scoring topic
    6 min read
    Sentence Completion - Verbal Ability Questions and Answers
    Sentence completion is a type of question found in the Verbal Ability section of many competitive tests and exams. The aim is to determine the ability to choose the right word or words to complete a sentence. To answer this type of question as quickly and accurately as possible, we should practice s
    12 min read
    Ordering Of Sentences: Verbal Ability Questions
    Re-arrangement questions are of two types: Sentence re-arrangement and passage re-arrangement. In sentence re-arrangement, we are given a sentence whose words/group of words are jumbled and we have to make a meaningful sentence out of it. In passage re-arrangement, we are given multiple sentences an
    6 min read
    Reading Comprehension Questions & Answers
    Comprehension passages are sure-shot scoring questions that are usually asked in competitive examinations. Candidates must practice questions on this topic to score well in the exams. Reading Comprehension is a fundamental skill often tested as part of Verbal Ability in competitive examinations. It
    15+ min read
    Idioms and Phrases - Verbal Ability Questions and Answers
    Idioms and phrases are an important concept of English comprehension, which is often asked in competitive exams. Candidates preparing for competitive exams or interviews must practice the questions of idioms and phrases to score well in the Verbal Ability section. In the following article, we are go
    8 min read
    Definite and Indefinite Articles ( A, An, The)
    Definite and Indefinite Articles ( A, An, The)Table of ContentWhat is an Article? Definite and Indefinite ArticlesWhat are Definite Articles?What are Indefinite Articles?Definite and Indefinite Articles ExamplesDifference Between Definite and Indefinite Articles Definite and Indefinite Articles Ques
    9 min read
    Adjective - Definition, List, Types, Uses and Examples
    When we discuss Adjectives, it means those words which well describe a Noun or a Place, Person, Thing, or Idea. An adjective is the only word that can create a major difference between the two.Let's discuss this topic in detail and also bookmark it to get back to the article whenever we want to revi
    7 min read

    Data Interpretation

    Data Interpretation - Aptitude Questions and Answers
    Data interpretation questions are an essential part of the Quantitative Aptitude section. Data Interpretation questions require the ability to analyze and interpret different forms of data, including tables, graphs, charts, and more. With a focus on percentage, ratio and proportion, data interpretat
    8 min read

    Misc

    15 Most Important Aptitude Topics For Placements [2025]
    If you are a student and getting ready for off-campus or on-campus placement, then working on aptitude is quite essential. In many colleges, companies like TCS, Infosys, Capgemini, and Accenture sort students through the mass-hiring process on the basis of aptitude tests. Also, if you are going for
    7 min read
    How to Prepare for Aptitude Test for Campus Placements
    Aptitude Tests are used by many recruiters around the world. Their purpose is to test technical skills, attitudes, and soft skills related to the search for a figure to be included in the company. Beyond specific professional skills, Aptitude tests are generally designed to assess a candidate's logi
    8 min read
geeksforgeeks-footer-logo
Corporate & Communications Address:
A-143, 7th Floor, Sovereign Corporate Tower, Sector- 136, Noida, Uttar Pradesh (201305)
Registered Address:
K 061, Tower K, Gulshan Vivante Apartment, Sector 137, Noida, Gautam Buddh Nagar, Uttar Pradesh, 201305
GFG App on Play Store GFG App on App Store
Advertise with us
  • Company
  • About Us
  • Legal
  • Privacy Policy
  • In Media
  • Contact Us
  • Advertise with us
  • GFG Corporate Solution
  • Placement Training Program
  • Languages
  • Python
  • Java
  • C++
  • PHP
  • GoLang
  • SQL
  • R Language
  • Android Tutorial
  • Tutorials Archive
  • DSA
  • Data Structures
  • Algorithms
  • DSA for Beginners
  • Basic DSA Problems
  • DSA Roadmap
  • Top 100 DSA Interview Problems
  • DSA Roadmap by Sandeep Jain
  • All Cheat Sheets
  • Data Science & ML
  • Data Science With Python
  • Data Science For Beginner
  • Machine Learning
  • ML Maths
  • Data Visualisation
  • Pandas
  • NumPy
  • NLP
  • Deep Learning
  • Web Technologies
  • HTML
  • CSS
  • JavaScript
  • TypeScript
  • ReactJS
  • NextJS
  • Bootstrap
  • Web Design
  • Python Tutorial
  • Python Programming Examples
  • Python Projects
  • Python Tkinter
  • Python Web Scraping
  • OpenCV Tutorial
  • Python Interview Question
  • Django
  • Computer Science
  • Operating Systems
  • Computer Network
  • Database Management System
  • Software Engineering
  • Digital Logic Design
  • Engineering Maths
  • Software Development
  • Software Testing
  • DevOps
  • Git
  • Linux
  • AWS
  • Docker
  • Kubernetes
  • Azure
  • GCP
  • DevOps Roadmap
  • System Design
  • High Level Design
  • Low Level Design
  • UML Diagrams
  • Interview Guide
  • Design Patterns
  • OOAD
  • System Design Bootcamp
  • Interview Questions
  • Inteview Preparation
  • Competitive Programming
  • Top DS or Algo for CP
  • Company-Wise Recruitment Process
  • Company-Wise Preparation
  • Aptitude Preparation
  • Puzzles
  • School Subjects
  • Mathematics
  • Physics
  • Chemistry
  • Biology
  • Social Science
  • English Grammar
  • Commerce
  • World GK
  • GeeksforGeeks Videos
  • DSA
  • Python
  • Java
  • C++
  • Web Development
  • Data Science
  • CS Subjects
@GeeksforGeeks, Sanchhaya Education Private Limited, All rights reserved
We use cookies to ensure you have the best browsing experience on our website. By using our site, you acknowledge that you have read and understood our Cookie Policy & Privacy Policy
Lightbox
Improvement
Suggest Changes
Help us improve. Share your suggestions to enhance the article. Contribute your expertise and make a difference in the GeeksforGeeks portal.
geeksforgeeks-suggest-icon
Create Improvement
Enhance the article with your expertise. Contribute to the GeeksforGeeks community and help create better learning resources for all.
geeksforgeeks-improvement-icon
Suggest Changes
min 4 words, max Words Limit:1000

Thank You!

Your suggestions are valuable to us.

What kind of Experience do you want to share?

Interview Experiences
Admission Experiences
Career Journeys
Work Experiences
Campus Experiences
Competitive Exam Experiences