Ernst & Young (EY) interview experience Real time questions & tips from candidates to crack your interview

Senior Analyst

Ernst & Young (EY)
upvote
share-icon
2 rounds | 2 Coding problems

Interview preparation journey

expand-icon
Journey
I started my coding journey from the second year of graduation. I asked and consulted seniors on how to start in my coding journey. I started with DSA first. I was not consistent initially, but in my seventh semester, I started practising DSA on a regular basis. I maintained a streak of 10-15 questions daily. In my last semester, I learnt web development and did some projects as well that helped me enhance my resume. Finally, I was ready to apply in different companies for placements.
Application story
This company visited our campus for placement. It first did the shortlisting based on resume and CGPA. After that, an online assessment was conducted, and on that basis, 20 candidates were shortlisted for further rounds.
Why selected/rejected for the role?
gave correct and optimized solutions for almost all the questions that were asked in the coding rounds. I also built the optimal solution starting from the brute force algorithm which also added to my points. Communication is the key to selection.
Preparation
Duration: 2 months
Topics: Data Structures, Pointers, OOPS, System Design, Algorithms, Dynamic Programming
Tip
Tip

Tip 1 : practice more questions from hackerrank and leet code 
Tip 2 : do your projects and patented will also work fine 
Tip 3 : gain internship experiences

Application process
Where: Campus
Eligibility: 65 percent in 10th,11th and 12th, and gpa should be 7.5 and above in college with no standing arrears
Resume Tip
Resume tip

Tip 1 : have as many internship and work experience you can get in any company related technology.
Tip 2 : everything you are putting on resume, you should be able to explain everything.

Interview rounds

01
Round
Easy
Online Coding Test
Duration90 minutes
Interview date1 Dec 2021
Coding problem1

12pm -12:30pm was the timing 
online coding round was smooth, no bugs in there portal , questions were basically mcq and 2 coding question .

1. Reverse Number

Easy
10m average time
90% success
0/40
Asked in companies
Wells FargoProtiumErnst & Young (EY)

Ninja is feeling very bored and wants to try something new. So, he decides to find the reverse of a given number. But he cannot do it on his own and needs your help.

Note:

If a number has trailing zeros, then its reverse will not include them. For e.g., the reverse of 10400 will be 401 instead of 00401.
Problem approach

#include
int main()
{
//Initialization of variables where rev='reverse=0'
int number, rev = 0,store, left;

//input a numbers for user
printf("Enter the number\n");
scanf("%d", &number);

store= number;
//use this loop for check true condition
while (number > 0)
{
//left is for remider are left
left= number%10;

//for reverse of no.
rev = rev * 10 + left;

//number /= 10;
number=number/10;

}
//To show the user value
printf("Given number = %d\n",store);

//after reverse show numbers
printf("Its reverse is = %d\n", rev);

return 0;
}

Try solving now
02
Round
Easy
HR Round
Duration15 minutes
Interview date10 Dec 2021
Coding problem1

There were different timings for the applicants, secondly there were group of 5 company HR who was taking the interview of 10 applicants each . 
timings were in the morning
HR mainly asks about extra curricular, hobbies, strength and weakness, performances , why we chose to apply in the company and what is the company's aim.

1. Basic HR Questions

HR mainly asks about extra curricular, hobbies, strength and weakness, performances , why we chose to apply in the company and what is the company's aim.

Problem approach

Tip 1 : prepare early regarding the company's net worth, work, approach and work life balance.
Tip 2 : Know your strengths, weaknesses and what extra curricular you have done before.
Tip 3 : study the company's profile thoroughly and analyze why you chose this role .

Here's your problem of the day

Solving this problem will increase your chance to get selected in this company

Skill covered: Programming

How do you remove whitespace from the start of a string?

Choose another skill to practice
Similar interview experiences
company logo
Senior Analyst
4 rounds | 3 problems
Interviewed by Ernst & Young (EY)
3322 views
1 comments
0 upvotes
company logo
Senior Analyst
2 rounds | 2 problems
Interviewed by Ernst & Young (EY)
1082 views
0 comments
0 upvotes
company logo
Analyst
3 rounds | 4 problems
Interviewed by Ernst & Young (EY)
2196 views
1 comments
0 upvotes
company logo
Senior Analyst
4 rounds | 7 problems
Interviewed by Ernst & Young (EY)
1331 views
3 comments
0 upvotes