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
3.4

based on 10.3k Reviews

Filter interviews by

Ernst & Young Associate Software Engineer Interview Questions, Process, and Tips

Updated 10 May 2024

Top Ernst & Young Associate Software Engineer Interview Questions and Answers

  • Q1. Intersection of Linked List Problem Statement You are provided with two singly linked lists of integers. These lists merge at a node of a third linked list. Your task is ...read more
  • Q2. Pythagorean Triplets Detection Determine if an array contains a Pythagorean triplet by checking whether there are three integers x, y, and z such that x 2 + y 2 = z 2 wi ...read more
  • Q3. Swap Two Numbers Problem Statement Given two integers a and b , your task is to swap these numbers and output the swapped values. Input: The first line contains a single ...read more
View all 18 questions

Ernst & Young Associate Software Engineer Interview Experiences

8 interviews found

Interview experience
4
Good
Difficulty level
Moderate
Process Duration
More than 8 weeks
Result
No response

I applied via Naukri.com and was interviewed in Apr 2024. There were 2 interview rounds.

Round 1 - Coding Test 

Find the greatest element in the moving array

Round 2 - Technical 

(1 Question)

  • Q1. Interviewer Asked me to build Airline Management System
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via campus placement at Kalinga Institute of Industrial Technology, Khurda and was interviewed before Oct 2022. There were 5 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 

Reasoning, maths and clocks based questions.

Round 3 - Coding Test 

2 codings. DSA based.

Round 4 - Technical 

(4 Questions)

  • Q1. What are OOPs Concepts?
  • Ans. 

    OOPs Concepts are fundamental principles of Object-Oriented Programming that help in organizing and designing code.

    • Encapsulation: Bundling data and methods that operate on the data into a single unit (object).

    • Inheritance: Allowing a class to inherit properties and behavior from another class.

    • Polymorphism: Ability of objects to take on multiple forms or have multiple behaviors.

    • Abstraction: Hiding the complex implementat...

  • Answered by AI
  • Q2. What is AVL tree?
  • Ans. 

    AVL tree is a self-balancing binary search tree where the heights of the two child subtrees of any node differ by at most one.

    • AVL tree was named after its inventors Adelson-Velsky and Landis.

    • It is a type of binary search tree where the heights of the two child subtrees of any node differ by at most one.

    • AVL trees are used to maintain a balanced tree structure, ensuring O(log n) time complexity for insertion, deletion, a...

  • Answered by AI
  • Q3. Define LIFO, FIFO etc
  • Ans. 

    LIFO stands for Last In, First Out and FIFO stands for First In, First Out.

    • LIFO: Last In, First Out - the last item added to a stack is the first one to be removed.

    • FIFO: First In, First Out - the first item added to a queue is the first one to be removed.

  • Answered by AI
  • Q4. Share your college experienceon coding.
  • Ans. 

    I gained hands-on coding experience through coursework, projects, and internships during my college years.

    • Took courses in programming languages such as Java, C++, and Python.

    • Participated in coding competitions and hackathons to enhance my skills.

    • Completed coding projects in areas like web development, data analysis, and software engineering.

    • Interned at a tech company where I worked on real-world coding projects.

    • Collabo...

  • Answered by AI
Round 5 - HR 

(2 Questions)

  • Q1. Introduce yourself (3 mins)
  • Q2. Area of Interests (3 mins)

Interview Preparation Tips

Interview preparation tips for other job seekers - Just practice for Coding and English. Rest your luck matters.

Skills evaluated in this interview

Associate Software Engineer Interview Questions Asked at Other Companies

asked in Accenture
Q1. Triplets with Given Sum Problem Given an array or list ARR consis ... read more
asked in Clarivate
Q2. Best Time to Buy and Sell Stock II Problem Statement Given the st ... read more
Q3. Intersection of Two Arrays II Given two integer arrays ARR1 and A ... read more
asked in CGI Group
Q4. Frog Jump Problem Statement A frog is positioned on the first ste ... read more
asked in Gainsight
Q5. Connecting Ropes with Minimum Cost You are given 'N' ropes, each ... read more

I applied via Referral and was interviewed in Nov 2021. There were 4 interview rounds.

Round 1 - Resume Shortlist 
Pro Tip by AmbitionBox:
Don’t add your photo or details such as gender, age, and address in your resume. These details do not add any value.
View all tips
Round 2 - Aptitude Test 

Basic conceptual knowledge check.

Round 3 - Coding Test 

One basic and one intermediate level question you are allowed to give write the code in any language.

Round 4 - Technical 

(1 Question)

  • Q1. This is an AI based interview where on the screen flashes the question and you will have to answer them looking into the camera always camera will be on.

Interview Preparation Tips

Topics to prepare for Ernst & Young Associate Software Engineer interview:
  • Java
  • ds algo
  • Python
  • SQL
Interview preparation tips for other job seekers - For the interview round just go with the flow and have a practice on the basic questions of the interview and be fluent in English.

I was interviewed in Apr 2021.

Round 1 - Video Call 

(7 Questions)

Round duration - 60 Minutes
Round difficulty - Medium

This round had 2 coding questions where in I was first asked to explain my approach and then code the solution . After
that , I was asked some more questions on OOPS and JavaScript.

  • Q1. 

    Intersection of Linked List Problem Statement

    You are provided with two singly linked lists of integers. These lists merge at a node of a third linked list.

    Your task is to determine the data of the node...

  • Ans. 

    Approach :
    1) Calculate the length of both the lists, say len1 and len2

    2) Get the absolute difference of the lengths, diff = |len1 – len2|

    3) Now traverse the long list from the first node till ‘diff’ nodes so that from there onwards both the lists have equal
    number of nodes

    4) Then traverse both the lists in parallel and check whether a common node is reached (Note that getting a common
    node is done by comparing the addres...

  • Answered Anonymously
  • Q2. 

    Pythagorean Triplets Detection

    Determine if an array contains a Pythagorean triplet by checking whether there are three integers x, y, and z such that x2 + y2 = z2 within the array.

    Input:

    The first lin...
  • Ans. 

    Approach :
    1) I solved it in O(N^2) approach.
    2) Sort the array.
    3) Initially map all the elements of the array to their index in a Hash Map or a Hash Set.
    4) Now , run 2 for loops and for every x^2 + y^2 ,check if there exists a z^2 s.t x^2+y^2=z^2 and the index of z^2 is
    different than both the indices of x and y.

  • Answered Anonymously
  • Q3. What do you mean by data encapsulation?
  • Ans. 

    1) Data Encapsulation is an Object-Oriented Programming concept of hiding the data attributes and their behaviors in
    a single unit.

    2) It helps developers to follow modularity while developing software by ensuring that each object is independent of
    other objects by having its own methods, attributes, and functionalities.

    3) It is used for the security of the private properties of an object and hence serves the purpose of d

  • Answered Anonymously
  • Q4. Can static methods be overridden?
  • Ans. 

    1) No. Declaration of static methods having the same signature can be done in the subclass but run time
    polymorphism can not take place in such cases.

    2) Overriding or dynamic polymorphism occurs during the runtime, but the static methods are loaded and looked up
    at the compile time statically. Hence, these methods cant be overridden.

  • Answered Anonymously
  • Q5. What is the garbage collector in Java?
  • Ans. 

    1) Garbage Collection in Java is a process by which the programs perform memory management automatically.

    2) The Garbage Collector(GC) finds the unused objects and deletes them to reclaim the memory. I

    3) In Java, dynamic memory allocation of objects is achieved using the new operator that uses some memory and the
    memory remains allocated until there are references for the use of the object.

    4) When there are no references...

  • Answered Anonymously
  • Q6. Can you explain hoisting in JavaScript?
  • Ans. 

    Hoisting is a default behaviour of javascript where all the variable and function declarations are moved on top.
    This means that irrespective of where the variables and functions are declared, they are moved on top of the scope.
    The scope can be both local and global.

    EXAMPLE 1 :

    hoistedVariable = 10;
    console.log(hoistedVariable); // outputs 10 even when the variable is declared after it is initialized
    var hoistedVariable;


    EX...

  • Answered Anonymously
  • Q7. What are closures in JavaScript?
  • Ans. 

    A closure is the combination of a function and the lexical environment within which that function was declared. i.e, It is
    an inner function that has access to the outer or enclosing function’s variables. The closure has three scope chains

    i) Own scope where variables defined between its curly brackets
    ii) Outer function’s variables
    iii) Global variables

    Let's take an example of closure concept,

    function Welcome(name){
    var gr...

  • Answered Anonymously
Round 2 - Video Call 

(6 Questions)

Round duration - 60 Minutes
Round difficulty - Medium

This round was mainly inclined towards some Frontend Web Development questions(as I had told the interviewer that I have some prior experince in that field and also have some projects supporting this) ranging from HTML,CSS to JavaScript.

  • Q1. Can you explain promises in JavaScript and describe its three states?
  • Ans. 

    1) A promise is an object that may produce a single value some time in the future: either a resolved value, or a
    reason that it’s not resolved (e.g., a network error occurred).

    2) A promise may be in one of 3 possible states: fulfilled, rejected, or pending. Promise users can attach callbacks to
    handle the fulfilled value or the reason for rejection.

    3) Promises are eager, meaning that a promise will start doing whatever t...

  • Answered Anonymously
  • Q2. What is a higher order function?
  • Ans. 

    Higher-order function is a function that accepts another function as an argument or returns a function as a return
    value or both.

    EXAMPLE :

    const firstOrderFunc = () => console.log ('Hello, I am a First order function');
    const higherOrder = ReturnFirstOrderFunc => ReturnFirstOrderFunc();
    higherOrder(firstOrderFunc);

  • Answered Anonymously
  • Q3. 

    Swap Two Numbers Problem Statement

    Given two integers a and b, your task is to swap these numbers and output the swapped values.

    Input:

    The first line contains a single integer 't', representing the num...
  • Ans. 

    Approach 1 (Using Destructruring Assignment) : This method was specific only for JS and the interviewer was preety
    impressed when I used it .

    Destructuring assignment (a feature of ES2015) lets you extract items of an array into variables. It works with any
    data type: numbers, strings, booleans, objects.

    Code :

    let a = 1;
    let b = 2;
    [a, b] = [b, a];
    a; // => 2
    b; // => 1

    [a, b] = [b, a] is the destructuring assignment that...

  • Answered Anonymously
  • Q4. What are the features of HTML5?
  • Ans. 

    HTML stands for Hypertext Markup Language, and it is the standard markup language for creating web pages and
    web applications. HTML5 is the 5th version of HTML.

    Some of the new features that were added in HTML5 that make it better than HTML are as follows :

    1) Intro of audio and video : Audio and Video tags are the two major addition to HTML5. It allows developers to
    embed a video or audio on their website. HTML5 video can...

  • Answered Anonymously
  • Q5. How can you optimize the loading of website assets?
  • Ans. 

    To optimize website load time we need to optimize its asset loading and for that : 

    1) CDN hosting - A CDN or content delivery network is geographically distributed servers to help reduce latency.

    2) File compression - This is a method that helps to reduce the size of an asset to reduce the data transfer

    3) File concatenation - This reduces the number of HTTP calls

    4) Minify scripts - This reduces the overall file siz...

  • Answered Anonymously
  • Q6. In how many ways can you display HTML elements?
  • Ans. 

    1) inline: Using this we can display any block-level element as an inline element. The height and width attribute values of the element will not affect.

    2) block: using this, we can display any inline element as a block-level element. 

    3) inline-block: This property is similar to inline, except by using the display as inline-block, we can actually format the element using height and width values.

    4) flex: It displays...

  • Answered Anonymously
Round 3 - HR 

(1 Question)

Round duration - 30 Minutes
Round difficulty - Easy

This was a typical HR round with some standard Behavioral questions like my interests, weaknesses, strengths, family
background, are you willing to relocate or travel , why Ernst & Young, CEO of Ernst & Young etc.

  • Q1. Why should we hire you?
  • Ans. 

    Tip 1 : The cross questioning can go intense some time, think before you speak.

    Tip 2 : Be open minded and answer whatever you are thinking, in these rounds I feel it is important to have opinion.

    Tip 3 : Context of questions can be switched, pay attention to the details. It is okay to ask questions in these round,
    like what are the projects currently the company is investing, which team you are mentoring. How all is the ...

  • Answered Anonymously

Interview Preparation Tips

Eligibility criteriaAbove 7 CGPAErnst & Young (EY) interview preparation:Topics to prepare for the interview - Data Structures, Algorithms, JavaScript, HTML, CSS, 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

Ernst & Young interview questions for designations

 Software Associate

 (2)

 Software Engineer

 (3)

 Senior Software Engineer

 (9)

 Advanced Software Engineer

 (1)

 Senior Associate Software Developer

 (1)

 Associate Consultant

 (46)

 Project Associate

 (1)

 Associate Technology

 (1)

I applied via campus placement at SRM Institute of Science & Technology, Chennai and was interviewed before Jul 2021. There was 1 interview round.

Round 1 - HR 

(1 Question)

  • Q1. This is more of a vibe check about you. They will try to get to know you better. Questions related to your interest, expertise and your future plannings. This round is usually chill and it would mostly be ...

Interview Preparation Tips

Interview preparation tips for other job seekers - 1. Be knowledgeable about the mainstream DSA and OOPS topics.
2. Be vocal during your interviews and make sure you keep things brief and simple.
3. Have an open mind when you get into the HR round. They might ask a few questions about certain disciplinary situations around workplaces.

Get interview-ready with Top Ernst & Young Interview Questions

Interview Questionnaire 

7 Questions

  • Q1. They asked me only what i have mentioned in my resume. My first question was swap two numbers without using third variable
  • Q2. What is the difference between arrays and linked list. Which one is better
  • Ans. 

    Arrays are fixed in size and have contiguous memory, while linked lists are dynamic and have non-contiguous memory.

    • Arrays have constant time access to elements, while linked lists have linear time access.

    • Arrays are better for random access and searching, while linked lists are better for insertion and deletion.

    • Arrays use less memory for storing elements, while linked lists use more memory due to additional pointers.

    • Exa...

  • Answered by AI
  • Q3. Tell us about yourself?
  • Q4. How do you manage your tuition classes with your college hectic schedule?
  • Ans. 

    I prioritize my college schedule and plan my tuition classes accordingly.

    • I make a timetable for both college and tuition classes.

    • I communicate with my tuition teacher to adjust the timings if necessary.

    • I try to finish my college assignments and projects beforehand to avoid last-minute stress.

    • I utilize breaks between classes to attend tuition classes.

    • I make sure to take breaks and not overload myself with too many class...

  • Answered by AI
  • Q5. Will your parents allow you to work late at night and in weekends?
  • Q6. What have you done in your research paper?
  • Ans. 

    My research paper was on the impact of social media on mental health.

    • Conducted a literature review on existing research on the topic

    • Designed and distributed a survey to gather data on social media usage and mental health

    • Analyzed the survey data using statistical methods

    • Discussed the findings and implications in the paper

    • Included recommendations for future research

  • Answered by AI
  • Q7. What was your role in your minor project?
  • Ans. 

    I was responsible for designing and implementing the user interface of the minor project.

    • Designed the layout and flow of the user interface

    • Implemented the UI using HTML, CSS, and JavaScript

    • Collaborated with the team to ensure consistency in design and functionality

    • Conducted user testing and made necessary improvements based on feedback

  • Answered by AI

Interview Preparation Tips

Round: Test
Experience: Questions were quite tricky, but not difficult.
Most of the questions were from data structure like stacks, queues, sorting and complexity etc.
Tips: Do not think much about each question. They will totally depend on your general understanding about programming topics.
Duration: 1 hour minute
Total Questions: 100

Round: Group Discussion
Experience: It was great discussion. firstly, the EY team made us very comfortable and he told us his first experience about GD. He supported every contentest's opinion without any biasing and arguments. We were 15 students in our group discussion
Tips: Don't divert from your perspective about whatever topic you will get. Be calm and slow but effective
Don't talk out of topic
Be a good listener so as you can support or disagree with other's view
Duration: 30 minutes

Round: Technical Interview
Experience: I wrote the code for the same.
I answered the second question very well
Tips: Do not overwhelm your resume with too much of extra information

Round: HR Interview
Experience: Told.
Tips: Calm and be sensible.
Nervousness and fumbling may degrade your performance
Answer precise and relevant

Skills:
College Name: MSIT GGSIPU
Motivation: Guys do not preset your mind with any stuff of information before a day of your interview.
Keep your point precise and sensible. Like other MNCs, EY don't expect a fluenced english speaking candidate,instead they want to see how different you are from other in any aspect.
Funny Moments: I took a sound sleep in college auditorium after my GD selection, as they were conductiong interview one selecte

Skills evaluated in this interview

Interview Questionnaire 

4 Questions

  • Q1. A cricket puzzle
  • Q2. Sorting and Searching in real-life scenario puzzle
  • Q3. A couple of questions about electrical and electronics engineering (my branch)
  • Q4. A couple of questions about what I envision

Interview Preparation Tips

Round: Test
Experience: Enlightening. Really had to rack my brains for that hour. Made a lot of corrections in my own answers before confirming a choice. The coding section was amusing - some MCQ's had programs for each option and you had to 'choose' the right program. 
I still remember trembling with excitement/fear when my name was called out in the selected list.
Tips: Strengthen your basics. 
Timing is never a problem is you do not ponder over each obstacle. Be alert during the test - many questions require common sense over formulae. Read the rules: All the questions in this test were MCQ type without any negative marking. ANSWER ALL before the time ends.
Duration: 60 minutes
Total Questions: 60

Round: Group Discussion
Experience: A touchy topic as the moderators were (probably) parents and all your comments would reflect your own upbringing. Diplomacy was a major flavor in most of the arguments presented. 
The GD was conducted methodically and everyone was given at least one chance to state their views. I was digressing in the beginning but quickly took control of the situation by assessing the environment.
Tips: Be confident and rational in your thoughts.NOBODY likes a drama queen, please present your views with a polite intensity.
Listen to all who are present, you may not know everything.

Round: Other Interview
Experience: I apologize as I don't remember the questions specifically. 
The interviewer was exceptionally pleasant and was even nice enough to explain the intricate details of cricket (yes, I am an Indian and I am not a cricket lover :p). I imagine that he liked my method of solving and never-give-up attitude (I did not get the right answer in the first three tries). The rest of the queries simply probed into my basics. Had I been cramming up advanced theorems, I am sure I would have faltered. However, with little hesitation, I braved through all his questions. And I still thank goodness that I did. 
I remember the interviewer saying one statement distinctly - 'The rounds get easier as you keep qualifying'. Not sure how far that is applicable to you, but I sure can vouch for it. :)
Tips: Candor is a refreshing quality. Please imbibe it.
Spend some time with yourself. Think about who you are and what do you want to become. 
Do not be ashamed if money matters to you. Just back it up with virtues. :p
SMILE, you make the world a better place. Or at least the interview room. :D

General Tips: I have told most of what I could in the earlier sections... Last tip: Being nice is a choice. Choose it! :)
Skill Tips: The most fun way to acquire these skills is to interact with people, discuss ideas, solve random aptitude tests WITH a friend, etc. Do not feel embarrassed to ask someone for help.
If you want to go fast, go alone. If you want to go far, go together.
Skills: Analytical, Verbal, Coding, Diplomacy, Technical foundations (pertaining to your branch), General knowledge
College Name: VIT VELLORE
Motivation: As I studied Electrical and Electronics Engineering through my college years, I realized that I may not be the best man for it. Sure, anyone can get good grades - even I did. However, I believe that instead of hoarding up a core technical job and finding ways to be contented in it would make life a chore.
So, I looked into new pastures and EY came at the right time. As a brilliant platform for a career take-off, EY spans across economics, consulting and computer coding - which I am excited for. My time in college has indicated my preferences for these fields and I am now confident of my path.
Funny Moments: Placement time wasn't easy as the wait was enough to drive one crazy. My impatience for the company's arrival, the test results, the GD results and finally the interview results left little scope for humor.
Apart from a few inside jokes with friends, a handful of instances like running from one written test to another and tripping on the way; rambling away during the GD so much so that the moderator has to end explaining the topic again; stopping a chuckle during the interview but ending up in a violent bout of cough make me laugh even today...
Oh yes! The interviewer's face when I asked if ODI matches were the ones with 50 overs or what. Epic! XD

Associate Software Engineer interview

user image Akshay Hangaragi

posted on 14 Mar 2022

Interview questions from similar companies

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

I applied via campus placement at Motilal Nehru Institute National Institute of Technology (NIT), Allahabad and was interviewed in Dec 2023. There were 5 interview rounds.

Round 1 - Aptitude Test 

It was a MCQ type round with 3 coding questions. This round consisted of questions from aptitude, SQL knowledge and a sql command writing question, Programming basics, Web Technology, 2 coding questions. CS Subjects and some Situational based questions.

Round 2 - Group Discussion 

It was a Just a minute round in which a topic was given by the interviewer to speak upon.

Round 3 - Technical 

(1 Question)

  • Q1. What all technologies you feel will be fruitful in learning with regards to your future growth?
Round 4 - Technical 

(1 Question)

  • Q1. Explain NOSQL databases and their working?
  • Ans. 

    NOSQL databases are non-relational databases that provide flexible schema design and horizontal scalability.

    • NOSQL databases store data in key-value pairs, wide-column stores, document databases, or graph databases.

    • They are designed for handling large volumes of data and are highly scalable.

    • Examples include MongoDB, Cassandra, Redis, and Neo4j.

  • Answered by AI
Round 5 - HR 

(1 Question)

  • Q1. Describe the working of your projects and how did you manage with hectic load of your curriculum being a part of your project building which is from some other domain?

Interview Preparation Tips

Interview preparation tips for other job seekers - Just be thorough with whatever is mentioned in your resume and be confident in answering the question. If you are not sure about the answer don’t give it a try it may have a negative impact. Also you should have an in-depth knowledge of your projects.

Skills evaluated in this interview

Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Coding Test 

A simple coding problem given related to the project.

Round 2 - HR 

(1 Question)

  • Q1. HR asked general question like strength and weakness.

Ernst & Young Interview FAQs

How many rounds are there in Ernst & Young Associate Software Engineer interview?
Ernst & Young interview process usually has 3 rounds. The most common rounds in the Ernst & Young interview process are Coding Test, Technical and Resume Shortlist.
What are the top questions asked in Ernst & Young Associate Software Engineer interview?

Some of the top questions asked at the Ernst & Young Associate Software Engineer interview -

  1. What is the difference between arrays and linked list. Which one is bet...read more
  2. What are OOPs Concep...read more
  3. What is AVL tr...read more

Tell us how to improve this page.

Ernst & Young Associate Software Engineer Interview Process

based on 3 interviews

Interview experience

4.3
  
Good
View more
Ernst & Young Associate Software Engineer Salary
based on 298 salaries
₹3.4 L/yr - ₹7.3 L/yr
10% less than the average Associate Software Engineer Salary in India
View more details

Ernst & Young Associate Software Engineer Reviews and Ratings

based on 24 reviews

3.8/5

Rating in categories

3.9

Skill development

3.9

Work-life balance

3.1

Salary

3.8

Job security

4.0

Company culture

3.5

Promotions

3.6

Work satisfaction

Explore 24 Reviews and Ratings
Senior Consultant
15.6k salaries
unlock blur

₹9.1 L/yr - ₹29.5 L/yr

Consultant
11.9k salaries
unlock blur

₹6 L/yr - ₹19 L/yr

Manager
7.5k salaries
unlock blur

₹16.5 L/yr - ₹52 L/yr

Assistant Manager
6.4k salaries
unlock blur

₹9.5 L/yr - ₹29 L/yr

Associate Consultant
3.8k salaries
unlock blur

₹3.5 L/yr - ₹12 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.9
Compare
Did you find this page helpful?
Yes No
write
Share an Interview