Premium Employer

i

This company page is being actively managed by ABB Team. If you also belong to the team, you can get access from here

ABB Verified Tick

Compare button icon Compare button icon Compare

Filter interviews by

ABB Continuous Improvement Specialist Interview Questions and Answers

Updated 12 May 2023

ABB Continuous Improvement Specialist Interview Experiences

1 interview found

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

I applied via Recruitment Consulltant and was interviewed before May 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. What is ohm's low?
  • Ans. 

    Ohm's law states that the current through a conductor between two points is directly proportional to the voltage across the two points.

    • Ohm's law is a fundamental principle in electrical engineering and physics.

    • It states that the current flowing through a conductor is directly proportional to the voltage applied across it.

    • The proportionality constant is known as the resistance of the conductor.

    • Ohm's law can be expressed...

  • Answered by AI
  • Q2. What is current low?
  • Ans. 

    Current low refers to the lowest point of a particular metric or KPI at the present moment.

    • Current low is a measure of the worst performance of a process or system at the present time.

    • It helps identify areas that need improvement and can be used as a benchmark for future performance.

    • For example, if the current low for customer satisfaction is 60%, it means that the lowest level of satisfaction among customers is 60%.

    • Co...

  • Answered by AI
  • Q3. What is the difference between AC & DC current
  • Ans. 

    AC current changes direction periodically while DC current flows in one direction only.

    • AC current is used in household appliances and power grids while DC current is used in batteries and electronic devices.

    • AC current can be easily transformed into different voltage levels using transformers while DC current cannot.

    • AC current is measured in RMS (root mean square) while DC current is measured in average value.

    • AC current...

  • Answered by AI

Interview questions from similar companies

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

I applied via Naukri.com and was interviewed before Sep 2022. 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 

(1 Question)

  • Q1. Asp.net, C#, Coding questions
Round 3 - HR 

(1 Question)

  • Q1. Salary discussion

Interview Preparation Tips

Interview preparation tips for other job seekers - NA
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Company Website and was interviewed before May 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 - Coding Test 

Create applications related to ekart applications applying design pattern and OOPS concept

Round 3 - One-on-one 

(2 Questions)

  • Q1. Puzzles and C# Eelated questions
  • Q2. What is new in C# 10
  • Ans. 

    C# 10 introduces new features like file-scoped namespaces, global using directives, and interpolated string handlers.

    • File-scoped namespaces allow defining namespaces at the file level instead of wrapping everything in a namespace block.

    • Global using directives simplify the process of importing namespaces across the entire project.

    • Interpolated string handlers provide a way to customize how interpolated strings are proces

  • Answered by AI
Round 4 - HR 

(1 Question)

  • Q1. Just salary discussion

Skills evaluated in this interview

Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - One-on-one 

(1 Question)

  • Q1. Explain oops concept
  • Ans. 

    OOPs (Object-Oriented Programming) is a programming paradigm based on the concept of objects, which can contain data and code.

    • OOPs focuses on creating objects that interact with each other to solve a problem

    • Key principles include Inheritance, Encapsulation, Polymorphism, and Abstraction

    • Inheritance allows a class to inherit properties and behavior from another class

    • Encapsulation hides the internal state of an object and...

  • Answered by AI
Interview experience
1
Bad
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(1 Question)

  • Q1. General overview of tech stack.
Round 2 - Technical 

(1 Question)

  • Q1. General overview of the tech stack
Round 3 - HR 

(1 Question)

  • Q1. General overview of the tech stack

Interview Questionnaire 

1 Question

  • Q1. C++ Basic , malloc, calloc

I applied via Naukri.com

Round 1 - Technical 

(2 Questions)

  • Q1. What is oops concepts
  • Ans. 

    OOPs concepts are the principles of Object-Oriented Programming that help in designing and implementing software systems.

    • Encapsulation - bundling of data and methods that operate on that data

    • Inheritance - ability of a class to inherit properties and methods from its parent class

    • Polymorphism - ability of objects to take on multiple forms or behaviors

    • Abstraction - hiding of complex implementation details and showing only...

  • Answered by AI
  • Q2. Encapsulation , Inheritance , Polymorphism ,

Interview Preparation Tips

Interview preparation tips for other job seekers - Core java , Multithreading , Collections , Generics

I was interviewed before Mar 2021.

Round 1 - Coding Test 

(2 Questions)

Round duration - 120 Minutes
Round difficulty - Medium

This was an online MCQ + coding round where we had 1 hour to solve the MCQ's and another 1 hour to solve 2 coding
questions. The MCQ's were related to both General and Technical Aptitude.

  • Q1. 

    Path Sum Calculation

    You are provided with the root node of a binary tree containing 'N' nodes and an integer value 'TARGET'. Your task is to determine the number of leaf nodes for which the sum of the no...

  • Ans. 

    Calculate the number of leaf nodes in a binary tree with a path sum equal to a given target.

    • Traverse the binary tree from root to leaf nodes while keeping track of the sum along the path.

    • Recursively check if the current node is a leaf node and if the sum equals the target.

    • Increment a counter if the conditions are met and return the counter as the result.

  • Answered by AI
  • Q2. 

    Check If Numbers Are Coprime

    Determine if two given numbers 'a' and 'b' are coprime, meaning they have no common divisors other than 1.

    Input:

    t
    a_1 b_1
    a_2 b_2
    ...
    a_t b_t

    Output:

    true / false
    ...

    Exampl...

  • Ans. 

    Check if two numbers are coprime by finding their greatest common divisor (GCD) and determining if it is 1.

    • Calculate the GCD of the two numbers using Euclidean algorithm.

    • If GCD is 1, the numbers are coprime; otherwise, they are not.

    • Iterate through all pairs of numbers provided in the input.

    • Return true if GCD is 1, false otherwise.

  • Answered by AI
Round 2 - Video Call 

(2 Questions)

Round duration - 50 Minutes
Round difficulty - Medium

This was a standard DSA round where I was given 2 coding questions - the first one was related to DP and the second one was of Linked List. I first explained my approach and then coded the solutions in a production ready manner by applying proper coding principles.

  • Q1. 

    Maximum Length Pair Chain Problem Statement

    You are provided with 'N' pairs of integers such that in any given pair (a, b), the first number is always smaller than the second number, i.e., a < b. A pai...

  • Ans. 

    Find the length of the longest pair chain that can be formed using given pairs.

    • Sort the pairs based on the second element in increasing order.

    • Iterate through the sorted pairs and keep track of the maximum chain length.

    • Update the chain length if the current pair can be added to the chain.

    • Return the maximum chain length at the end.

  • Answered by AI
  • Q2. 

    Palindrome Linked List Problem Statement

    You are provided with a singly linked list of integers. Your task is to determine whether the given singly linked list is a palindrome. Return true if it is a pali...

  • Ans. 

    Check if a given singly linked list is a palindrome or not.

    • Use two pointers approach to find the middle of the linked list.

    • Reverse the second half of the linked list.

    • Compare the first half with the reversed second half to determine if it's a palindrome.

  • Answered by AI
Round 3 - Video Call 

(5 Questions)

Round duration - 60 Minutes
Round difficulty - Medium

This round started with 2 preety decent coding questions - one from DP and the other one was from Binary Search. This was followed by some questions from OOPS and then the interview ended with the interviewer asking me the famous 3-Ants and the Triangle Puzzle.

  • Q1. 

    Subset Sum Equal To K Problem Statement

    Given an array/list of positive integers and an integer K, determine if there exists a subset whose sum equals K.

    Provide true if such a subset exists, otherwise r...

  • Ans. 

    Given an array of positive integers and an integer K, determine if there exists a subset whose sum equals K.

    • Use dynamic programming to solve this problem efficiently

    • Create a 2D array to store if a subset sum is possible for each element and each sum value

    • Iterate through the array and update the 2D array accordingly

    • Check if the value at the last element and K is true to determine if a subset sum equals K

  • Answered by AI
  • Q2. 

    Search In Rotated Sorted Array Problem Statement

    Given a rotated sorted array ARR of size 'N' and an integer 'K', determine the index at which 'K' is present in the array.

    Note:
    1. If 'K' is not present...
  • Ans. 

    Given a rotated sorted array, find the index of a given integer 'K'.

    • Use binary search to find the pivot point where the array is rotated.

    • Based on the pivot point, perform binary search on the appropriate half of the array to find 'K'.

    • Handle cases where 'K' is not present in the array by returning -1.

  • Answered by AI
  • Q3. What is meant by static and dynamic polymorphism?
  • Ans. 

    Static polymorphism is resolved at compile time, while dynamic polymorphism is resolved at runtime.

    • Static polymorphism is achieved through function overloading and operator overloading.

    • Dynamic polymorphism is achieved through virtual functions and function overriding.

    • Example of static polymorphism: function overloading in C++.

    • Example of dynamic polymorphism: virtual functions in C++.

  • Answered by AI
  • Q4. What is abstraction in Object-Oriented Programming?
  • Ans. 

    Abstraction in OOP is the concept of hiding complex implementation details and showing only the necessary features to the outside world.

    • Abstraction allows us to focus on what an object does rather than how it does it.

    • It helps in reducing complexity and improving maintainability of code.

    • Example: In a car, we don't need to know the internal working of the engine to drive it. We just need to know how to operate the pedals

  • Answered by AI
  • Q5. You have 3 ants located at the corners of a triangle. The challenge is to determine the movement pattern of the ants if they all start moving towards each other. What will be the outcome?
Round 4 - HR 

(2 Questions)

Round duration - 30 Minutes
Round difficulty - Easy

This was a Technical Cum HR round where I was first asked some basic OOPS related concepts and then we discussed
about my expectations from the company , learnings and growth in the forthcomig years. I would suggest be honest and
try to communicate your thoughts properly in these type of rounds to maximise your chances of getting selected.

  • Q1. What do you know about the company?
  • Q2. Why should we hire you?

Interview Preparation Tips

Eligibility criteriaAbove 7 CGPASiemens interview preparation:Topics to prepare for the interview - Data Structures, Algorithms, System Design, Aptitude, OOPSTime required to prepare for the interview - 4 MonthsInterview preparation tips for other job seekers

Tip 1 : Must do Previously asked Interview as well as Online Test Questions.
Tip 2 : Go through all the previous interview experiences from Codestudio and Leetcode.
Tip 3 : Do at-least 2 good projects and you must know every bit of them.

Application resume tips for other job seekers

Tip 1 : Have at-least 2 good projects explained in short with all important points covered.
Tip 2 : Every skill must be mentioned.
Tip 3 : Focus on skills, projects and experiences more.

Final outcome of the interviewSelected

Skills evaluated in this interview

I was interviewed in Jun 2021.

Round 1 - Coding Test 

(2 Questions)

Round duration - 120 Minutes
Round difficulty - Medium

This was an online MCQ + coding round where we had 1 hour to solve the MCQ's and another 1 hour to solve 2 coding
questions. The MCQ's were related to both General and Technical Aptitude.

  • Q1. 

    Count Inversions Problem Statement

    Given an integer array ARR of size N, your task is to find the total number of inversions that exist in the array.

    An inversion is defined for a pair of integers in the...

  • Ans. 

    Count the total number of inversions in an integer array.

    • Iterate through the array and for each pair of indices i and j, check if ARR[i] > ARR[j] and i < j.

    • Use a nested loop to compare all pairs of elements in the array.

    • Keep a count of the inversions found and return the total count at the end.

  • Answered by AI
  • Q2. 

    Maximum Subarray Sum Problem Statement

    Given an array arr of length N consisting of integers, find the sum of the subarray (including empty subarray) with the maximum sum among all subarrays.

    Explanation...

  • Ans. 

    Find the sum of the subarray with the maximum sum among all subarrays in an array of integers.

    • Iterate through the array and keep track of the current sum and maximum sum.

    • If the current sum becomes negative, reset it to 0.

    • Return the maximum sum found.

  • Answered by AI
Round 2 - Video Call 

(3 Questions)

Round duration - 50 Minutes
Round difficulty - Easy

This round had fairly easy coding questions compared to all the rounds and the interviewer was also quite friendly. The interview started with me giving my introduction and then the interview asked me some more questions related to my academics and projects and then finally he switched to the coding questions.

  • Q1. 

    Matrix Transpose Problem Statement

    Given a matrix MAT, your task is to return the transpose of the matrix. The transpose of a matrix is obtained by converting rows into columns and vice versa. Specificall...

  • Ans. 

    Return the transpose of a given matrix by switching rows into columns and vice versa.

    • Iterate through the matrix and swap elements at indices (i, j) and (j, i) to obtain the transpose.

    • Ensure the dimensions of the transposed matrix are reversed from the original matrix.

    • Handle edge cases like empty matrix or single row/column matrix.

  • Answered by AI
  • Q2. 

    Middle of a Linked List

    You are given the head node of a singly linked list. Your task is to return a pointer pointing to the middle of the linked list.

    If there is an odd number of elements, return the ...

  • Ans. 

    Return the middle element of a singly linked list, or the one farther from the head if there are even elements.

    • Traverse the linked list with two pointers, one moving twice as fast as the other

    • When the fast pointer reaches the end, the slow pointer will be at the middle

    • If there are even elements, return the one that is farther from the head node

    • Handle edge cases like linked list of size 1 or no midpoint existing

  • Answered by AI
  • Q3. 

    Remove Character from String Problem Statement

    Given a string str and a character 'X', develop a function to eliminate all instances of 'X' from str and return the resulting string.

    Input:

    The first lin...
  • Ans. 

    Develop a function to remove all instances of a given character from a string.

    • Iterate through the string character by character and exclude the specified character while constructing the new string.

    • Use a StringBuilder or similar data structure for efficient string manipulation.

    • Handle edge cases such as empty string or character not found in the input string.

    • Ensure the function runs in O(N) time complexity where N is th

  • Answered by AI
Round 3 - Video Call 

(2 Questions)

Round duration - 60 Minutes
Round difficulty - Medium

This round had 2 decent coding questions , the first one was related to Dynamic Programming and the second one was of Sorting. I explained the approaches of both the questions with appropriate complexity analysis and then coded them in a production ready manner. This was followed by the interviewer asking me an interesting puzzle to check my overall aptitude.
So, be prepared for puzzles as well while preparing for interviews.

  • Q1. 

    Subset Sum Equal To K Problem Statement

    Given an array/list of positive integers and an integer K, determine if there exists a subset whose sum equals K.

    Provide true if such a subset exists, otherwise r...

  • Ans. 

    Given an array of positive integers and an integer K, determine if there exists a subset whose sum equals K.

    • Use dynamic programming to solve this problem efficiently.

    • Create a 2D array to store if a subset sum is possible for each element and each sum up to K.

    • Initialize the first row and column of the 2D array accordingly.

    • Iterate through the array and update the 2D array based on the current element and sum.

    • Check if the...

  • Answered by AI
  • Q2. 

    Overlapping Intervals Problem Statement

    You are given the start and end times of 'N' intervals. Write a function to determine if any two intervals overlap.

    Note:

    If an interval ends at time T and anothe...

  • Ans. 

    Given start and end times of intervals, determine if any two intervals overlap.

    • Iterate through intervals and check if any two intervals overlap by comparing their start and end times

    • Sort intervals based on start times for efficient comparison

    • Consider edge cases where intervals end and start at the same time

  • Answered by AI

Interview Preparation Tips

Eligibility criteriaAbove 7 CGPASiemens interview preparation:Topics to prepare for the interview - Data Structures, Algorithms, System Design, Aptitude, OOPSTime required to prepare for the interview - 4 MonthsInterview preparation tips for other job seekers

Tip 1 : Must do Previously asked Interview as well as Online Test Questions.
Tip 2 : Go through all the previous interview experiences from Codestudio and Leetcode.
Tip 3 : Do at-least 2 good projects and you must know every bit of them.

Application resume tips for other job seekers

Tip 1 : Have at-least 2 good projects explained in short with all important points covered.
Tip 2 : Every skill must be mentioned.
Tip 3 : Focus on skills, projects and experiences more.

Final outcome of the interviewSelected

Skills evaluated in this interview

Interview experience
3
Average
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
Selected Selected

I applied via Company Website and was interviewed before Sep 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 

The normal way of aptitude tests is like all the other companies. Some questions were a bit challenging also, but if you do the basics right then that's enough

Round 3 - Coding Test 

Basics Basics Basics, everything is concerned with basics, they don't expect you to solve quantum mechanic equations. Just struggle a bit in DSA and clear some logical reasoning and some general knowledge is perfect!

Round 4 - HR 

(5 Questions)

  • Q1. This round is for getting you onboard, you get offered a package and need to complete some formalities that's it.
  • Q2. Where do you see yourself in the next 3 - 5 years?
  • Q3. What do you want to become in the coming future?
  • Q4. What are your hobbies?
  • Q5. What made you join siemens?

Interview Preparation Tips

Interview preparation tips for other job seekers - Just prepare best, create your resume top-notch, add only what you know best, and add relevant details only, if your resume gets selected then kaboom, you are in. now you are only expected to know best what is written in your resume and nothing extra-ordinary. Good Luck!

ABB Interview FAQs

How many rounds are there in ABB Continuous Improvement Specialist interview?
ABB interview process usually has 2 rounds. The most common rounds in the ABB interview process are Resume Shortlist and Technical.
How to prepare for ABB Continuous Improvement Specialist 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 ABB. The most common topics and skills that interviewers at ABB expect are Black Belt, Financial Operations, Lean, Order to Cash and Process Excellence.
What are the top questions asked in ABB Continuous Improvement Specialist interview?

Some of the top questions asked at the ABB Continuous Improvement Specialist interview -

  1. What is the difference between AC & DC curr...read more
  2. What is current l...read more
  3. What is ohm's l...read more

Tell us how to improve this page.

ABB Continuous Improvement Specialist Interview Process

based on 1 interview

Interview experience

4
  
Good
View more
Join ABB Helping industries outrun with our leading technologies

Interview Questions from Similar Companies

Siemens Interview Questions
4.1
 • 418 Interviews
Thermax Limited Interview Questions
4.1
 • 251 Interviews
Tata Power Interview Questions
3.9
 • 161 Interviews
BHEL Interview Questions
4.1
 • 113 Interviews
GE Interview Questions
4.2
 • 102 Interviews
Atlas Copco Interview Questions
4.2
 • 78 Interviews
View all
ABB Continuous Improvement Specialist Salary
based on 5 salaries
₹11.5 L/yr - ₹22.4 L/yr
42% more than the average Continuous Improvement Specialist Salary in India
View more details

ABB Continuous Improvement Specialist Reviews and Ratings

based on 3 reviews

5.0/5

Rating in categories

5.0

Skill development

5.0

Work-life balance

4.1

Salary

4.5

Job security

4.5

Company culture

3.7

Promotions

4.5

Work satisfaction

Explore 3 Reviews and Ratings
Project Engineer
584 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

R&D Engineer
324 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Financial Analyst
256 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Design Engineer
241 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Finance Specialist
196 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Explore more salaries
Compare ABB with

Siemens

4.1
Compare

Schneider Electric

4.1
Compare

Emerson Electric Co.

4.1
Compare

Honeywell International India

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