Upload Button Icon Add office photos

Ksb Pumps

Compare button icon Compare button icon Compare

Filter interviews by

Ksb Pumps Graduate Engineer Trainee (Get) Interview Questions and Answers

Updated 17 Apr 2023

Ksb Pumps Graduate Engineer Trainee (Get) Interview Experiences

2 interviews found

Interview experience
5
Excellent
Difficulty level
Hard
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Campus Placement and was interviewed before Apr 2022. There were 4 interview rounds.

Round 1 - Resume Shortlist 
Pro Tip by AmbitionBox:
Keep your resume crisp and to the point. A recruiter looks at your resume for an average of 6 seconds, make sure to leave the best impression.
View all tips
Round 2 - Aptitude Test 

Technical test based on mechanical and electrical concepts

Round 3 - Psychometric Test 

(1 Question)

  • Q1. Test to assess intelligence, abilities, potential and personality
Round 4 - Technical 

(1 Question)

  • Q1. Question by applying department to understand knowledge of candidate.
Round 1 - Aptitude Test 

Reasoning questions, and followed by a technical test

Round 2 - Group Discussion 

Any scenario will be given on that basis we need to speak.

Round 3 - Technical 

(1 Question)

  • Q1. 1. What do u know about the Company? 2. Technical related to pumps, valves 3. Types of magnets. 4. Design part.
Round 4 - HR 

(1 Question)

  • Q1. 1. Tell me about yourself. 2. Why are you perfect for this role.

Interview Preparation Tips

Interview preparation tips for other job seekers - Good place to start a carrier. Prepare good for all the rounds. Culture at KSB is very good and one will be lucky if selected.

Graduate Engineer Trainee (Get) Interview Questions Asked at Other Companies

asked in JBM Group
Q1. Q: 1 What is IC engine? What is the types of IC engine? Q:2 Diffe ... read more
Q2. How would you check the continuity of a wire inside a wall if the ... read more
Q3. What will be the cost of painting the wall behind me?
Q4. What happens when there is a large air void in concrete?
Q5. What are the different types of concrete?

Top trending discussions

View All
Interview Tips & Stories
2w
toobluntforu
·
works at
Cvent
Can speak English, can’t deliver in interviews
I feel like I can't speak fluently during interviews. I do know english well and use it daily to communicate, but the moment I'm in an interview, I just get stuck. since it's not my first language, I struggle to express what I actually feel. I know the answer in my head, but I just can’t deliver it properly at that moment. Please guide me
Got a question about Ksb Pumps?
Ask anonymously on communities.

Interview questions from similar companies

I appeared for an interview in Oct 2016.

Interview Preparation Tips

College Name: NIT Kurukshetra

I applied via Naukri.com and was interviewed in Jun 2020. There were 4 interview rounds.

Interview Questionnaire 

13 Questions

  • Q1. They asked me lot of technical questions on java technology and sql
  • Q2. What is oops concepts of java and its type
  • Ans. 

    Java OOPs concepts include inheritance, polymorphism, encapsulation, and abstraction.

    • Inheritance allows a class to inherit properties and methods from another class.

    • Polymorphism allows objects to take on multiple forms and behave differently based on the context.

    • Encapsulation hides the implementation details of a class and only exposes necessary information.

    • Abstraction focuses on the essential features of an object and...

  • Answered by AI
  • Q3. What is sql aggregation function
  • Ans. 

    SQL aggregation functions perform calculations on multiple rows of a single column of a table.

    • Aggregation functions include COUNT, SUM, AVG, MAX, and MIN.

    • They are used with the SELECT statement to retrieve data from a table.

    • Examples: SELECT COUNT(*) FROM customers; SELECT AVG(price) FROM products;

    • Aggregate functions can also be used with the GROUP BY clause to group data by one or more columns.

  • Answered by AI
  • Q4. What is join and it's types
  • Ans. 

    Join is a SQL operation that combines rows from two or more tables based on a related column between them.

    • Join is used to retrieve data from multiple tables in a single query.

    • Types of join include inner join, left join, right join, and full outer join.

    • Inner join returns only the matching rows from both tables.

    • Left join returns all the rows from the left table and matching rows from the right table.

    • Right join returns al...

  • Answered by AI
  • Q5. How to write join queries
  • Ans. 

    Join queries are used to combine data from two or more tables based on a related column.

    • Use the JOIN keyword followed by the name of the table you want to join.

    • Specify the columns you want to select from each table.

    • Use the ON keyword to specify the column(s) that the tables should be joined on.

    • There are different types of joins: INNER JOIN, LEFT JOIN, RIGHT JOIN, and FULL OUTER JOIN.

    • Example: SELECT customers.name, orde...

  • Answered by AI
  • Q6. What is sql and how to use
  • Ans. 

    SQL is a programming language used to manage and manipulate relational databases.

    • SQL stands for Structured Query Language

    • It is used to create, modify, and query databases

    • Common commands include SELECT, INSERT, UPDATE, and DELETE

    • Example: SELECT * FROM customers WHERE age > 18;

  • Answered by AI
  • Q7. What is constructor and how to use and explain it
  • Ans. 

    A constructor is a special method used to initialize objects in a class.

    • Constructors have the same name as the class they belong to.

    • They are called automatically when an object is created.

    • Constructors can take parameters to set initial values.

    • They can be overloaded to provide multiple ways of initializing objects.

  • Answered by AI
  • Q8. What is class and object and different between method overriding and method overloading
  • Ans. 

    Class and object are fundamental concepts in object-oriented programming. Method overloading and method overriding are two ways to achieve polymorphism.

    • A class is a blueprint or template for creating objects that encapsulate data and behavior.

    • An object is an instance of a class that has its own state and behavior.

    • Method overloading is when multiple methods in a class have the same name but different parameters.

    • Method o...

  • Answered by AI
  • Q9. What is exception handling and how to use
  • Ans. 

    Exception handling is the process of handling errors and unexpected events in a program.

    • It involves identifying and anticipating potential errors

    • It provides a mechanism to handle these errors gracefully

    • It helps prevent program crashes and improves user experience

    • Examples include try-catch blocks, throw statements, and finally blocks

  • Answered by AI
  • Q10. What is multithreading and its method like wait method
  • Ans. 

    Multithreading is the ability of a CPU to execute multiple threads concurrently. Wait method is used to pause a thread.

    • Multithreading allows for better utilization of CPU resources

    • Wait method is used to pause a thread until a certain condition is met

    • Other methods like notify and notifyAll can be used to wake up waiting threads

    • Multithreading can improve performance in applications that require parallel processing

    • Java pr...

  • Answered by AI
  • Q11. What is JSP and servlet and explain it
  • Ans. 

    JSP and Servlet are Java technologies used for creating dynamic web pages and handling HTTP requests and responses.

    • JSP stands for JavaServer Pages and is used for creating dynamic web pages that can interact with server-side data and logic.

    • Servlet is a Java program that runs on a web server and handles HTTP requests and responses.

    • JSP and Servlet work together to create dynamic web applications that can generate HTML, p...

  • Answered by AI
  • Q12. What is sql sub query and explain it
  • Ans. 

    SQL subquery is a query within another query used to retrieve data from one or more tables.

    • Subqueries are enclosed in parentheses and placed within the WHERE or HAVING clause of the outer query.

    • They can be used to filter, sort, or aggregate data based on the results of the subquery.

    • Subqueries can also be used in the SELECT statement to retrieve a single value or set of values.

    • Example: SELECT * FROM employees WHERE depa...

  • Answered by AI
  • Q13. What is complex query and how to write
  • Ans. 

    A complex query is a query that involves multiple tables, conditions, and/or functions.

    • Start by identifying the tables involved in the query

    • Determine the conditions that need to be met using WHERE clause

    • Use JOIN to combine tables if necessary

    • Use aggregate functions like COUNT, SUM, AVG, etc. to perform calculations

    • Use subqueries to break down complex queries into smaller parts

    • Test the query and refine as necessary

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Please you should learn first after that you should give interviews

Skills evaluated in this interview

Round 1 - Resume Shortlist 
Pro Tip by AmbitionBox:
Don’t add your photo or details such as gender, age, and address in your resume. These details do not add any value.
View all tips
Round 2 - Technical 

(1 Question)

  • Q1. Design, fluid, basic subjects
Round 3 - HR 

(1 Question)

  • Q1. Basic hr questions like tell me about the company

Interview Preparation Tips

Interview preparation tips for other job seekers - stay casual don't stress too much and prepare basic clearly and rest depends on your luck

I applied via Naukri.com and was interviewed in Aug 2021. There were 3 interview rounds.

Round 1 - Resume Shortlist 
Pro Tip by AmbitionBox:
Keep your resume crisp and to the point. A recruiter looks at your resume for an average of 6 seconds, make sure to leave the best impression.
View all tips
Round 2 - Technical 

(2 Questions)

  • Q1. Basic Electrical Engineering questions like what is power factor, SLD,Trafo,DC /AC, C.B. and Isolator.
  • Q2. What is the definition of Trafo and power transformer and its types and solar pr, Solar use and its working process.
  • Ans. 

    Trafo and power transformers are devices used to transfer electrical energy from one circuit to another. Solar power is a renewable energy source that converts sunlight into electricity.

    • Trafo is a common abbreviation for transformer.

    • Power transformers are used to transfer electrical energy between circuits with different voltage levels.

    • Types of power transformers include step-up transformers, step-down transformers, an...

  • Answered by AI
Round 3 - HR 

(2 Questions)

  • Q1. What is your family background?
  • Ans. 

    I come from a close-knit family that values education and hard work, with each member pursuing their passions and supporting one another.

    • My father is an engineer, which inspired my interest in technology and problem-solving.

    • My mother is a teacher, emphasizing the importance of education and lifelong learning.

    • I have a younger sister who is passionate about environmental science, and we often discuss sustainability.

    • Famil...

  • Answered by AI
  • Q2. Share details of your previous job.

Interview Preparation Tips

Interview preparation tips for other job seekers - To find the job as a fresher you should explore the field in which you want to be work in that.
You should start your job from lower grade as an engineer in the current senirio.
In The core branches you should have experience of atleast 1 year to stand as a fresher because there is less hiring for freshers on job portals.
Round 1 - Resume Shortlist 
Pro Tip by AmbitionBox:
Properly align and format text in your resume. A recruiter will have to spend more time reading poorly aligned text, leading to high chances of rejection.
View all tips
Round 2 - Aptitude Test 

Quantitative aptitude , Logical reasoning

Round 3 - Group Discussion 

Non elimination round, 7 persons were there

Round 4 - Technical 

(1 Question)

  • Q1. Questions related to Heat exchanger, Strength of material, Fluid Mechanics, Pumps
Round 5 - HR 

(2 Questions)

  • Q1. Introduction , Strength
  • Q2. Do you have a experience in Public Speaking, Questions on extra curricular

Interview Preparation Tips

Interview preparation tips for other job seekers - Be confident in Interview. Prepare basic subjects like Strength of Material , Fluid mechanics ,Thermodynamics
Are these interview questions helpful?
Round 1 - Technical 

(1 Question)

  • Q1. What is peticot of insulator??
  • Ans. 

    A peticot of insulator is a protective covering used to insulate electrical wires or components.

    • A peticot of insulator is also known as an insulating sleeve or insulating tube.

    • It is typically made of materials such as rubber, plastic, or fiberglass.

    • The peticot of insulator is used to prevent electrical current from flowing to unintended areas or causing short circuits.

    • It provides insulation and protection against heat,...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Basics should be clear and should have good communication skills
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
4-6 weeks
Result
Selected Selected

I appeared for an interview before Apr 2024, where I was asked the following questions.

  • Q1. How break work in excavator
  • Ans. 

    Excavator brakes operate using hydraulic systems to ensure safe and controlled movement during operation.

    • Hydraulic brakes use fluid pressure to engage and disengage the brake system.

    • Excavators typically have two types of brakes: service brakes for normal operation and parking brakes for securing the machine.

    • Service brakes are activated when the operator releases the accelerator pedal, allowing the hydraulic system to s...

  • Answered by AI
  • Q2. Type of valve like MRV & PRV
  • Ans. 

    MRV (Motorized Regulating Valve) and PRV (Pressure Reducing Valve) control fluid flow and pressure in various systems.

    • MRV is used to regulate flow in HVAC systems, ensuring optimal temperature control.

    • PRV is essential in water supply systems to maintain safe pressure levels.

    • MRVs can be automated for precise control, often used in industrial applications.

    • PRVs protect downstream equipment from high pressure, preventing d...

  • Answered by AI
  • Q3. How do you convince customer for certain points
  • Ans. 

    Effective persuasion involves understanding customer needs, building trust, and presenting clear benefits.

    • Listen actively to understand customer concerns and needs.

    • Use data and testimonials to support your points; for example, share success stories from similar clients.

    • Highlight the unique benefits of your product or service; for instance, explain how it saves time or reduces costs.

    • Build rapport by finding common groun...

  • Answered by AI
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I appeared for an interview before Mar 2024, where I was asked the following questions.

  • Q1. Basic and technicals related to renewable energies
  • Q2. About local handeling and team handeling

Interview Preparation Tips

Interview preparation tips for other job seekers - Acme renewable is a good company

Ksb Pumps Interview FAQs

How many rounds are there in Ksb Pumps Graduate Engineer Trainee (Get) interview?
Ksb Pumps interview process usually has 4 rounds. The most common rounds in the Ksb Pumps interview process are Aptitude Test, Technical and Group Discussion.
How to prepare for Ksb Pumps Graduate Engineer Trainee (Get) interview?
Go through your CV in detail and study all the technologies mentioned in your CV. Prepare at least two technologies or languages in depth if you are appearing for a technical interview at Ksb Pumps. The most common topics and skills that interviewers at Ksb Pumps expect are Centrifugal Pumps, Design, Design Engineering, Mechanical Engineering and Pumps.
What are the top questions asked in Ksb Pumps Graduate Engineer Trainee (Get) interview?

Some of the top questions asked at the Ksb Pumps Graduate Engineer Trainee (Get) interview -

  1. 1. What do u know about the Company? 2. Technical related to pumps, valves 3. T...read more
  2. Test to assess intelligence, abilities, potential and personal...read more

Tell us how to improve this page.

Overall Interview Experience Rating

5/5

based on 1 interview experience

Difficulty level

Hard 100%

Duration

Less than 2 weeks 100%
View more
Ksb Pumps Graduate Engineer Trainee (Get) Salary
based on 20 salaries
₹3 L/yr - ₹3.6 L/yr
17% less than the average Graduate Engineer Trainee (Get) Salary in India
View more details

Ksb Pumps Graduate Engineer Trainee (Get) Reviews and Ratings

based on 9 reviews

4.0/5

Rating in categories

4.1

Skill development

4.3

Work-life balance

3.7

Salary

4.4

Job security

4.5

Company culture

3.7

Promotions

4.0

Work satisfaction

Explore 9 Reviews and Ratings
Assistant Manager
93 salaries
unlock blur

₹6 L/yr - ₹12 L/yr

Deputy Manager
44 salaries
unlock blur

₹6 L/yr - ₹17 L/yr

Executive
40 salaries
unlock blur

₹4 L/yr - ₹7.5 L/yr

Associate
27 salaries
unlock blur

₹3.4 L/yr - ₹5.5 L/yr

Senior Executive
22 salaries
unlock blur

₹4.4 L/yr - ₹7.5 L/yr

Explore more salaries
Compare Ksb Pumps with

Sigma Electric Manufacturing Corporation

4.0
Compare

TÜV SÜD

3.9
Compare

Ceasefire Industries

3.3
Compare

TKIL

4.2
Compare
write
Share an Interview