Upload Button Icon Add office photos
Engaged Employer

i

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

Ernst & Young Verified Tick

Compare button icon Compare button icon Compare

Filter interviews by

Clear (1)

Ernst & Young React Developer Interview Questions, Process, and Tips

Updated 4 Apr 2022

Ernst & Young React Developer Interview Experiences

1 interview found

I was interviewed in Sep 2021.

Round 1 - Video Call 

(7 Questions)

Round duration - 60 Minutes
Round difficulty - Medium

This was a preety intense round revolving mainly around the core concepts of JavaScript . I was confident about my
skills in JavaScript as I already had some projects in JS and I also completed the Guided Path of JS in CodeStudio
which boosted my preparation and helped me crack these Frontend Interviews.

  • Q1. What are callbacks in JavaScript?
  • Ans. 

    Callbacks in JavaScript are functions passed as arguments to other functions to be executed later.

    • Callbacks are commonly used in event handling, asynchronous programming, and functional programming.

    • They allow for functions to be executed after another function has finished its execution.

    • Example: setTimeout(callbackFunction, 1000) will execute callbackFunction after 1 second.

  • Answered by AI
  • Q2. Can you explain hoisting in JavaScript?
  • Ans. 

    Hoisting is a JavaScript mechanism where variable and function declarations are moved to the top of their containing scope.

    • Variable declarations are hoisted to the top of their scope but not their assignments.

    • Function declarations are fully hoisted, meaning they can be called before they are declared.

    • Hoisting can lead to unexpected behavior if not understood properly.

  • Answered by AI
  • Q3. What are closures in JavaScript?
  • Ans. 

    Closures in JavaScript are functions that have access to variables from their outer scope even after the outer function has finished executing.

    • Closures allow functions to access variables from their parent function's scope

    • They maintain a reference to the variables they need, even after the parent function has finished executing

    • Closures are commonly used to create private variables and data encapsulation in JavaScript

    • Ex...

  • Answered by AI
  • Q4. What is the difference between slice and splice in JavaScript?
  • Ans. 

    slice() returns a shallow copy of a portion of an array without modifying the original array, while splice() changes the contents of an array by removing or replacing existing elements.

    • slice() does not modify the original array, while splice() does

    • slice() returns a new array, while splice() returns the removed elements

    • slice() takes start and end index as arguments, while splice() takes start index, number of elements t...

  • Answered by AI
  • Q5. What is a first-class function in JavaScript?
  • Ans. 

    A first-class function in JavaScript is a function that can be treated like any other variable.

    • Can be passed as an argument to other functions

    • Can be returned from other functions

    • Can be assigned to variables

    • Can be stored in data structures

  • Answered by AI
  • Q6. How would you sort an array of integers in JavaScript?
  • Ans. 

    Use the built-in sort() method to sort an array of integers in JavaScript.

    • Use the sort() method with a compare function to sort the array in ascending order.

    • For descending order, modify the compare function to return b - a instead of a - b.

    • Example: const numbers = [4, 2, 5, 1, 3]; numbers.sort((a, b) => a - b);

  • Answered by AI
  • Q7. 

    Covid Vaccination Distribution Problem

    As the Government ramps up vaccination drives to combat the second wave of Covid-19, you are tasked with helping plan an effective vaccination schedule. Your goal is...

  • Ans. 

    Maximize the number of vaccines administered on a specific day while adhering to certain rules.

    • Given n days, maxVaccines available, and a specific dayNumber, distribute vaccines to maximize on dayNumber

    • Administer positive number of vaccines each day with a difference of 1 between consecutive days

    • Ensure sum of vaccines distributed does not exceed maxVaccines

    • Output the maximum number of vaccines administered on dayNumber

  • Answered by AI
Round 2 - Video Call 

(10 Questions)

Round duration - 60 Minutes
Round difficulty - Medium

In this round, I was asked questions from React and Redux. Since I already had prior experience in working with React
and Redux , I answered most of the questions correctly and was preety much confident about passing this round.

  • Q1. What are the differences between a class component and a functional component in ReactJS?
  • Ans. 

    Class components are ES6 classes that extend from React.Component and have access to state and lifecycle methods, while functional components are simple functions that take props as arguments and return JSX.

    • Class components are defined using ES6 classes and extend from React.Component

    • Functional components are simple functions that take props as arguments and return JSX

    • Class components have access to state and lifecycle...

  • Answered by AI
  • Q2. What are the differences between stateless and stateful components in ReactJS?
  • Ans. 

    Stateless components do not have internal state, while stateful components have internal state.

    • Stateless components are functional components that do not have internal state.

    • Stateful components are class components that have internal state.

    • Stateless components are simpler and easier to test.

    • Stateful components are more complex and can hold and update internal state.

    • Example: Stateless component - const Button = () =>...

  • Answered by AI
  • Q3. What is the diffing algorithm in ReactJS?
  • Ans. 

    React uses a diffing algorithm called Virtual DOM to efficiently update the actual DOM based on changes in state or props.

    • Virtual DOM is a lightweight copy of the actual DOM.

    • React compares the Virtual DOM with the previous Virtual DOM to identify the minimal number of changes needed to update the actual DOM.

    • This process is known as reconciliation and helps in optimizing performance by reducing unnecessary re-renders.

    • Ex...

  • Answered by AI
  • Q4. What is reconciliation in ReactJS?
  • Ans. 

    Reconciliation in ReactJS is the process of updating the DOM to match the virtual DOM after a component's state or props have changed.

    • Reconciliation is the algorithm React uses to update the UI efficiently.

    • It compares the virtual DOM with the actual DOM and only updates the parts that have changed.

    • Reconciliation is a key feature that helps React achieve high performance.

    • Example: When a user interacts with a React compo...

  • Answered by AI
  • Q5. What are props in React?
  • Ans. 

    Props in React are used to pass data from a parent component to a child component.

    • Props are read-only and cannot be modified by the child component.

    • Props are passed down the component tree.

    • Props can be any type of data, such as strings, numbers, objects, or functions.

    • Example: <ChildComponent name='John' age={25} />

  • Answered by AI
  • Q6. What are the advantages of using Redux?
  • Ans. 

    Redux helps manage application state in a predictable way.

    • Centralized state management

    • Predictable state changes with actions and reducers

    • Time-travel debugging with Redux DevTools

    • Ecosystem of middleware for additional functionality

  • Answered by AI
  • Q7. What are the key differences between mapStateToProps() and mapDispatchToProps() in Redux?
  • Ans. 

    mapStateToProps() is used to access the Redux state in a component, while mapDispatchToProps() is used to dispatch actions to update the state.

    • mapStateToProps() is used to access the Redux state and return data as props for a component.

    • mapDispatchToProps() is used to dispatch actions to update the Redux state.

    • mapStateToProps() is a function that takes the current state as an argument and returns an object with props th...

  • Answered by AI
  • Q8. What is the Combine Reducer in Redux?
  • Ans. 

    Combine Reducer is a function in Redux that combines multiple reducers into a single reducer function.

    • Combines multiple reducers into a single reducer function

    • Helps manage different pieces of state in Redux store

    • Improves code organization and maintainability

    • Example: combineReducers({ reducer1, reducer2 })

    • Example: const rootReducer = combineReducers({ reducer1, reducer2 })

  • Answered by AI
  • Q9. How is Relay different from Redux?
  • Ans. 

    Relay is a GraphQL client specifically designed for React, while Redux is a state management library for any JavaScript application.

    • Relay is tightly integrated with GraphQL, making it easier to fetch and manage data from a GraphQL server.

    • Redux is a more general-purpose state management library that can be used with any backend technology.

    • Relay uses a declarative approach to data fetching, where components declare their...

  • Answered by AI
  • Q10. How can we structure the top-level directories in Redux?
  • Ans. 

    Top-level directories in Redux should be structured based on functionality and feature modules.

    • Separate directories for actions, reducers, and components

    • Group related functionality together in separate directories

    • Use feature modules to encapsulate related actions, reducers, and components

    • Example: 'actions', 'reducers', 'components', 'utils', 'constants'

  • Answered by AI
Round 3 - HR 

(2 Questions)

Round duration - 30 Minutes
Round difficulty - Easy

This was a Technical Cum HR round where I was first asked some basic principles around Frontend Web Development
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 CGPAErnst & Young (EY) interview preparation:Topics to prepare for the interview - HTML, CSS, ReactJS , JavaScript, Redux, OOPSTime required to prepare for the interview - 4 MonthsInterview preparation tips for other job seekers

Tip 1 : Do at-least 2 good projects and you must know every bit of them.
Tip 2 : Understand the fundamentals of JavaScript as they are asked very often.

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

React Developer Jobs at Ernst & Young

View all

Interview questions from similar companies

I applied via Company Website and was interviewed before Dec 2020. There were 4 interview rounds.

Interview Questionnaire 

1 Question

  • Q1. They totally asked me on Java and we have to be confident while answering them.

Interview Preparation Tips

Interview preparation tips for other job seekers - Be genuine don't keep the thing's in the Resume which you donno

I applied via Naukri.com and was interviewed in Jan 2021. There were 3 interview rounds.

Interview Questionnaire 

1 Question

  • Q1. Oops concepts, Exception Handling & other Core Java concepts

Interview Preparation Tips

Interview preparation tips for other job seekers - Search & Contact recruiters who hire for ur domain on LinkedIn & share ur resume with them, search relevant jobs on LinkedIn & apply.

Go to companies' websites & create ur profile.

Update ur profile daily on naukri. 👍🏻

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

Interview Questionnaire 

1 Question

  • Q1. Coding

Interview Preparation Tips

Interview preparation tips for other job seekers - It was nice experience

I applied via Naukri.com and was interviewed before Nov 2020. There was 1 interview round.

Interview Questionnaire 

1 Question

  • Q1. Related to job role

Interview Preparation Tips

Interview preparation tips for other job seekers - Overall interview was good. most of the questions they have asked basics of SQL, SSIS transformations etc.

Interview Questionnaire 

1 Question

  • Q1. In C# --> Abstraction, Interface , Abstract Method, Abstract Class, Polymorphisms, Encapsulation ,Inheritance, Serialization,
  • Ans. 

    C# concepts including abstraction, interface, abstract method, abstract class, polymorphism, encapsulation, inheritance, and serialization.

    • Abstraction: hiding implementation details

    • Interface: defining a contract for behavior

    • Abstract method: method without implementation

    • Abstract class: class with one or more abstract methods

    • Polymorphism: ability of objects to take on multiple forms

    • Encapsulation: bundling data and behavi...

  • Answered by AI

Skills evaluated in this interview

I applied via Company Website and was interviewed before Jan 2021. There were 5 interview rounds.

Interview Questionnaire 

3 Questions

  • Q1. Tell me about yourself?
  • Q2. Normalization concept,Java basics inheritance overloading, encapsulation ,update table ,related to projects in final year
  • Q3. Situation based questions based on project

Interview Preparation Tips

Interview preparation tips for other job seekers - Be calm and confident and be genuine whatever you explain that should be very specific to question and if u are feeling narvous then put a gentle smile on your face,if you don't know about question ask then try little bit and say sir I will read about this.
All the Best😊😊
Interview experience
1
Bad
Difficulty level
Hard
Process Duration
More than 8 weeks
Result
No response

I applied via Campus Placement and was interviewed before Nov 2021. 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 Resume tips
Round 2 - Assignment 

Best wishes to you know that you have to come to the day da

Round 3 - Group Discussion 

Hi sir I have sent the best for first year and all the best for your reference

Interview Preparation Tips

Interview preparation tips for other job seekers - Easy easy easy drawing with this picture 🖼️ and avarampatti photos and videos are you please send panta and all the best for your reference

Interview Questionnaire 

1 Question

  • Q1. Basic java, core java

I applied via Campus Placement and was interviewed in Sep 2020. There were 4 interview rounds.

Interview Questionnaire 

5 Questions

  • Q1. Tell about yourself.
  • Ans. 

    I am a software developer with experience in various programming languages and a passion for creating innovative solutions.

    • Proficient in Java, C++, and Python

    • Experience with web development using HTML, CSS, and JavaScript

    • Familiarity with agile development methodologies

    • Strong problem-solving and analytical skills

    • Excellent communication and teamwork abilities

  • Answered by AI
  • Q2. What is array and how it is different from linked lists?
  • Ans. 

    Array is a collection of elements of same data type. Linked list is a data structure where each element points to the next one.

    • Arrays have fixed size, linked lists can grow dynamically

    • Accessing elements in an array is faster than in a linked list

    • Inserting or deleting elements in a linked list is faster than in an array

    • Arrays are stored in contiguous memory locations, linked lists are not

    • Arrays are used for random acces

  • Answered by AI
  • Q3. OSI model (Networking)?
  • Ans. 

    The OSI model is a conceptual model that describes the communication functions of a telecommunication or computing system.

    • The OSI model has 7 layers: Physical, Data Link, Network, Transport, Session, Presentation, and Application.

    • Each layer has a specific function and communicates with the layers above and below it.

    • The Physical layer deals with the physical transmission of data, while the Application layer deals with u...

  • Answered by AI
  • Q4. Explain OSI model modules?
  • Ans. 

    The OSI model is a conceptual model that characterizes and standardizes the communication functions of a telecommunication or computing system.

    • The OSI model has 7 layers: Physical, Data Link, Network, Transport, Session, Presentation, and Application.

    • Each layer has a specific function and communicates with the layers above and below it.

    • The Physical layer deals with the physical transmission of data, while the Applicati...

  • Answered by AI
  • Q5. About project? what technologies used? How you implemented?

Interview Preparation Tips

Interview preparation tips for other job seekers - My personal advice is to first be prepared on what u have written in Resume.
Get some current knowledge about the company like CEO name, latest tech. on which company working on .

Skills evaluated in this interview

Contribute & help others!
anonymous
You can choose to be anonymous

Ernst & Young Interview FAQs

How to prepare for Ernst & Young React 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 Ernst & Young. The most common topics and skills that interviewers at Ernst & Young expect are Consulting, Analytical Chemistry, Application Development, Auditing and Business Communication.

Recently Viewed

INTERVIEWS

Accenture

No Interviews

DESIGNATION

INTERVIEWS

Accenture

No Interviews

INTERVIEWS

Informatica

30 top interview questions

INTERVIEWS

Continental

30 top interview questions

REVIEWS

Ernst & Young

No Reviews

REVIEWS

Ernst & Young

No Reviews

INTERVIEWS

Accenture

No Interviews

DESIGNATION

SKILL

Interview Questions

250 interview questions

Tell us how to improve this page.

Interview Questions from Similar Companies

TCS Interview Questions
3.7
 • 10.4k Interviews
Accenture Interview Questions
3.8
 • 8.1k Interviews
Capgemini Interview Questions
3.7
 • 4.8k Interviews
Deloitte Interview Questions
3.8
 • 2.8k Interviews
IBM Interview Questions
4.0
 • 2.3k Interviews
PwC Interview Questions
3.4
 • 1.4k Interviews
KPMG India Interview Questions
3.5
 • 790 Interviews
ZS Interview Questions
3.4
 • 449 Interviews
BCG Interview Questions
3.7
 • 196 Interviews
View all
Ernst & Young React Developer Salary
based on 4 salaries
₹3.9 L/yr - ₹10 L/yr
27% more than the average React Developer Salary in India
View more details
Full Stack - React Developer

Kolkata

4-7 Yrs

Not Disclosed

Full Stack - DOTNET - React Developer

Kolkata

4-7 Yrs

Not Disclosed

Explore more jobs
Senior Consultant
15.9k salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Consultant
12k salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Manager
7.6k salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Assistant Manager
6.4k salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Associate Consultant
3.9k salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Explore more salaries
Compare Ernst & Young with

Deloitte

3.8
Compare

PwC

3.4
Compare

EY Global Delivery Services ( EY GDS)

3.6
Compare

Accenture

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