Upload Button Icon Add office photos

Filter interviews by

Emerson Electric Co. Full Stack Developer Interview Questions and Answers

Updated 30 Sep 2022

Emerson Electric Co. Full Stack Developer Interview Experiences

1 interview found

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. Questions on full stack Devlopment
  • Q2. Questions asked on React,Nodejs
Round 3 - Coding Test 

There will be machin test on best on MERN stack

Interview Preparation Tips

Interview preparation tips for other job seekers - Need to have hands on experience on MERN and you have to give machine test on basis of that

Full Stack Developer Jobs at Emerson Electric Co.

View all

Interview questions from similar companies

Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - One-on-one 

(2 Questions)

  • Q1. What is a functional interface?
  • Ans. 

    A functional interface is an interface that contains only one abstract method and can be used as a lambda expression.

    • Functional interfaces can have multiple default or static methods, but only one abstract method.

    • Functional interfaces are used in lambda expressions to provide implementation for the abstract method.

    • Examples of functional interfaces in Java include Runnable, Callable, and ActionListener.

  • Answered by AI
  • Q2. Types of locks ?
  • Ans. 

    Types of locks include mutex locks, spin locks, read-write locks, and file locks.

    • Mutex locks: used to protect shared resources by allowing only one thread to access the resource at a time.

    • Spin locks: busy-waiting locks that repeatedly check for the lock to become available.

    • Read-write locks: allow multiple readers or a single writer to access a resource.

    • File locks: used to prevent multiple processes from simultaneously

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

(2 Questions)

  • Q1. Cache implementation in spring boot
  • Ans. 

    Spring Boot provides support for caching through annotations like @Cacheable, @CacheEvict, @CachePut.

    • Use @EnableCaching annotation to enable caching in Spring Boot application

    • Use @Cacheable annotation to cache the result of a method

    • Use @CacheEvict annotation to remove entries from the cache

    • Use @CachePut annotation to update the cache without interfering with the method execution

  • Answered by AI
  • Q2. Few coding questions

Skills evaluated in this interview

Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Coding Test 

There are 4 coding questions in first round

Round 2 - One-on-one 

(1 Question)

  • Q1. Some basic statistics questions and data structure questions
Round 1 - One-on-one 

(2 Questions)

  • Q1. Questions on OOPS mainly inheritance Questions on Core Java Tricky questions on collections Questions on Java 8
  • Q2. Questions on JavaScript What is a closure

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare on Core java, collections, Java8 and JavaScript and Angular

I was interviewed in Aug 2021.

Round 1 - Coding Test 

(2 Questions)

Round duration - 100 minutes
Round difficulty - Hard

The test had 3 parts:
1. Aptitude - 20 questions to be done in 25 minutes. (Medium level)
2. Technical MCQs - 25 questions to be done in 35 minutes. (Medium-Hard level) (HTML, JS, CSS, SQL)
3. Coding - 2 out of 3 questions to be done in 40 minutes. 20 minutes were allotted for each question. No switching between the codes was allowed. (1-easy, 2-medium in total)

  • Q1. Count Set Bits

    You are given a positive integer ‘N’. Your task is to find the total number of ‘1’ in the binary representation of all the numbers from 1 to N.

    Since the count of ‘1’ can be huge, you are ...

  • Ans. Brute Force

    The key idea is to count the number of set bits in each number from 1 to n and return the sum of all set bits.

     

    The algorithm will be -

     

    • For each i from 1 to N -
      • We find the number of set bits for each i.
      • This can be done using a built-in function (for eg builtin_popcount in c++) or by simply using a loop and left shifting the number and finding if the last place is set or not.
    • Finally we store the coun...
  • Answered by CodingNinjas
  • Q2. Smallest number whose digits multiplication is ‘N’

    You are given a positive integer ‘N’. The task is to find and return the smallest number, ‘M’, such that the multiplication of all the digits in ‘M’ is eq...

  • Ans. Brute force

    A simple approach will be to iterate through all possible ‘M’ values, i.e., from ‘1’ to ‘2147483647’ (the largest value that a signed 32-bit integer field can hold), and check if their digit multiplication is equal to ‘N’.

     

    Algorithm:

    • Run a loop where ‘i’ ranges from ‘1’ to ‘2147483647’:
      • Set ‘CUR = i’. The current ‘M’ value.
      • Set ‘MUL = 1’. Use it to store the digit multiplication of ‘M’.
      • Run a loop until ‘cu...
  • Answered by CodingNinjas
Round 2 - Video Call 

(1 Question)

Round duration - 45 minutes
Round difficulty - Medium

It was the first face-to-face technical round. The medium was ModernHire. There was only 1 member in the interview panel. This round tested me on C fundaments, Operating System basics, and problem-solving skills.
Questions asked:
What are the TRUNCATE, DELETE and DROP statements?
What are void elements in HTML?
Define multipart form data?
1. How does the C compiler works?
2. What are deadlocks and why does it happen?
3. How to resolve deadlock?
4. What is a kernel?
5. How to dynamically allocate memory in C?
6. What is makefile?
7. What is multi-threading and why is it useful?
8. What is the need for synchronization in OS?
9. How do you run a program of 10 GB using 2 GB memory?
10. What are semaphores and mutex?
11. How is HashMap implemented?
12. Difference between linker and loader.
13. Importance of header files.
14. What is Dynamic binding?
15. What type of database should you use where transactions are involved?
16. Brief discussion on the Internship experience.

  • Q1. Merge Sort

    Given a sequence of numbers ‘ARR’. Your task is to return a sorted sequence of ‘ARR’ in non-descending order with help of the merge sort algorithm.

    Example :

    Merge Sort Algorithm -
    
    Merge sor...
  • Ans. Recursion

    The basic idea is that we divide the given ‘ARR’ into two-part call them ‘leftHalves’ and ‘rightHalves’ and call the same function again with both the parts. In the end, we will get sorted ‘leftHaves’ and sorted ‘righthalves’ which we merge both of them and return a merged sorted ‘ARR’.

    We implement this approach with a divide and conquer strategy.

     

    Here is the algorithm : 

     

    1. Divide ‘ARR’ into two-p...
  • Answered by CodingNinjas
Round 3 - Video Call 

(1 Question)

Round duration - 50 minutes
Round difficulty - Medium

This was a managerial cum technical round. I was asked to introduce myself (both technical details and hobbies). Then I was asked about my internship experiences and what I learnt from them. After that, he asked me questions about the projects mentioned in my resume. He tested my in-depth knowledge of the technologies that I used. He also asked me about the alternative solutions and the drawbacks of my solution.
After that, he asked me to speak about Operating Systems for 5 minutes without giving a pause. Then he asked me to speak about the OSI model and the TCP/IP model for the next 5-10 minutes again without giving a pause. He appreciated my perfomance and gave me a coding question.
What is User-defined function? What are its various types in SQL. What is an Alias in SQL?
Then he asked me whether I had any questions.

  • Q1. Find a Node in Linked List

    You have been given a singly linked list of integers. Write a function that returns the index/position of integer data denoted by 'N' (if it exists). Return -1 otherwise.

    ...
  • Ans. Recursive Approach

    The steps are as follows:

     

    1. If the head is null, return -1 since an empty list will obviously not contain the element that we need to look for.
    2. Check whether the head’s data is equal to the element we want to search. Return 0 if it is.
    3. Then recurse on the next node from the head and get its answer.
    4. If the answer from the recursive call is -1, your answer is also -1 since you already check the head’s d...
  • Answered by CodingNinjas
Round 4 - HR 

(1 Question)

Round duration - 15 minutes
Round difficulty - Easy

Typical HR questions were asked in this round.

  • Q1. Basic HR Questions

    Introduce yourself.
    Mention something that is not in your resume.
    Why are you fit for this role?
    Why HPE?
    Plans for higher studies.

  • Ans. 

    Tip 1 : Be Honest
    Tip 2 : Be confident.
    Tip 3 : Keep a smile always.

  • Answered by CodingNinjas

Interview Preparation Tips

Professional and academic backgroundI completed Computer Science Engineering from Vellore Institute of Technology. I applied for the job as Fullstack Developer in BangaloreEligibility criteria7 CGPA and 70% in boardsHewlett Packard Enterprise interview preparation:Topics to prepare for the interview - Data Structures, Operating Systems, Computer Networks, SQL Queries, Dynamic ProgrammingTime required to prepare for the interview - 8 monthsInterview preparation tips for other job seekers

Tip 1 : Revise data structures and operating systems very well.
Tip 2 : Have a good resume with self-made projects and internship experiences as they add value to the candidature.
Tip 3 : Be confident and know the basics well.

Application resume tips for other job seekers

Tip 1 : Have some good projects and know the tech stack well enough.
Tip 2 : Never include anything which you are not confident about.

Final outcome of the interviewSelected

Skills evaluated in this interview

I applied via Naukri.com and was interviewed in May 2020. There was 1 interview round.

Interview Questionnaire 

1 Question

  • Q1. Two technical Rounds .

Interview Preparation Tips

Interview preparation tips for other job seekers - Do not apply to this company. At first they will accept your expected package , they will schedule the interviews . Once they selected you they will start bargaining over the packages they promised.They promised me of 29 Lakhs and they started to bargain from 12 Lakhs. They are very unprofessional and they will blame the client doesnt have budget. When i informed that client got in touch with me as i got selected. They said Innova solutions doesnt have budget. When i asked them to send an email , they altered the statement that Innova solutions policy for 8 years experience is to pay only 12 lakhs and HR has done the mistake of not noticing the expected package.I havent seen such a greedy and fake promises company in my career. DONT WASTE YOUR TIME.
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via Naukri.com and was interviewed in Apr 2024. There was 1 interview round.

Round 1 - Technical 

(3 Questions)

  • Q1. Find the largest word in a list using Java Streams API
  • Ans. 

    Find the largest word in a list using Java Streams API

    • Use Java Streams API to convert the array of strings to a stream

    • Use the 'max' method with a Comparator to find the largest word based on length

    • Return the largest word found

  • Answered by AI
  • Q2. Given an array of integers, write a function that returns a list of numbers where the second digit from the left is 1
  • Q3. What is a functional interface in Java
  • Ans. 

    A functional interface in Java is an interface that contains only one abstract method.

    • Functional interfaces can have multiple default or static methods, but only one abstract method.

    • They are used to enable lambda expressions and method references in Java.

    • Examples of functional interfaces in Java include Runnable, Callable, and ActionListener.

  • Answered by AI

Skills evaluated in this interview

Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(2 Questions)

  • Q1. Dependecy injection
  • Q2. Components of dot net framework
  • Ans. 

    The components of the .NET framework include Common Language Runtime (CLR), Base Class Library (BCL), and Framework Class Library (FCL).

    • Common Language Runtime (CLR) - manages code execution and provides services such as memory management and exception handling

    • Base Class Library (BCL) - provides a set of reusable classes, interfaces, and value types

    • Framework Class Library (FCL) - a collection of reusable classes, inter...

  • Answered by AI

I applied via Naukri.com and was interviewed before Feb 2021. There was 1 interview round.

Round 1 - Technical 

(2 Questions)

  • Q1. Basic programming language of c and Java
  • Q2. Difference between python and java
  • Ans. 

    Python is dynamically typed, interpreted language while Java is statically typed, compiled language.

    • Python is easier to learn and write code quickly.

    • Java is more verbose and requires more code to accomplish the same task.

    • Python is better suited for scripting and rapid prototyping.

    • Java is better suited for large-scale enterprise applications.

    • Python has a larger community and more third-party libraries.

    • Java has better pe...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Need to have confidence what you are going to answer.

Skills evaluated in this interview

Emerson Electric Co. Interview FAQs

How many rounds are there in Emerson Electric Co. Full Stack Developer interview?
Emerson Electric Co. interview process usually has 3 rounds. The most common rounds in the Emerson Electric Co. interview process are Resume Shortlist, Technical and Coding Test.
How to prepare for Emerson Electric Co. Full Stack Developer 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 Emerson Electric Co.. The most common topics and skills that interviewers at Emerson Electric Co. expect are Javascript, Front End, Python, JSON and Postgresql.
What are the top questions asked in Emerson Electric Co. Full Stack Developer interview?

Some of the top questions asked at the Emerson Electric Co. Full Stack Developer interview -

  1. Questions on full stack Devlopm...read more
  2. Questions asked on React,Nod...read more

Tell us how to improve this page.

Emerson Electric Co. Full Stack Developer Reviews and Ratings

based on 1 review

5.0/5

Rating in categories

4.0

Skill development

5.0

Work-life balance

3.0

Salary

5.0

Job security

5.0

Company culture

2.0

Promotions

5.0

Work satisfaction

Explore 1 Review and Rating
Senior Engineer
150 salaries
unlock blur

₹5.8 L/yr - ₹19 L/yr

Design Engineer
124 salaries
unlock blur

₹2 L/yr - ₹10.4 L/yr

Product Design Engineer
68 salaries
unlock blur

₹3.2 L/yr - ₹10.3 L/yr

Lead Engineer
62 salaries
unlock blur

₹12.5 L/yr - ₹23 L/yr

Engineer
56 salaries
unlock blur

₹4.5 L/yr - ₹9.5 L/yr

Explore more salaries
Compare Emerson Electric Co. with

Siemens

4.1
Compare

ABB

4.1
Compare

Schneider Electric

4.2
Compare

Honeywell International India

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