Upload Button Icon Add office photos

Filter interviews by

Shutdown Maintenance Services Interview Questions and Answers

Updated 28 Feb 2022

Shutdown Maintenance Services Interview Experiences

1 interview found

I applied via Recruitment Consulltant and was interviewed before Feb 2021. There was 1 interview round.

Round 1 - Technical 

(1 Question)

  • Q1. What is valve and its types What is coupling and it's types Pump and its types What is Backlash Gears and it's types What is least count and least count of vernier and micrometer and how to find it. Which ...
  • Ans. 

    Questions related to mechanical engineering concepts such as valves, couplings, pumps, gears, and measurement tools.

    • Valve is a device used to control the flow of fluids. Types include gate, globe, ball, and butterfly valves.

    • Coupling is a device used to connect two shafts together. Types include rigid, flexible, and fluid couplings.

    • Pump is a device used to move fluids. Types include centrifugal, positive displacement, a...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Be calm and answer those questions which u know and rest u don't know say don't know sir or forget it.

Mechanical Maintenance Engineer Interview Questions asked at other Companies

Q1. What is valve and its types What is coupling and it's types Pump and its types What is Backlash Gears and it's types What is least count and least count of vernier and micrometer and how to find it. Which type of pump is centrifugal. What i... read more
View answer (1)

Interview questions from similar companies

I applied via Naukri.com and was interviewed before May 2020. There were 4 interview rounds.

Interview Questionnaire 

2 Questions

  • Q1. SQL Joins
  • Q2. Swap 2 numbers without 3rd variable
  • Ans. 

    Swapping two numbers without using a third variable

    • Use arithmetic operations to swap the values

    • Add the two numbers and store the result in the first variable

    • Subtract the second number from the result and store it in the second variable

    • Subtract the second variable from the first variable to get the original value of the second variable

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - 1st Round : Long set of Aptitude questions
2nd Round : Technical Interview
3rd Round : Technical Interview and HR questions

Skills evaluated in this interview

I applied via Campus Placement and was interviewed before Nov 2020. There were 3 interview rounds.

Interview Questionnaire 

2 Questions

  • Q1. Your work ex
  • Q2. Mould it as you are presenting in the front of the client
  • Ans. 

    The question is asking how I would present myself in front of a client.

    • I would dress professionally and appropriately for the meeting

    • I would prepare a clear and concise presentation that addresses the client's needs and concerns

    • I would maintain eye contact and engage with the client throughout the meeting

    • I would listen actively to the client's feedback and respond appropriately

    • I would be respectful and courteous at all

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Be real and always be positive.
They wanted to see whether you can work on pressure or not

I applied via Naukri.com and was interviewed in Mar 2021. There were 4 interview rounds.

Interview Questionnaire 

1 Question

  • Q1. Question on basic JavaScript

Interview Preparation Tips

Interview preparation tips for other job seekers - On the basics of react and JavaScript

I applied via Company Website and was interviewed before Aug 2020. There was 1 interview round.

Interview Questionnaire 

1 Question

  • Q1. Basic: Tell me about yourself, movie story

Interview Preparation Tips

Interview preparation tips for other job seekers - Don't get into this shit
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

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

(3 Questions)

  • Q1. Linux commands,
  • Q2. Cloud technologies different services (iaas, paas, saas)
  • Ans. 

    Cloud technologies offer different services like IaaS, PaaS, and SaaS for varying levels of control and management.

    • IaaS (Infrastructure as a Service) provides virtualized computing resources over the internet, such as virtual servers and storage.

    • PaaS (Platform as a Service) offers a platform allowing customers to develop, run, and manage applications without dealing with infrastructure.

    • SaaS (Software as a Service) deli...

  • Answered by AI
  • Q3. What do you know AWS

Interview Preparation Tips

Interview preparation tips for other job seekers - Brush up OS basics and cloud technologies.

Skills evaluated in this interview

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

I applied via Company Website and was interviewed before Feb 2023. There were 3 interview rounds.

Round 1 - Coding Test 

Discussion about OOPS concepts and String related program

Round 2 - Coding Test 

Program on Recursion and Array

Round 3 - HR 

(2 Questions)

  • Q1. Strength and Weakness
  • Q2. Reason for joining with company
Interview experience
3
Average
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Recruitment Consulltant and was interviewed before Apr 2023. There were 3 interview rounds.

Round 1 - Coding Test 

There was coding test

Round 2 - Technical 

(2 Questions)

  • Q1. 2 technical rounds
  • Q2. Merge sort algorithm
  • Ans. 

    Merge sort is a divide and conquer algorithm that divides the input array into two halves, sorts them separately, and then merges them back together in sorted order.

    • Divide the input array into two halves

    • Recursively sort each half

    • Merge the sorted halves back together

  • Answered by AI
Round 3 - Behavioral 

(1 Question)

  • Q1. Leetcode Easy question

Skills evaluated in this interview

Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
-
Round 1 - One-on-one 

(1 Question)

  • Q1. C#,Mvc core,SQL server,vue js,
Round 2 - HR 

(1 Question)

  • Q1. Salary discussion
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(5 Questions)

  • Q1. What is closure
  • Ans. 

    A closure is a function that has access to its own scope, the scope in which it was defined, and the global scope.

    • A closure is created when a function is defined inside another function.

    • The inner function has access to the variables and parameters of the outer function, even after the outer function has finished executing.

    • Closures are useful for creating private variables and functions in JavaScript.

    • They can also be us...

  • Answered by AI
  • Q2. What is Encapsulation
  • Ans. 

    Encapsulation is the process of hiding internal details and providing a public interface for accessing and manipulating data.

    • Encapsulation bundles data and methods together into a single unit.

    • It helps in achieving data abstraction and data hiding.

    • By encapsulating data, we can control access to it and prevent unauthorized modifications.

    • Encapsulation promotes code reusability and maintainability.

    • Example: A class in objec...

  • Answered by AI
  • Q3. What is Inheritance
  • Ans. 

    Inheritance is a concept in object-oriented programming where a class inherits properties and behaviors from another class.

    • Inheritance allows for code reuse and promotes the concept of hierarchy.

    • The class that is being inherited from is called the superclass or base class.

    • The class that inherits from the superclass is called the subclass or derived class.

    • The subclass can access the public and protected members of the s...

  • Answered by AI
  • Q4. What is Abstraction
  • Ans. 

    Abstraction is the process of simplifying complex systems by focusing on essential details.

    • Abstraction involves hiding unnecessary details and exposing only relevant information.

    • It allows developers to create models or representations that capture the essential aspects of a system.

    • Abstraction helps in managing complexity, improving code reusability, and enhancing maintainability.

    • For example, in object-oriented programm...

  • Answered by AI
  • Q5. What is Polymorphism
  • Ans. 

    Polymorphism is the ability of an object to take on many forms. It allows objects of different classes to be treated as the same type.

    • Polymorphism is a fundamental concept in object-oriented programming.

    • It enables code reusability and flexibility.

    • Polymorphism can be achieved through method overriding and method overloading.

    • Example: A parent class Animal can have multiple child classes like Dog, Cat, and Bird. They can ...

  • Answered by AI

Skills evaluated in this interview

Shutdown Maintenance Services Interview FAQs

How many rounds are there in Shutdown Maintenance Services interview?
Shutdown Maintenance Services interview process usually has 1 rounds. The most common rounds in the Shutdown Maintenance Services interview process are Technical.

Tell us how to improve this page.

Interview Questions from Similar Companies

Kantar Interview Questions
3.5
 • 98 Interviews
Aptara Interview Questions
3.3
 • 62 Interviews
Pole To Win Interview Questions
3.4
 • 58 Interviews
Hathway Interview Questions
3.5
 • 42 Interviews
View all

Shutdown Maintenance Services Reviews and Ratings

based on 5 reviews

3.1/5

Rating in categories

3.6

Skill development

2.5

Work-life balance

3.1

Salary

3.7

Job security

3.3

Company culture

2.4

Promotions

3.5

Work satisfaction

Explore 5 Reviews and Ratings
Mechanical Technician
11 salaries
unlock blur

₹3.6 L/yr - ₹7.2 L/yr

Production Supervisor
4 salaries
unlock blur

₹5 L/yr - ₹6 L/yr

Technician
4 salaries
unlock blur

₹4.3 L/yr - ₹6.5 L/yr

Mechanical Maintenance Engineer
3 salaries
unlock blur

₹7 L/yr - ₹7 L/yr

Explore more salaries
Compare Shutdown Maintenance Services with

Emcure Pharmaceuticals

3.7
Compare

Kantar

3.5
Compare

Aptara

3.3
Compare

TNQ Tech Private Limited

3.6
Compare
Did you find this page helpful?
Yes No
write
Share an Interview