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

Clear (1)

ABB R&D Design Engineer Interview Questions, Process, and Tips

Updated 25 May 2024

ABB R&D Design Engineer Interview Experiences

1 interview found

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

I applied via Referral and was interviewed before May 2023. There was 1 interview round.

Round 1 - Technical 

(5 Questions)

  • Q1. Tell me about your self?
  • Q2. Which simulation software do you have used?
  • Ans. 

    I have experience using simulation software such as ANSYS, SolidWorks Simulation, and COMSOL Multiphysics.

    • Experience with ANSYS for structural analysis

    • Proficient in SolidWorks Simulation for mechanical design validation

    • Familiarity with COMSOL Multiphysics for multiphysics simulations

  • Answered by AI
  • Q3. Different type of coating?
  • Ans. 

    Different types of coatings include anti-corrosion coatings, thermal barrier coatings, and decorative coatings.

    • Anti-corrosion coatings protect metal surfaces from corrosion and rusting.

    • Thermal barrier coatings are used to reduce heat transfer and improve energy efficiency.

    • Decorative coatings are applied for aesthetic purposes, such as painting a car or furniture.

  • Answered by AI
  • Q4. Material of spring steel?
  • Ans. 

    Spring steel is a type of high carbon steel used for making springs due to its high yield strength and resilience.

    • Spring steel is typically made from high carbon steel with a carbon content between 0.6-1.0%

    • It is known for its high yield strength and resilience, allowing it to return to its original shape after being bent or compressed

    • Common examples of spring steel grades include AISI 1070, AISI 1095, and AISI 6150

  • Answered by AI
  • Q5. Difference between tempering & annealing?
  • Ans. 

    Tempering is a heat treatment process to increase toughness and reduce brittleness, while annealing is a heat treatment process to soften material and improve ductility.

    • Tempering involves heating the material to a specific temperature and then cooling it quickly, while annealing involves heating the material to a specific temperature and then cooling it slowly.

    • Tempering is used to reduce internal stresses and improve t...

  • Answered by AI

Interview questions from similar companies

I applied via Naukri.com and was interviewed in Aug 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 Resume tips
Round 2 - Technical 

(1 Question)

  • Q1. Mos selection, failure etc

Interview Preparation Tips

Interview preparation tips for other job seekers - any one should be confident during interview, if you know then reply confidently if otherwise denied respectly and study related subject.

Interview Questionnaire 

1 Question

  • Q1. About Yourself

Interview Preparation Tips

Round: Test
Experience: Test level was medium, as i also sat for mahindra, i found L&T test was harder than mahindra!
Tips: Just study RS agarwal

Round: Group Discussion
Experience: It was easy for me, coz i was aware about tips of GD
Tips: Be the leader, if possibleTalk in between, even if u dont know topic much
Duration: 20 minutes

Round: Interview
Experience: This question was damn easy for me, coz i can talk more based on my activities & resume
Tips: Dont hesitate, stay calm & describe yourself, but not family background

General Tips: Be yourself, no technical knowledge is required(depends on panel u get)
Skill Tips: ""
College Name: IIT Roorkee
Motivation: To get placed!

I applied via Company Website and was interviewed in Aug 2020. There were 3 interview rounds.

Interview Questionnaire 

2 Questions

  • Q1. Nodejs basics,AWS S3,script file run command,how to catch db timeout
  • Q2. Connect db options,
  • Ans. 

    Connecting to a database has multiple options depending on the type of database and programming language used.

    • For SQL databases, options include using JDBC for Java, ODBC for C++, and ADO.NET for C#.

    • For NoSQL databases, options include using MongoDB's driver for Python or Node.js.

    • ORMs like Hibernate and Entity Framework can also be used to abstract away the database connection details.

    • Connection strings are used to spe...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Db connection attributes need to prepare well

I applied via Referral and was interviewed in Mar 2021. There was 1 interview round.

Interview Questionnaire 

1 Question

  • Q1. Do you know anything about cloud computing?
  • Ans. 

    Yes, cloud computing refers to the delivery of computing services over the internet.

    • Cloud computing allows users to access data and applications from anywhere with an internet connection.

    • It offers scalability, flexibility, and cost-effectiveness compared to traditional on-premises computing.

    • Examples of cloud computing services include Amazon Web Services, Microsoft Azure, and Google Cloud Platform.

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Very chill interview on the basis of profile.
Learn about new technology like cloud etc.

Skills evaluated in this interview

Interview Questionnaire 

1 Question

  • Q1. Basic OOPs concepts

Interview Preparation Tips

Interview preparation tips for other job seekers - Be strong in basics.

I applied via Recruitment Consultant and was interviewed in Nov 2019. There were 5 interview rounds.

Interview Questionnaire 

4 Questions

  • Q1. Basic C++, and Data structure focus on pointers and virtual function, vptr, vtable
  • Q2. Prepare about ur current project and process followed for entire development process thoroughly
  • Q3. Prepare common tools like. Linux, git, gdb
  • Q4. Prepare basics of data structures, OOPS, design patterns used

Interview Preparation Tips

Interview preparation tips for other job seekers - Keep a steady approach, focus more and more on basics and working principle of concepts

I applied via Naukri.com and was interviewed before Jun 2019. There were 3 interview rounds.

Interview Questionnaire 

4 Questions

  • Q1. Implement stack data structure
  • Ans. 

    Implement stack data structure

    • Use an array or linked list to store elements

    • Push operation adds element to top of stack

    • Pop operation removes element from top of stack

    • Peek operation returns top element without removing it

  • Answered by AI
  • Q2. How global variable work , how its shared by all function
  • Ans. 

    Global variables are accessible from any part of the program and can be modified by any function.

    • Global variables are declared outside of any function.

    • They can be accessed and modified by any function in the program.

    • If a function modifies the value of a global variable, the new value is visible to all other functions.

    • Global variables can be useful for sharing data between functions.

    • However, overuse of global variables

  • Answered by AI
  • Q3. Program to transpose the matrix
  • Ans. 

    Program to transpose a matrix

    • Iterate through rows and columns of the matrix

    • Swap the elements at (i,j) and (j,i) positions

    • Return the transposed matrix

  • Answered by AI
  • Q4. Internal implementation of pre and post fix operator
  • Ans. 

    Pre and post fix operators are used to increment or decrement a value before or after it is used in an expression.

    • Pre-fix operator (++x) increments the value of x and returns the new value.

    • Post-fix operator (x++) returns the value of x and then increments it.

    • Both operators can be used with variables of numeric data types.

    • They can also be used with pointers to increment or decrement the memory address they point to.

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare some standard problem from geekforgeeks.com

Skills evaluated in this interview

Interview Questionnaire 

1 Question

  • Q1. Prepare python data structures and python basics

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

Interview Questionnaire 

1 Question

  • Q1. Scenario based to be solved with python

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare the core concepts very well.
Contribute & help others!
anonymous
You can choose to be anonymous

ABB Interview FAQs

How many rounds are there in ABB R&D Design Engineer interview?
ABB interview process usually has 1 rounds. The most common rounds in the ABB interview process are Technical.
What are the top questions asked in ABB R&D Design Engineer interview?

Some of the top questions asked at the ABB R&D Design Engineer interview -

  1. which simulation software do you have us...read more
  2. Difference between tempering & anneali...read more
  3. Different type of coati...read more

Recently Viewed

DESIGNATION

REVIEWS

Shapoorji Pallonji Group

No Reviews

REVIEWS

ArcelorMittal Nippon Steel

No Reviews

REVIEWS

ArcelorMittal Nippon Steel

No Reviews

REVIEWS

ArcelorMittal Nippon Steel

No Reviews

DESIGNATION

SALARIES

Birla Shloka Edutech

SALARIES

Mittal Steel

REVIEWS

ArcelorMittal Nippon Steel

No Reviews

SALARIES

BSH Home Appliances Group

Tell us how to improve this page.

ABB R&D Design Engineer Interview Process

based on 1 interview

Interview experience

5
  
Excellent
View more
Join ABB Helping industries outrun with our leading technologies

Interview Questions from Similar Companies

Siemens Interview Questions
4.1
 • 420 Interviews
Thermax Limited Interview Questions
4.1
 • 252 Interviews
Tata Power Interview Questions
3.9
 • 162 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
Project Engineer
581 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
237 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Associate Project Engineer
209 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Explore more salaries
Compare ABB with

Siemens

4.1
Compare

Emerson Electric Co.

4.1
Compare

Honeywell International India

4.0
Compare

GE

4.2
Compare
Did you find this page helpful?
Yes No
write
Share an Interview
Rate your experience using AmbitionBox
Terrible
Terrible
Poor
Poor
Average
Average
Good
Good
Excellent
Excellent