Skip to content
geeksforgeeks
  • 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
  • Tutorials
    • Data Structures & Algorithms
    • ML & Data Science
    • Interview Corner
    • Programming Languages
    • Web Development
    • CS Subjects
    • DevOps And Linux
    • School Learning
  • Practice
    • GfG 160: Daily DSA
    • Problem of the Day
    • Practice Coding Problems
    • GfG SDE Sheet
  • Quantitiative Aptitude
  • Logical Reasoning
  • Verbal Ability
  • Aptitude Quiz
  • Quantitiative Aptitude Quiz
  • Verbal Ability Quiz
  • Aptitude For Placements
  • Interview Corner
  • Practice Sets
Open In App
Next Article:
Pipes and Cistern - Aptitude Questions and Answers
Next article icon

HCF and LCM - Aptitude Questions

Last Updated : 08 Apr, 2025
Comments
Improve
Suggest changes
Like Article
Like
Report

HCF (Highest Common Factor) or GCD and LCM (Least Common Multiple) concepts are the foundation of many mathematical operations and are essential in solving complex problems.

Prerequisites:

  • HCF / GCD
  • LCM
  • Interesting Facts about HCF / GCD
  • Tips and Tricks for LCM
  • Tips and Tricks to Find HCF / GCD
  • Relation between HCF / GCD and LCM

Solved Questions on HCF

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 differences are as follows:

96 - 72 = 24
120 - 96 = 24

HCF(24, 24) = 24

Therefore, the greatest number that will divide 72, 96, and 120 leaving the same remainder in each case is 24.

Question 2: If the HCF of two numbers is 12 and their LCM is 360, find the numbers.

Answer:

We know that the product of the HCF and LCM of two numbers is equal to the product of the two numbers.

So, for two numbers a and b with HCF = 12 and LCM = 360:

HCF × LCM = a × b
12 × 360 = a × b
4320 = a × b

Now, we need to find two numbers whose product is 4320 and HCF is 12. There can be multiple pairs of numbers that satisfy this condition, and one such pair is:

a = 120 and b = 36

Because 120 × 36 = 4320 and the HCF of 120 and 36 is 12.

Question 3: Find the HCF of 36, 48, and 72.

Answer:

  • Prime factorization of 36: 22 × 32
  • Prime factorization of 48: 24 × 3
  • Prime factorization of 72: 23 × 32

Common factors: 22 and 3 (take the minimum power)

So, the HCF of 36, 48, and 72 is 22 × 3 = 12.

Question 4: What is the largest three-digit number that is exactly divisible by the HCF of 24 and 36?

Answer:

The HCF of 24 and 36 is 12. To find the largest three-digit number that is exactly divisible by 12, we need to find the largest multiple of 12 that is less than 1000.

The largest multiple of 12 less than 1000 is 996 (83 × 12 = 996).

So, the largest three-digit number exactly divisible by the HCF of 24 and 36 is 996.

Question 5: The sum of two numbers is 1001, and their HCF is 7. Find the numbers.

Answer:

a + b = 1001 (Sum of the two numbers)
HCF(a, b) = 7

We know that if the HCF of two numbers divides their sum, then it also divides the difference of the two numbers.

So, a - b is divisible by 7.

Now, we look for pairs of numbers whose difference is divisible by 7 and whose sum is 1001.

One such pair is a = 504 and b = 497.

504 - 497 = 7 (divisible by the HCF)
504 + 497 = 1001

Therefore, the two numbers are 504 and 497.

Question 6: Find the HCF of 32 and 14 by Listing Factors Method.

Answer:

First, list down the factors of 32 and 14. 

  • The factors of 32 are: 1, 2, 4, 8, 16, 32
  • The factors of 14 are: 1, 2, 7, 14

We can see that 1, 2 are the only common factors of 32 and 14. Whereas 2 is the greatest among all the common factors.
Hence, HCF of 32 and 14 is 2.

Question 7: Find the HCF of 80 and 90 by Prime Factorization

Answer:

  • The prime factors of 80: 2 * 2 * 2 * 2 * 5; 
  • The prime factors of 90: 2 * 3 * 3 * 5.

We can see that 2, 5 are the only common factors of 80 and 90, Now, the HCF of 80 and 90 will be the product of the common prime factors, which are 2 and 5. 
Hence, HCF of 80 and 90 is 10.

Question 8: Find the HCF of 30 and 42 by Division Method

Answer:

To find the HCF of 30 and 42, we can use the above-mentioned algorithm, which can be used as follows:

HCF of 30 and 42


Hence, the HCF of 30 and 42 is 6.

Solved Questions on LCM

Question 1: Find the LCM of 12, 18, and 24.

Answer:

  • 12 = 22 × 3
  • 18 = 2 × 32
  • 24 = 23 × 3

Now, to find the LCM, we need to take the highest power of each prime factor that appears in any of the numbers:

  • The highest power of 2 is 23.
  • The highest power of 3 is 32.

Multiplying these together gives us:

LCM = 23 × 32 = 8 × 9 = 72

So, the LCM of 12, 18, and 24 is 72

Question 2: The LCM of the two numbers is 360, and their HCF is 24. If one of the numbers is 120, find the other number.

Answer:

We know that the product of the HCF and LCM of two numbers is equal to the product of the two numbers.

So, for two numbers a and b with HCF = 24 and LCM = 360:

HCF × LCM = a × b
24 × 360 = 120 × b [Given a = 120]
(24 × 360)/120 = b
24 × 3 = b
Thus, b = 72.

Question 3: A factory manufactures products in batches of 16, 24, and 32 units. What is the minimum number of units the factory needs to produce so that each batch can be formed exactly?

Answer:

To find the minimum number of units the factory needs to produce so that each batch size (16, 24, and 32) can be formed exactly, we need to find the least common multiple (LCM) of these batch sizes.

The prime factorization of each batch size is as follows:

  • 16 = 24
  • 24 = 23 × 3
  • 32 = 25

To find the LCM, we take the highest power of each prime factor that appears in any of the batch sizes:

  • The highest power of 2 is 25.
  • The highest power of 3 is 31.

So, the LCM of 16, 24, and 32 is 25 × 31 = 32 × 3 = 96.

Question 4: Find the LCM of two positive integers 2 and 6 by the Listing Method

Answer:

  • Multiples of 2: 2, 4, 6, 8, 10, 12, 14...
  • Multiples of 6: 6, 12, 18, 24, 30…

The common multipliers of 2 and 6 are 6, 12..., So, the least common multiple is 6.
Hence, LCM(2, 6) = 6

Question 5: Find the LCM of two positive integers 120 and 300 by Prime Factorization Method

Answer:

  • The prime factorization of 120 are: 2*2*2*3*5 = 23*31*51
  • The prime factorization of 300 are: 2*2*3*5*5 = 22*31*52

Now, find the product of only those factors that have the highest powers among these. This will be, 23 * 31 * 52 = 8 * 3 *  25 = 600

Hence, LCM(120, 300) = 600

Question 6: Let's take two positive integers 3 and 4, the task is to find the LCM(3, 4) by Prime Factorization Method.

Answer:

LCM(3,4) = 12

The LCM is the product of all these prime numbers.
Hence, LCM(3, 4) = 12

Miscellaneous Problems - HCF and LCM

Problem 1: Two numbers are in the ratio of 5:11. If their HCF is 7, find the numbers.

Solution:

Let the numbers be 5m and 11m. 

Since 5:11 is already the reduced ratio, 'm' has to be the HCF. 

So, the numbers are 5 x 7 = 35 and 11 x 7 = 77.  

Problem 2: Find the length of the plank which can be used to measure exactly the lengths 4 m 50 cm, 9 m 90 cm, and 16 m 20 cm in the least time.

Solution:

Let us first convert each length to cm. 

So, the lengths are 450 cm, 990 cm, and 1620 cm. 

Now, we need to find the length of the largest plank that can be used to measure these lengths as the largest plank will take the least time. 

For this, we need to take the HCF of 450, 990, and 1620. 

450 = 2 x 3 x 3 x 5 x 5 = 2 x 32 x 52 
990 = 2 x 3 x 3 x 5 x 11 = 2 x 32 x 5 x 11 
1620 = 2 x 2 x 3 x 3 x 3 x 3 x 5 = 22 x 34 x 5 

Therefore, HCF (450, 990, 1620) = 2 x 3 x 3 x 5 = 90 

Thus, we need a plank of length 90 cm to measure the given lengths in the least time.

Problem 3: Find the greatest number which on dividing 70 and 50 leaves remainders 1 and 4 respectively. 

Solution:

The required number leaves remainders 1 and 4 on dividing 70 and 50 respectively. 

This means that the number exactly divides 69 and 46. 

So, we need to find the HCF of 69 = 3 x 23 and 46 = 2 x 23. 

HCF (69, 46) = 23 Thus, 23 is the required number. 

Problem 4: Find the largest number that divides 64, 136, and 238 to leave the same remainder in each case. 

Solution:

To find the required number, we need to find the HCF of (136-64), (238-136), and (238-64), i.e., HCF (72, 102, 174). 

72 = 23 x 32 
102 = 2 x 3 x 17 
174 = 2 x 3 x 29 

Therefore, HCF (72, 102, 174) = 2 x 3 = 6 

Hence, 6 is the required number. 

Problem 5: Find the least number which when divided by 5,7,9 and 12, leaves the same remainder of 3 in each case.

Solution:

In these types of questions, we need to find the LCM of the divisors and add the common remainder (3) to it. 

So, LCM (5, 7, 9, 12) = 1260 

Therefore, required number = 1260 + 3 = 1263   

Problem 6: Find the largest four-digit number exactly divisible by 15,21 and 28. 

Solution:

The largest four-digit number is 9999. 

Now, LCM (15, 21, 28) = 420 On dividing 9999 by 420, we get 339 as the remainder. 

Therefore, the required number is 9999-339 = 9660   

Problem 7: Two numbers are in the ratio 2:3. If the product of their LCM and HCF is 294, find the numbers.

Solution:

Let the common ratio be 'm'. 
So, the numbers are 2m and 3m. 

Now, we know that the Product of numbers is = Product of LCM and HCF. 

⇒ 2m x 3m = 294 
⇒ m2 = 49 
⇒ m = 7 

Therefore, the numbers are 14 and 21.

Problem 8: Find the least number which when divided by 6,7,8 leaves a remainder of 3, but when divided by 9 leaves no remainder. 

Solution:

LCM (6, 7, 8) = 168 So, the number is of the form 168m + 3. 

Now, 168m + 3 should be divisible by 9. 

We know that a number is divisible by 9 if the sum of its digits is a multiple of 9. 

For m = 1, the number is 168 + 3 = 171, the sum of whose digits is 9. 

Therefore, the required number is 171.   

Word Problems on HCF and LCM

Problem 1: The policemen at three different places on the ground blow a whistle after every 42 sec, 60 sec, and 78 sec respectively. If they all blow the whistle simultaneously at 9:30:00 hours, then at what time do they whistle again together?

Solution:

They all will whistle again at the same time after an interval that is equal to the LCM of their individual whistle-blowing cycles. 

So, LCM (42, 60, 78) = 2 x 3 x 7 x 10 x 13 = 5460 

Therefore, they will blow the whistle again simultaneously after 5460 sec, i.e., after 1 hour 31 minutes, i.e., at 11:01:00 hours.   

Problem 2: A rectangular field of dimension 180m x 105m is to be paved by identical square tiles. Find the size of each tile and the number of tiles required. 

Solution:

We need to find the size of a square tile such that a number of tiles cover the field exactly, leaving no area unpaved. 

For this, we find the HCF of the length and breadth of the field. 

HCF (180, 105) = 15 

Therefore, size of each tile = 15m x 15m 

Also, number of tiles = Area of field / Area of each tile 

⇒ Number of tiles = (180 x 105) / (15 x 15) 
⇒ Number of tiles = 84 

Hence, we need 84 tiles, each of size 15m x 15m. 

Problem 3: Three rectangular fields having areas of 60 m2, 84 m2, and 108 m2 are to be divided into identical rectangular flower beds, each having a length of 6 m. Find the breadth of each flower bed. 

Solution:

We need to divide each large field into smaller flower beds such that the area of each bed is same. 

So, we find the HCF of the larger fields which gives us the area of the smaller field. HCF (60, 84, 108) = 12 

Now, this HCF is the area (in m2) of each flower bed. 

Also, area of a rectangular field = Length x Breadth 

⇒ 12 = 6 x Breadth 
⇒ Breadth = 2 m 

Hence, each flower bed would be 2 m wide. 

Problem 4: Find the maximum number of students among whom 182 chocolates and 247 candies can be distributed such that each student gets the same number of each. Also, find the number of chocolates and candies each student will get.

Solution:

We need to find the HCF of the number of chocolates and candies available, which would give us the number of students. 

HCF (182, 247) = 13 

So, there can be 13 students. 

Also, Number of chocolates for each student = 182 / 13 = 14 

Number of toffees for each student = 247 / 13 = 19

Problem 5: A bell rings every 8 minutes. A second bell rings every 12 minutes.  If all the two bells ring at the same time at 4 AM, at what other time will they all ring together?

Solution:

We need to find LCM of 8 and 12.

LCM of 8 and 12 will be 24 min.

The bells will ring together again at 4 AM+ 24 minutes = 4:24 AM.

Practice Questions on HCF and LCM

HCF-LCM

You can download the practice questions with answers from the link given below:

Free Download HCF and LCM Practice Questions

  • Program to find LCM of two numbers
  • LCM of given array elements
  • Finding LCM of more than two (or array) numbers without using GCD
  • Program to find LCM of 2 numbers without using GCD
  • Check if LCM of array elements is divisible by a prime number or not
  • Find LCM of rational numbers
  • LCM of digits of a given number
  • Prime factors of LCM of array elements
  • Maximum sum of distinct numbers with LCM as N

Program on HCF

  • Program to find HCF iteratively
  • Program to find HCF (Highest Common Factor) of 2 Numbers
  • Program to find GCD or HCF of two numbers
  • Find the other number when LCM and HCF given
  • HCF of array of fractions (or rational numbers)
  • Quiz on LCM
  • Quiz on HCF 

Next Article
Pipes and Cistern - Aptitude Questions and Answers
author
kartik
Improve
Article Tags :
  • Aptitude

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 - Aptitude Questions
      HCF (Highest Common Factor) or GCD and LCM (Least Common Multiple) concepts are the foundation of many mathematical operations and are essential in solving complex problems. Prerequisites:HCF / GCDLCMInteresting Facts about HCF / GCDTips and Tricks for LCMTips and Tricks to Find HCF / GCDRelation be
      14 min read

    • Pipes and Cistern - Aptitude Questions and Answers
      Pipes and Cisterns are an important part of the quantitative aptitude syllabus for various competitive exams such as banking, SSC, RRB, and Insurance exams conducted in India.Prerequisite: Pipes and Cistern - FundamentalsAptitude Questions on Pipes and CisternsQ 1. Two pipes A and B can fill a tank
      10 min read

    • Speed, Time and Distance – Formulas & Aptitude Questions
      Speed, Time & Distance topic is some of the most important quantitative aptitude topics asked in the exams. The questions involving speed, time, and distance are to be solved using the distance formulas and concepts that you can refer to solve the questions.Prerequisites: Speed, Time & Dista
      9 min read

    • Boats and Streams - Aptitude Questions and Answers
      In this article, we will discuss the boat and stream concept, and provide sample questions to help you understand the topic better.Prerequisites: Boats and Streams Aptitude Questions on Boats and StreamsQ 1. A 100 m long train moving at a speed of 60 km/hr passes a man standing on the pavement near
      8 min read

    • Percentages - Aptitude Questions and Answers
      Percentage is one of the most important concepts in mathematics. Thus making it necessary while solving quantitative aptitude questions. In this article, we will discuss solved & unsolved problems on percentages. Prerequisite: Percentages - Formula, Examples, How to FindShort Tricks to Find Perc
      9 min read

    • Ratio and Proportion - Aptitude Questions and Answers
      Ratio and proportion are two fundamental concepts for anyone preparing for competitive exams. In this article, we’ll provide you with solved examples and practice questions to help you master the topic.Prerequisite: Ratio and Proportions - FundamentalsAptitude Questions on Ratios and ProportionQ 1.
      6 min read

    • Alligation or Mixture - Aptitude Questions and Answers
      Mixture and allegation are important concepts in quantitative aptitude used to determine the ratio and cost of sale for a mixture made up of two or more materials. Prerequisite: Mixture and AlligationAptitude Questions on Mixture and AlligationQ1: From a vessel of 20 liters of pure milk, 1 liter is
      5 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

    • Problems on Ages - Aptitude Questions and Answers
      Ages is an important topic in quantitative aptitude commonly encountered in competitive exams. It involves calculating the present or future ages of individuals based on given relationships and conditionsPrerequisite: Ages - FundamentalsAptitude Questions on AgesQ 1. A’s age after 15 years would be
      5 min read

    • Profit and Loss - Aptitude Questions and Answers
      Profit and loss are crucial topics in Quantitative Aptitude sections of various competitive exams. To succeed in these exams, candidates must have a solid understanding of the cost price (CP) and selling price (SP) formulas, as well as the different types of profit and loss questions.Prerequisite: P
      7 min read

    • Simple Interest - Aptitude Questions and Answers
      Simple Interest is an important topic in Quantitative Aptitude, which involves calculating the interest earned or paid on a principal amount over a specified period of time. This chapter is an essential part of many competitive exams, such as SSC and Bank exams, and can be challenging for some candi
      6 min read

    • Compound Interest - Aptitude Questions and Answers
      Compound Interest is one of the most important topics in Quantitative Aptitude and is frequently asked in competitive exams in India. This article covers all the basic to advanced-level concepts and formulas of Compound Interest that a candidate needs to learn about.Pre-requisites: Compound Interest
      7 min read

    • Mensuration 2D - Aptitude Questions and Answers
      Mensuration 2D is an important topic in Quantitative Aptitude, which mainly deals with problems related to the perimeter and area of two-dimensional shapes such as triangles, squares, rectangles, circles, parallelograms, etc.Mensuration (2D) deals with measuring length, area, and perimeter of 2-dime
      7 min read

    • Mensuration 3D Aptitude Questions & Answers
      Mensuration 3D is all about measuring and calculating the size and volume of objects in three dimensions. It involves using the Mensuration 3D Formula and Quantitative Aptitude skills to determine the size, volume, and surface area of shapes such as cubes, spheres, cones, frustum, prism, pyramids, a
      5 min read

    • Height and Distances - Aptitude Questions and Answers
      Solving height and distance questions requires a strong knowledge of trigonometric principles. These types of problems come up frequently on various competitive examinations, like the SSC, Bank PO, and other government job exams, and are an integral part of Quantitative Aptitude. Prerequisite: Heigh
      9 min read

    • Progression - Aptitude Questions and Answers
      Progression (or Sequences and Series) 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 Qu
      6 min read

    • Logarithm: Aptitude 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 - Aptitude Questions and Answers
      Are you preparing for a job interview or an entrance exam, or want to improve your quantitative skills? If so, then it is important to have a good understanding of probability and how it works.In this article, we will discuss the most common probability question types commonly asked on quantitative
      12 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 - Aptitude 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.Prerequisites: Clock - FundamentalsAptitude Questions on ClocksQ
      5 min read

    • Calendar - Aptitude Questions and Answers
      Calendars are one of the most important topics for government sector entrance exams. The topic “Calendar” falls under the category of Logical Reasoning as it involves a lot of logical discussion and analysis.In this article, solved questions on Calendars in the aptitude section are given.Prerequisit
      7 min read

    • Coding Decoding Question and Answers
      Coding decoding is an important part of the Quantitative Aptitude section in most of the competitive examinations in India. Coding and decoding questions are a common feature in the reasoning ability section of major Government exams such as those conducted by banks, insurance companies, SSC, and RR
      3 min read

    • Races and Games - Aptitude Questions and Answers
      Race and Games is a very important concept for quantitative aptitude in various competitive exams. In this article, we will explore some of the fundamental concepts of races and games and provide examples of frequently asked questions in these exams.Prerequisite: Races and Games - FundamentalsAptitu
      5 min read

    • Data Interpretation - Aptitude Question 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 - Reasoning Questions and Answers
      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 | Reasoning Questions and Answers
      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 Reasoning Questions and Answers
      Analogy is a topic of Logical Reasoning where the two things are compared and conclusions are drawn based on their similarities. Analogies questions are asked in various forms. These questions are also very important in the for the Verbal Ability section of the competitive examinations like SSC, Ban
      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
      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 and Questions and Answers related to the topic. Practicing Statemen
      4 min read

    • Statement and Conclusion Logical Reasoning
      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 is a set of statement followed by conclusions. The general idea to solve such questions is ju
      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-Analytical Reasoning
      Introduction :The 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, course of action, syllogism, etc. This is
      4 min read

    • Reasoning Tricks to Solve Coding -Decoding
      Coding -Decoding is one of the most common sections included in all the types of competitive exams 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 los
      5 min read

    • Statement and Assumption in Logical Reasoning
      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 number of statement and assumption questions asked in the various exams like SSC, Banking, etc. One
      9 min read

    • Venn Diagram
      Venn Diagrams are used for the visual representation of relationships as they provide a clear, visual method for showing how different sets intersect, overlap, or remain distinct. They are essential tools in mathematics and logic for illustrating the relationships between sets. By employing intersec
      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
      9 min read

    • Sentence Completion: Verbal Ability Questions and Answers
      Sentence completion is a type of question that can be found in the Verbal Ability section of many competitive tests and exams. The aim is to determine the ability to pick out the right word or words to complete a sentence. To answer this type of question as quickly and as accurately as possible, we
      11 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 Questions and Answers
      Idioms and phrases is an important concept of English comprehension which is often asked in competitive exams in India. Practicing questions from each topic within the time limit will help candidates in preparation. Candidates preparing for these exams must practice the questions of idioms and phras
      7 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 Question 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 in 2024
      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.

'); // $('.spinner-loading-overlay').show(); let script = document.createElement('script'); script.src = 'https://assets.geeksforgeeks.org/v2/editor-prod/static/js/bundle.min.js'; script.defer = true document.head.appendChild(script); script.onload = function() { suggestionModalEditor() //to add editor in suggestion modal if(loginData && loginData.premiumConsent){ personalNoteEditor() //to load editor in personal note } } script.onerror = function() { if($('.editorError').length){ $('.editorError').remove(); } var messageDiv = $('
').text('Editor not loaded due to some issues'); $('#suggestion-section-textarea').append(messageDiv); $('.suggest-bottom-btn').hide(); $('.suggestion-section').hide(); editorLoaded = false; } }); //suggestion modal editor function suggestionModalEditor(){ // editor params const params = { data: undefined, plugins: ["BOLD", "ITALIC", "UNDERLINE", "PREBLOCK"], } // loading editor try { suggestEditorInstance = new GFGEditorWrapper("suggestion-section-textarea", params, { appNode: true }) suggestEditorInstance._createEditor("") $('.spinner-loading-overlay:eq(0)').remove(); editorLoaded = true; } catch (error) { $('.spinner-loading-overlay:eq(0)').remove(); editorLoaded = false; } } //personal note editor function personalNoteEditor(){ // editor params const params = { data: undefined, plugins: ["UNDO", "REDO", "BOLD", "ITALIC", "NUMBERED_LIST", "BULLET_LIST", "TEXTALIGNMENTDROPDOWN"], placeholderText: "Description to be......", } // loading editor try { let notesEditorInstance = new GFGEditorWrapper("pn-editor", params, { appNode: true }) notesEditorInstance._createEditor(loginData&&loginData.user_personal_note?loginData.user_personal_note:"") $('.spinner-loading-overlay:eq(0)').remove(); editorLoaded = true; } catch (error) { $('.spinner-loading-overlay:eq(0)').remove(); editorLoaded = false; } } var lockedCasesHtml = `You can suggest the changes for now and it will be under 'My Suggestions' Tab on Write.

You will be notified via email once the article is available for improvement. Thank you for your valuable feedback!`; var badgesRequiredHtml = `It seems that you do not meet the eligibility criteria to create improvements for this article, as only users who have earned specific badges are permitted to do so.

However, you can still create improvements through the Pick for Improvement section.`; jQuery('.improve-header-sec-child').on('click', function(){ jQuery('.improve-modal--overlay').hide(); $('.improve-modal--suggestion').hide(); jQuery('#suggestion-modal-alert').hide(); }); $('.suggest-change_wrapper, .locked-status--impove-modal .improve-bottom-btn').on('click',function(){ // when suggest changes option is clicked $('.ContentEditable__root').text(""); $('.suggest-bottom-btn').html("Suggest changes"); $('.thank-you-message').css("display","none"); $('.improve-modal--improvement').hide(); $('.improve-modal--suggestion').show(); $('#suggestion-section-textarea').show(); jQuery('#suggestion-modal-alert').hide(); if(suggestEditorInstance !== null){ suggestEditorInstance.setEditorValue(""); } $('.suggestion-section').css('display', 'block'); jQuery('.suggest-bottom-btn').css("display","block"); }); $('.create-improvement_wrapper').on('click',function(){ // when create improvement option clicked then improvement reason will be shown if(loginData && loginData.isLoggedIn) { $('body').append('
'); $('.spinner-loading-overlay').show(); jQuery.ajax({ url: writeApiUrl + 'create-improvement-post/?v=1', type: "POST", contentType: 'application/json; charset=utf-8', dataType: 'json', xhrFields: { withCredentials: true }, data: JSON.stringify({ gfg_id: post_id }), success:function(result) { $('.spinner-loading-overlay:eq(0)').remove(); $('.improve-modal--overlay').hide(); $('.unlocked-status--improve-modal-content').css("display","none"); $('.create-improvement-redirection-to-write').attr('href',writeUrl + 'improve-post/' + `${result.id}` + '/', '_blank'); $('.create-improvement-redirection-to-write')[0].click(); }, error:function(e) { showErrorMessage(e.responseJSON,e.status) }, }); } else { if(loginData && !loginData.isLoggedIn) { $('.improve-modal--overlay').hide(); if ($('.header-main__wrapper').find('.header-main__signup.login-modal-btn').length) { $('.header-main__wrapper').find('.header-main__signup.login-modal-btn').click(); } return; } } }); $('.left-arrow-icon_wrapper').on('click',function(){ if($('.improve-modal--suggestion').is(":visible")) $('.improve-modal--suggestion').hide(); else{ } $('.improve-modal--improvement').show(); }); const showErrorMessage = (result,statusCode) => { if(!result) return; $('.spinner-loading-overlay:eq(0)').remove(); if(statusCode == 403) { $('.improve-modal--improve-content.error-message').html(result.message); jQuery('.improve-modal--overlay').show(); jQuery('.improve-modal--improvement').show(); $('.locked-status--impove-modal').css("display","block"); $('.unlocked-status--improve-modal-content').css("display","none"); $('.improve-modal--improvement').attr("status","locked"); return; } } function suggestionCall() { var editorValue = suggestEditorInstance.getValue(); var suggest_val = $(".ContentEditable__root").find("[data-lexical-text='true']").map(function() { return $(this).text().trim(); }).get().join(' '); suggest_val = suggest_val.replace(/\s+/g, ' ').trim(); var array_String= suggest_val.split(" ") //array of words var gCaptchaToken = $("#g-recaptcha-response-suggestion-form").val(); var error_msg = false; if(suggest_val != "" && array_String.length >=4){ if(editorValue.length { jQuery('.ContentEditable__root').focus(); jQuery('#suggestion-modal-alert').hide(); }, 3000); } } document.querySelector('.suggest-bottom-btn').addEventListener('click', function(){ jQuery('body').append('
'); jQuery('.spinner-loading-overlay').show(); if(loginData && loginData.isLoggedIn) { suggestionCall(); return; } // script for grecaptcha loaded in loginmodal.html and call function to set the token setGoogleRecaptcha(); }); $('.improvement-bottom-btn.create-improvement-btn').click(function() { //create improvement button is clicked $('body').append('
'); $('.spinner-loading-overlay').show(); // send this option via create-improvement-post api jQuery.ajax({ url: writeApiUrl + 'create-improvement-post/?v=1', type: "POST", contentType: 'application/json; charset=utf-8', dataType: 'json', xhrFields: { withCredentials: true }, data: JSON.stringify({ gfg_id: post_id }), success:function(result) { $('.spinner-loading-overlay:eq(0)').remove(); $('.improve-modal--overlay').hide(); $('.create-improvement-redirection-to-write').attr('href',writeUrl + 'improve-post/' + `${result.id}` + '/', '_blank'); $('.create-improvement-redirection-to-write')[0].click(); }, error:function(e) { showErrorMessage(e.responseJSON,e.status); }, }); });
"For an ad-free experience and exclusive features, subscribe to our Premium Plan!"
Continue without supporting
`; $('body').append(adBlockerModal); $('body').addClass('body-for-ad-blocker'); const modal = document.getElementById("adBlockerModal"); modal.style.display = "block"; } function handleAdBlockerClick(type){ if(type == 'disabled'){ window.location.reload(); } else if(type == 'info'){ document.getElementById("ad-blocker-div").style.display = "none"; document.getElementById("ad-blocker-info-div").style.display = "flex"; handleAdBlockerIconClick(0); } } var lastSelected= null; //Mapping of name and video URL with the index. const adBlockerVideoMap = [ ['Ad Block Plus','https://media.geeksforgeeks.org/auth-dashboard-uploads/abp-blocker-min.mp4'], ['Ad Block','https://media.geeksforgeeks.org/auth-dashboard-uploads/Ad-block-min.mp4'], ['uBlock Origin','https://media.geeksforgeeks.org/auth-dashboard-uploads/ub-blocke-min.mp4'], ['uBlock','https://media.geeksforgeeks.org/auth-dashboard-uploads/U-blocker-min.mp4'], ] function handleAdBlockerIconClick(currSelected){ const videocontainer = document.getElementById('ad-blocker-info-div-gif'); const videosource = document.getElementById('ad-blocker-info-div-gif-src'); if(lastSelected != null){ document.getElementById("ad-blocker-info-div-icons-"+lastSelected).style.backgroundColor = "white"; document.getElementById("ad-blocker-info-div-icons-"+lastSelected).style.borderColor = "#D6D6D6"; } document.getElementById("ad-blocker-info-div-icons-"+currSelected).style.backgroundColor = "#D9D9D9"; document.getElementById("ad-blocker-info-div-icons-"+currSelected).style.borderColor = "#848484"; document.getElementById('ad-blocker-info-div-name-span').innerHTML = adBlockerVideoMap[currSelected][0] videocontainer.pause(); videosource.setAttribute('src', adBlockerVideoMap[currSelected][1]); videocontainer.load(); videocontainer.play(); lastSelected = currSelected; }

What kind of Experience do you want to share?

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