Upload Button Icon Add office photos

Filter interviews by

Welspun Pipes Interview Questions, Process, and Tips

Updated 9 Oct 2024

Top Welspun Pipes Interview Questions and Answers

Welspun Pipes Interview Experiences

Popular Designations

3 interviews found

Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Walk-in and was interviewed before Oct 2023. There were 3 interview rounds.

Round 1 - Technical 

(2 Questions)

  • Q1. Basic mathematics question
  • Q2. Reasoning questions
Round 2 - Technical 

(2 Questions)

  • Q1. Slurry pump discharge flow rate
  • Ans. 

    The slurry pump discharge flow rate is the volume of slurry being pumped out per unit of time.

    • The discharge flow rate is typically measured in cubic meters per hour or gallons per minute.

    • Factors affecting the flow rate include pump speed, pump size, and slurry density.

    • Calculating the flow rate involves knowing the pump efficiency and the total head of the pump.

    • For example, a slurry pump with a discharge flow rate of 10...

  • Answered by AI
  • Q2. Planetary gear related questions
Round 3 - HR 

(2 Questions)

  • Q1. About hobbies and personal details
  • Q2. Why you switch your job
  • Ans. 

    I switched my job to seek new challenges and opportunities for growth.

    • Seeking new challenges and opportunities for growth

    • Desire for career advancement

    • Better work-life balance

    • Change in industry or field of interest

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Good place to learn new things but worst management

Assistant Engineer Interview Questions asked at other Companies

Q1. Why do we take only 1 set of cube sample at a casting of concrete of 5 or less than 5 Meter cube.
View answer (9)

I applied via Referral and was interviewed before Mar 2021. 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 - Technical 

(1 Question)

  • Q1. Question were asked from area of experience
Round 3 - Technical 

(1 Question)

  • Q1. What is availability how it could be increased
  • Ans. 

    Availability refers to the amount of time an employee is willing and able to work. It can be increased by offering flexible schedules and incentives.

    • Offer flexible work schedules

    • Provide incentives for employees to work additional hours

    • Hire part-time or temporary employees to fill gaps in coverage

    • Cross-train employees to perform multiple roles

    • Implement technology solutions to streamline processes and reduce downtime

  • Answered by AI
Round 4 - HR 

(1 Question)

  • Q1. Why are you looking for a change?

Interview Preparation Tips

Interview preparation tips for other job seekers - Focus on basics ,have to exposure to your field ,you will be definately selected

Associate Manager Interview Questions asked at other Companies

Q1. How will you calculate tension on the sheet which is being given OFF, by Pay off reel ?
View answer (5)

Spiral pipe Mill ID Gap control operator Interview Questions & Answers

user image Anonymous

posted on 29 Aug 2019

I was interviewed in Aug 2019.

Interview Questionnaire 

2 Questions

  • Q1. HSAW forming formula
  • Q2. C w/3.142*D-T

Interview questions from similar companies

Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Coding Test 

There were three coding questions.

Round 2 - Technical 

(5 Questions)

  • Q1. Could you provide a thorough explanation of the project?
  • Q2. OOps Concepts and question from the technical subjects
  • Q3. Why Spring Boot
  • Q4. JWT Authentication
  • Q5. Docker and Kubernetes
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Coding Test 

Medium leetcode question on array list

Round 2 - One-on-one 

(4 Questions)

  • Q1. Core java and collections, exceptions and threading
  • Q2. Core java collections
  • Q3. Multi threading
  • Q4. Executor framework
Round 3 - One-on-one 

(1 Question)

  • Q1. Threading related questions
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Campus Placement and was interviewed in Sep 2024. There were 5 interview rounds.

Round 1 - Aptitude Test 

Round 1 was aptitude round, it consisted of java and c++ snippets and we had to guess the output. Apart from that there were problems on speed, velocity, distance and time. Problems on word-letter patterns were also asked. The aptitude round had 30 questions and time given was 30 minutes.

Round 2 - Coding Test 

Aptitude round was the only elimination round. The next following 4 rounds were non-elimination rounds. Coding test included 3 questions - 1 and half hour was given to solve the same. It is fine if you don't perform well here, since it is a non-elimination round. But try to solve 1 and half or 2 questions atleast. The questions were mainly based on 1d arrays, 2D arrays, strings and string arrays.

Round 3 - Technical 

(11 Questions)

  • Q1. Introduce yourself.
  • Ans. 

    I am a recent graduate with a degree in engineering, eager to learn and grow in the field.

    • Recent graduate with a degree in engineering

    • Passionate about learning and growing in the field

    • Eager to apply theoretical knowledge to practical projects

  • Answered by AI
  • Q2. Difference between Structure and object oriented languages
  • Ans. 

    Structure languages focus on procedures and functions, while object-oriented languages focus on objects and classes.

    • Structure languages use functions and procedures to manipulate data

    • Object-oriented languages use objects and classes to encapsulate data and behavior

    • Structure languages are more procedural in nature, while object-oriented languages are more modular and reusable

    • Examples of structure languages include C and...

  • Answered by AI
  • Q3. Explain of OOPS concepts and their real life examples.
  • Ans. 

    OOPS concepts are fundamental to object-oriented programming and include inheritance, encapsulation, polymorphism, and abstraction.

    • Inheritance: A child class inherits properties and behaviors from a parent class. Example: Animal class can be a parent class with child classes like Dog and Cat inheriting its attributes.

    • Encapsulation: Bundling data and methods that operate on the data into a single unit. Example: A car ob...

  • Answered by AI
  • Q4. What is static keyword and it's usage.
  • Ans. 

    The static keyword in programming is used to declare variables, functions, or classes that retain their values or state throughout the program's execution.

    • Static variables retain their values between function calls

    • Static functions can only be accessed within the same file

    • Static classes cannot be instantiated and have limited visibility

    • Static keyword can also be used in C++ to declare class members shared among all inst

  • Answered by AI
  • Q5. System architecture diagram for web application project.
  • Ans. 

    The system architecture diagram for a web application project visually represents the components and their interactions.

    • Include components like client-side interface, server-side application, database, and external services

    • Show how these components communicate with each other

    • Consider scalability, security, and performance in the design

    • Use standard symbols and notations for clarity

  • Answered by AI
  • Q6. Access Modifiers in java
  • Ans. 

    Access modifiers in Java control the visibility of classes, methods, and variables.

    • There are four types of access modifiers in Java: public, private, protected, and default.

    • Public: accessible from any other class.

    • Private: only accessible within the same class.

    • Protected: accessible within the same package and subclasses.

    • Default: accessible only within the same package.

    • Example: public class MyClass { private int myVar; p

  • Answered by AI
  • Q7. What OOPS concepts are implemented in my project
  • Ans. 

    Encapsulation, Inheritance, Polymorphism, Abstraction

    • Encapsulation: Data hiding and bundling of data with methods. Example: Using private variables and public methods.

    • Inheritance: Reusing code and creating a hierarchy of classes. Example: Subclass inheriting properties and methods from a superclass.

    • Polymorphism: Ability to present the same interface for different data types. Example: Method overloading and overriding.

    • A...

  • Answered by AI
  • Q8. DBMS core concepts
  • Q9. Overloading and Overriding
  • Q10. Approach to the coding questions asked in coding round.
  • Q11. Questions on what is cloud and what are some cloud platforms you know?
Round 4 - Case Study 

A project is assigned to a group of students and we need to come up with an idea on how to implement that project as a team.

Round 5 - HR 

(2 Questions)

  • Q1. Introduce yourself
  • Ans. 

    I am a recent graduate with a degree in engineering, eager to learn and grow in the field.

    • Recent graduate with a degree in engineering

    • Passionate about learning and growing in the field

    • Eager to apply theoretical knowledge to practical projects

  • Answered by AI
  • Q2. Family background

Interview Preparation Tips

Interview preparation tips for other job seekers - Interview was completely resume-based. All the rounds were conducted on-campus within a single day. Aptitude round is the only elimination round. If you don't do well in any coding round, you can make it up in other rounds. Morning they started with the process and by evening all rounds were completed and results were declared.

Skills evaluated in this interview

Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
Selected Selected

I applied via Referral and was interviewed in Sep 2024. There were 3 interview rounds.

Round 1 - Technical 

(1 Question)

  • Q1. This round was purely based on DSA. One question of Leetcode hard difficulty was asked. Question Name - Median of two sorted arrays.
Round 2 - Technical 

(1 Question)

  • Q1. This was low level design round. I was asked to design a system like Redbus. Functional Requirements - 1. user can login/signup on the platform 2. functionality to choose btw different operational routes....
Round 3 - Technical 

(2 Questions)

  • Q1. This round was taken by their Engineering Director. Questions were related to multithreading, types of entity relationships with examples, transaction management in Spring Boot, JVM components, garbage col...
  • Q2. Later interviewer asked me to code a multithreading assignment - 1. Create a fixed threadpool of size 10. 2. Submit number of tasks to the threadpool. 3. Return the results from every task and print in mu...

Interview Preparation Tips

Topics to prepare for Pine Labs Software Development Engineer II interview:
  • DSA
  • LLD
  • HLD
  • MySQL
  • Java
  • Spring Boot
Interview experience
3
Average
Difficulty level
Moderate
Process Duration
-
Result
Not Selected

I applied via LinkedIn and was interviewed in Nov 2024. There was 1 interview round.

Round 1 - One-on-one 

(4 Questions)

  • Q1. Introduction, be prepared to have knowledge on your resume
  • Q2. Mathematical questions like percentage
  • Q3. Critical thinking. They asked a question with a given situation what you'll do .
  • Q4. The past 4 days been climate be stroming . And current was cut off due to rain and flood , you have a important assignment to finish, what you'll do

Interview Preparation Tips

Interview preparation tips for other job seekers - I went to citi for the interview of operation specialist other day. I been waitied for around 4 hours just to get my first round of interview. The interviewer seems exhausted due to overwhelming candidate. And one thing is shown upon the scheduling of the interview is lack of people management and schedules. The interviewer seems nice even though i didn't selected
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
No response

I applied via Referral and was interviewed in Nov 2024. There were 2 interview rounds.

Round 1 - Technical 

(4 Questions)

  • Q1. Types of Chunking in data preparation in RAG
  • Q2. How Embedding works in Vector Databases
  • Q3. Explain ARIMA model
  • Q4. How can we decide to choose Linear Regression for a business problem
Round 2 - Technical 

(4 Questions)

  • Q1. What is token and it's limit for Open Source LLMs
  • Q2. Difference of a Regression and Time Series problem
  • Q3. Advantage of LSTM over RNN
  • Q4. Performance Metrics for Logistic Regression
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - One-on-one 

(5 Questions)

  • Q1. Basic questions on python
  • Q2. Difference between list tuple
  • Q3. Area of room 6D
  • Q4. Most emberacing situation u faced in your life
  • Q5. Behavior questions like what will u do if this happens

Welspun Pipes Interview FAQs

How many rounds are there in Welspun Pipes interview?
Welspun Pipes interview process usually has 3-4 rounds. The most common rounds in the Welspun Pipes interview process are Technical, HR and Resume Shortlist.
What are the top questions asked in Welspun Pipes interview?

Some of the top questions asked at the Welspun Pipes interview -

  1. What is availability how it could be increa...read more
  2. Slurry pump discharge flow r...read more
  3. HSAW forming formu...read more

Tell us how to improve this page.

People are getting interviews through

based on 2 Welspun Pipes interviews
WalkIn
Referral
50%
50%
Moderate Confidence
?
Moderate Confidence means the data is based on a sufficient number of responses received from the candidates

Interview Questions from Similar Companies

Thermax Limited Interview Questions
4.2
 • 235 Interviews
Jindal Saw Interview Questions
4.0
 • 97 Interviews
Praj Industries Interview Questions
4.1
 • 35 Interviews
ESL Steel Interview Questions
4.0
 • 29 Interviews
Surya Roshni Interview Questions
4.1
 • 14 Interviews
Man Industries Interview Questions
3.8
 • 8 Interviews
View all

Welspun Pipes Reviews and Ratings

based on 54 reviews

3.6/5

Rating in categories

3.6

Skill development

3.4

Work-Life balance

3.9

Salary & Benefits

3.2

Job Security

3.5

Company culture

3.6

Promotions/Appraisal

3.3

Work Satisfaction

Explore 54 Reviews and Ratings
Associate Manager
15 salaries
unlock blur

₹5.1 L/yr - ₹10 L/yr

Engineer
14 salaries
unlock blur

₹3.2 L/yr - ₹7.2 L/yr

Senior Engineer
12 salaries
unlock blur

₹7 L/yr - ₹9.5 L/yr

Assistant Engineer
9 salaries
unlock blur

₹3.6 L/yr - ₹5 L/yr

Assistant Manager
8 salaries
unlock blur

₹5.2 L/yr - ₹8.4 L/yr

Explore more salaries
Compare Welspun Pipes with

Jindal Saw

4.0
Compare

Man Industries

3.8
Compare

ESL Steel

4.0
Compare

Surya Roshni

4.1
Compare

Calculate your in-hand salary

Confused about how your in-hand salary is calculated? Enter your annual salary (CTC) and get your in-hand salary
Did you find this page helpful?
Yes No
write
Share an Interview