Upload Button Icon Add office photos

Sulzer

Compare button icon Compare button icon Compare

Filter interviews by

Sulzer Interview Questions and Answers

Updated 15 Jun 2025
Popular Designations

18 Interview questions

A Deputy Manager was asked 4w ago
Q. What are the fundamental principles of distillation column design, including the determination of the number of theoretical stages and reboiler design?
Ans. 

Distillation column design involves principles like stage calculation, reboiler design, and efficiency optimization.

  • Theoretical stages are calculated using the McCabe-Thiele method, which involves plotting equilibrium and operating lines.

  • The number of stages can also be determined using the Fenske equation for ideal systems, which provides a minimum stage count.

  • Reboiler design must consider heat transfer efficienc...

View all Deputy Manager interview questions
A Clerk and Store Keeper was asked 3mo ago
Q. What are the responsibilities of a storekeeper?
Ans. 

A store keeper manages inventory, ensures stock availability, and oversees the storage and distribution of goods.

  • Inventory Management: Keeping track of stock levels and ensuring timely replenishment. For example, using software to monitor inventory.

  • Receiving Goods: Inspecting and accepting deliveries, ensuring they match purchase orders. For instance, checking for damaged items upon arrival.

  • Storage Organization: A...

View all Clerk and Store Keeper interview questions
A Clerk and Store Keeper was asked 3mo ago
Q. As a storekeeper, how would you manage the store?
Ans. 

As a store keeper, I ensure efficient inventory management, maintain stock levels, and provide excellent customer service.

  • Organize inventory systematically to facilitate easy access and tracking.

  • Implement a stock management system to monitor inventory levels, such as using software like QuickBooks.

  • Conduct regular audits to ensure accuracy in stock counts and identify discrepancies.

  • Establish relationships with supp...

View all Clerk and Store Keeper interview questions
An Exchange Administrator was asked 3mo ago
Q. Explain mail flow.
Ans. 

Mail flow refers to the process of sending, receiving, and routing emails within an email system.

  • Mail flow starts when a user sends an email from their client application.

  • The email is sent to the SMTP server, which processes the message.

  • The SMTP server checks the recipient's domain and routes the email accordingly.

  • If the recipient is on the same server, the email is delivered directly; otherwise, it is forwarded t...

View all Exchange Administrator interview questions
A Senior Executive was asked 9mo ago
Q. Write a simple C# program to print a star pattern.
Ans. 

A simple program to print star pattern in C#

  • Use nested loops to print the desired pattern

  • Start with a small pattern and then expand it to more complex ones

  • Experiment with different loop structures to create various patterns

View all Senior Executive interview questions
A Senior Executive was asked 9mo ago
Q. What are boxing and unboxing in C#?
Ans. 

Boxing and unboxing in C# are processes for converting value types to reference types and vice versa.

  • Boxing: Converting a value type (e.g., int) to an object type.

  • Example: int num = 123; object obj = num; // Boxing

  • Unboxing: Converting an object type back to a value type.

  • Example: int num2 = (int)obj; // Unboxing

  • Boxing involves memory allocation on the heap, while unboxing retrieves the value from the heap.

View all Senior Executive interview questions
An Assistant Manager was asked 12mo ago
Q. Tell me about your communication skills.
Ans. 

I possess strong communication skills, enabling effective collaboration and clear information exchange in diverse environments.

  • Active Listening: I prioritize understanding others by fully engaging in conversations, which helps in addressing concerns effectively.

  • Clear Articulation: I ensure my messages are concise and clear, as demonstrated when I led team meetings to discuss project updates.

  • Adaptability: I adjust ...

View all Assistant Manager interview questions
Are these interview questions helpful?
A Safety Supervisor was asked
Q. What is a confined space?
Ans. 

A confined space is an area that is not designed for continuous occupancy, has limited entry and exit points, and may have hazardous conditions.

  • Confined spaces have limited entry and exit points, making it difficult to escape in case of emergency

  • These spaces are not designed for continuous occupancy, such as tanks, silos, tunnels, and sewers

  • Confined spaces may contain hazardous conditions like lack of oxygen, toxi...

View all Safety Supervisor interview questions
A Safety Supervisor was asked
Q. What is a permit to work system?
Ans. 

A permit to work system is a formal written system used to control high-risk work activities.

  • Ensures that all necessary precautions are taken before work begins

  • Specifies the work to be done, the hazards involved, and the precautions to be taken

  • Requires authorization from a competent person before work can commence

View all Safety Supervisor interview questions
An Associate Manager was asked
Q. Why are you requesting more than a 35% salary increase?
Ans. 

I'm seeking a 35% hike due to my skills, market standards, and the value I bring to your organization.

  • My current salary does not reflect my experience and skills in the industry.

  • Research shows that the market rate for my role is significantly higher.

  • I have successfully led projects that increased revenue by 20%, demonstrating my value.

  • I am bringing unique skills that align with your company's goals, justifying the...

View all Associate Manager interview questions

Sulzer Interview Experiences

32 interviews found

Interview experience
3
Average
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Naukri.com and was interviewed in Apr 2024. There were 2 interview rounds.

Round 1 - Technical 

(8 Questions)

  • Q1. Boxing and unboxing in. C#
  • Ans. 

    Boxing and unboxing in C# are processes for converting value types to reference types and vice versa.

    • Boxing: Converting a value type (e.g., int) to an object type.

    • Example: int num = 123; object obj = num; // Boxing

    • Unboxing: Converting an object type back to a value type.

    • Example: int num2 = (int)obj; // Unboxing

    • Boxing involves memory allocation on the heap, while unboxing retrieves the value from the heap.

  • Answered by AI
  • Q2. .net framework and .net core
  • Q3. Simple program to print star pattern in c#
  • Ans. 

    A simple program to print star pattern in C#

    • Use nested loops to print the desired pattern

    • Start with a small pattern and then expand it to more complex ones

    • Experiment with different loop structures to create various patterns

  • Answered by AI
  • Q4. String and string builder Mutable and immutable Heap and stack memory which is used when
  • Q5. Difference in stored procedure and functions ACiD properties, normalization
  • Ans. 

    Stored procedures and functions differ in their usage and capabilities. ACID properties ensure data integrity, normalization reduces redundancy.

    • Stored procedures are precompiled SQL queries that can perform multiple operations, while functions are reusable code blocks that return a single value.

    • Stored procedures can have input and output parameters, while functions can only return a single value.

    • ACID properties (Atomic...

  • Answered by AI
  • Q6. What are solid principles explain with example and also tell where you used them in previous project
  • Ans. 

    Solid principles are a set of design principles for writing maintainable and scalable code.

    • Single Responsibility Principle: A class should have only one reason to change. For example, a class that handles user authentication should not also be responsible for sending emails.

    • Open/Closed Principle: Software entities should be open for extension but closed for modification. For example, using interfaces to allow for new i...

  • Answered by AI
  • Q7. OOP related questions What are 4 pillars of OOP? Difference between encapsulation and abstraction. Difference in overloading and overriding.
  • Q8. Questions on Interitance Given 3 classes A is parent of B and B is parent of C How do we call methods of B and A from C Which method will be called incase of same method in A B and C And some more I don'...
Round 2 - HR 

(2 Questions)

  • Q1. Questions on salary expectations
  • Q2. And informal discussion about work and team

Skills evaluated in this interview

Supervisor Interview Questions & Answers

user image Anonymous

posted on 11 Jun 2024

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

I applied via Company Website and was interviewed in May 2024. There was 1 interview round.

Round 1 - One-on-one 

(2 Questions)

  • Q1. Tell me about our my self
  • Q2. Tell me about previous company experience
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Referral and was interviewed in Oct 2023. There were 2 interview rounds.

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 - Technical 

(4 Questions)

  • Q1. WHAT IS CONFINED SPACE।
  • Ans. 

    A confined space is an area that is not designed for continuous occupancy, has limited entry and exit points, and may have hazardous conditions.

    • Confined spaces have limited entry and exit points, making it difficult to escape in case of emergency

    • These spaces are not designed for continuous occupancy, such as tanks, silos, tunnels, and sewers

    • Confined spaces may contain hazardous conditions like lack of oxygen, toxic gas...

  • Answered by AI
  • Q2. A confined space is a space with limited entry and egress and not suitable for human inhabitants. An example is the interior of a storage tank, occasionally entered by maintenance workers but not intended ...
  • Q3. What is a permit to work system?
  • Ans. 

    A permit to work system is a formal written system used to control high-risk work activities.

    • Ensures that all necessary precautions are taken before work begins

    • Specifies the work to be done, the hazards involved, and the precautions to be taken

    • Requires authorization from a competent person before work can commence

  • Answered by AI
  • Q4. Permit to Work is a documented management system that includes specific processes to request, record, review, and authorise tasks to be carried out by designated employees. An important component of Permit...

Interview Preparation Tips

Interview preparation tips for other job seekers - Be prepared for personal questions. ...
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Other 

(2 Questions)

  • Q1. Instruments related
  • Q2. List count of vernier
  • Ans. 

    The count of vernier refers to the number of vernier scales present in a measurement tool.

    • Vernier calipers typically have one vernier scale for measuring length.

    • Micrometers may have multiple vernier scales for different units of measurement.

    • Counting the number of vernier scales can help determine the precision of the measurement tool.

  • Answered by AI
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - One-on-one 

(2 Questions)

  • Q1. Personal details
  • Q2. Challenges of work

Interview Preparation Tips

Interview preparation tips for other job seekers - be genuine and
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(1 Question)

  • Q1. Basics of SOM and engineering
Round 2 - Technical 

(1 Question)

  • Q1. Stress Strain curve
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Approached by Company and was interviewed before Jul 2023. There were 3 interview rounds.

Round 1 - Aptitude Test 

Basic of General aptitude

Round 2 - Technical 

(2 Questions)

  • Q1. Questions on education background
  • Q2. Engineering subjects questions like formula, calculation, units, drawing reading
Round 3 - HR 

(2 Questions)

  • Q1. Why should we hire you
  • Ans. 

    I bring a unique blend of skills, enthusiasm, and a strong commitment to learning that aligns perfectly with your team's goals.

    • Strong academic background in relevant field, demonstrated through my coursework and projects.

    • Proven ability to work collaboratively in team settings, as shown in my group projects during my studies.

    • Eager to learn and adapt quickly, evidenced by my internships where I successfully took on new c...

  • Answered by AI
  • Q2. Are you working in shift
  • Ans. 

    Yes, I am willing to work in shifts as I understand the importance of flexibility in meeting organizational needs.

    • I have experience working in environments that require shift work, such as retail or hospitality.

    • I understand that shift work can help ensure continuous operations and better service delivery.

    • I am adaptable and can adjust my schedule to meet the demands of the role.

    • Working in shifts can also provide opportu...

  • Answered by AI
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
No response

I applied via Approached by Company and was interviewed in Oct 2023. There were 3 interview rounds.

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 - Group Discussion 

Procurement head profile discussion

Round 3 - One-on-one 

(1 Question)

  • Q1. Leadership qualities discussion with team

Interview Questions & Answers

user image Anonymous

posted on 2 Sep 2023

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

I applied via Naukri.com and was interviewed in Mar 2023. There were 2 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 - One-on-one 

(4 Questions)

  • Q1. Basic engineing
  • Q2. Gd&t related question
  • Q3. Education family background, looking for long term employee
  • Q4. Slary requirement,

Interview Preparation Tips

Interview preparation tips for other job seekers - Good to work learn
Interview experience
3
Average
Difficulty level
Moderate
Process Duration
4-6 weeks
Result
Selected Selected

I applied via Referral and was interviewed in Nov 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 - Technical 

(2 Questions)

  • Q1. Knowledge of project management
  • Q2. Knowledge of pumps
Round 3 - Technical 

(1 Question)

  • Q1. Situations based questions
Round 4 - HR 

(1 Question)

  • Q1. Salary negotiation

Interview Preparation Tips

Interview preparation tips for other job seekers - Basics of engg and project management

Top trending discussions

View All
Interview Tips & Stories
5d (edited)
a team lead
Why are women still asked such personal questions in interview?
I recently went for an interview… and honestly, m still trying to process what just happened. Instead of being asked about my skills, experience, or how I could add value to the company… the questions took a totally unexpected turn. The interviewer started asking things like When are you getting married? Are you engaged? And m sure, if I had said I was married, the next question would’ve been How long have you been married? What does my personal life have to do with the job m applying for? This is where I felt the gender discrimination hit hard. These types of questions are so casually thrown at women during interviews but are they ever asked to men? No one asks male candidates if they’re planning a wedding or how old their kids are. So why is it okay to ask women? Can we please stop normalising this kind of behaviour in interviews? Our careers shouldn’t be judged by our relationship status. Period.
Got a question about Sulzer?
Ask anonymously on communities.

Sulzer Interview FAQs

How many rounds are there in Sulzer interview?
Sulzer interview process usually has 2-3 rounds. The most common rounds in the Sulzer interview process are Technical, Resume Shortlist and HR.
How to prepare for Sulzer 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 Sulzer. The most common topics and skills that interviewers at Sulzer expect are Sales, Salesforce, Process Engineering, Rotating Equipments and Application Engineering.
What are the top questions asked in Sulzer interview?

Some of the top questions asked at the Sulzer interview -

  1. What are the fundamental principles of distillation column design, including th...read more
  2. In which model test, simple solidworks sheet metal model will given to you And...read more
  3. Difference in stored procedure and functions ACiD properties, normalizat...read more
How long is the Sulzer interview process?

The duration of Sulzer interview process can vary, but typically it takes about less than 2 weeks to complete.

Tell us how to improve this page.

Overall Interview Experience Rating

4.4/5

based on 25 interview experiences

Difficulty level

Easy 12%
Moderate 88%

Duration

Less than 2 weeks 53%
2-4 weeks 35%
4-6 weeks 6%
More than 8 weeks 6%
View more

Interview Questions from Similar Companies

Cummins Interview Questions
4.3
 • 252 Interviews
ABB Interview Questions
4.1
 • 249 Interviews
John Deere Interview Questions
4.1
 • 244 Interviews
TÜV SÜD Interview Questions
3.9
 • 74 Interviews
Timken Interview Questions
3.9
 • 50 Interviews
ZEISS India Interview Questions
3.6
 • 32 Interviews
Alfa Laval Interview Questions
3.9
 • 31 Interviews
View all

Sulzer Reviews and Ratings

based on 487 reviews

3.8/5

Rating in categories

3.6

Skill development

3.6

Work-life balance

3.8

Salary

3.6

Job security

3.5

Company culture

3.3

Promotions

3.5

Work satisfaction

Explore 487 Reviews and Ratings
Advance Engineer Retrofits

Navi Mumbai

3-8 Yrs

Not Disclosed

Explore more jobs
Associate Manager
112 salaries
unlock blur

₹13 L/yr - ₹23 L/yr

Design Engineer
107 salaries
unlock blur

₹3 L/yr - ₹7.1 L/yr

Assistant Manager
90 salaries
unlock blur

₹10.2 L/yr - ₹18 L/yr

Project Manager
49 salaries
unlock blur

₹5.5 L/yr - ₹15.3 L/yr

Junior Manager
46 salaries
unlock blur

₹9 L/yr - ₹16 L/yr

Explore more salaries
Compare Sulzer with

John Deere

4.0
Compare

Cummins

4.3
Compare

ABB

4.1
Compare

CNH ( Case New Holland)

3.8
Compare
write
Share an Interview