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 Technical DevOps Lead Interview Questions, Process, and Tips

Updated 18 Jul 2024

Ernst & Young Technical DevOps Lead Interview Experiences

1 interview found

Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Referral and was interviewed in Jun 2024. There were 3 interview rounds.

Round 1 - Technical 

(2 Questions)

  • Q1. How to secure kubernetes cluster and application hosted. What security measures you will take?
  • Ans. 

    Securing a Kubernetes cluster involves implementing various security measures to protect both the cluster and the applications hosted on it.

    • Implement RBAC (Role-Based Access Control) to control access to resources within the cluster

    • Enable network policies to restrict communication between pods

    • Use pod security policies to define security settings for pods

    • Regularly update Kubernetes and application components to patch se...

  • Answered by AI
  • Q2. How do you make a api call through powershell
  • Ans. 

    You can make an API call through PowerShell using the Invoke-RestMethod cmdlet.

    • Use the Invoke-RestMethod cmdlet to make a GET request to the API endpoint

    • Specify the API endpoint URL and any required headers or parameters

    • Capture the response in a variable for further processing

  • Answered by AI
Round 2 - Technical 

(3 Questions)

  • Q1. Write an ansible playbook for windows servers to fetch local users details and send an export through email.
  • Ans. 

    Ansible playbook to fetch local users details on Windows servers and send export through email

    • Use win_command module to run 'net user' command and fetch local users details

    • Use win_shell module to send the export through email using PowerShell script

    • Ensure proper authentication and email configuration in playbook

  • Answered by AI
  • Q2. Write jenkins pipeline
  • Ans. 

    Jenkins pipeline for automating CI/CD processes

    • Define pipeline in Jenkinsfile

    • Use stages to break down the process

    • Utilize steps for specific actions like building, testing, deploying

    • Leverage plugins for additional functionality

    • Implement error handling and notifications

  • Answered by AI
  • Q3. Docker image and write docker file. This was an situation based questions
Round 3 - HR 

(1 Question)

  • Q1. Basic HR discussion about salary

Interview Preparation Tips

Interview preparation tips for other job seekers - All the interviews were setup on single day and process was smooth. I have 2 tech and final hr round. Interviews were mostly related to skill sets mentioned in your resume. Have good basic handson on the skill sets you mentioned in your resume.

Skills evaluated in this interview

Interview questions from similar companies

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

(2 Questions)

  • Q1. What is Persistent volume
  • Ans. 

    Persistent volume is a storage volume that exists beyond the life cycle of a container.

    • Persistent volumes are used to store data that needs to persist even if the container is deleted or recreated.

    • They are decoupled from the container and can be attached to different containers.

    • Examples include network-attached storage (NAS), cloud storage, and local storage.

    • Persistent volumes are managed by the storage administrator r

  • Answered by AI
  • Q2. Volumein kubernetes which can be attached and deattached
  • Ans. 

    PersistentVolumes (PVs) in Kubernetes can be attached and detached.

    • PersistentVolumes (PVs) can be attached to pods using PersistentVolumeClaims (PVCs).

    • PVs can be detached from pods when no longer needed.

    • Examples of PV types include NFS, iSCSI, and AWS EBS.

  • Answered by AI
Round 2 - Technical 

(1 Question)

  • Q1. Question on cloud and kubernetes
Round 3 - HR 

(1 Question)

  • Q1. Nothing much just basic hr question

Skills evaluated in this interview

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

(1 Question)

  • Q1. AWS services, Terraform commands , Kubernetes concepts, Linux commands
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
Not Selected

I was interviewed in Nov 2023.

Round 1 - Technical 

(3 Questions)

  • Q1. Related to DevOps tools
  • Q2. Terraform modules
  • Q3. AWS cloud related servics
Round 2 - Technical 

(1 Question)

  • Q1. In depth question on Kubernetes, Terraform, AWS
Interview experience
3
Average
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via LinkedIn and was interviewed in Jan 2023. 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 tips
Round 2 - HR 

(2 Questions)

  • Q1. How proficient you are with terraform
  • Q2. Have you managed such devops infra before
  • Ans. 

    Yes, I have managed devops infra in my previous roles.

    • I have experience managing infrastructure using tools like Ansible, Terraform, and Kubernetes.

    • I have also worked on building CI/CD pipelines using Jenkins and GitLab.

    • In my previous role, I managed a large-scale AWS infrastructure for a SaaS product.

    • I have experience with monitoring tools like Prometheus and Grafana.

    • I have also worked on implementing security best pr

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Wow this is such a great place to ask for anonymous reviews

Skills evaluated in this interview

I applied via Recruitment Consulltant and was interviewed in May 2022. 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 - One-on-one 

(3 Questions)

  • Q1. Detailed one to one topic on AWS, azure, kubernetes,DevOps,Jenkins,Ansible,postman ,soap ui
  • Q2. Questions about postman api and soap ui
  • Q3. Question about azure ,AWS,Terraform scenario based
Round 3 - Behavioral 

(1 Question)

  • Q1. Where do you see yourself in 5 years at KPMG
Round 4 - HR 

(1 Question)

  • Q1. Salary Negotiation ,About yourself basically analysing your speaking skills

Interview Preparation Tips

Interview preparation tips for other job seekers - Be confident, learn about long before sitting for because questions would be ask about your knowledge on kpmg.

I applied via campus placement at Netaji Subhas Institute of Technology (NSIT) and was interviewed in Jul 2022. There were 4 interview rounds.

Round 1 - Resume Shortlist 
Pro Tip by AmbitionBox:
Properly align and format text in your resume. A recruiter will have to spend more time reading poorly aligned text, leading to high chances of rejection.
View all tips
Round 2 - Technical 

(2 Questions)

  • Q1. Merge 2 sorted array
  • Ans. 

    Merging 2 sorted arrays into a single sorted array.

    • Create a new array to store the merged array

    • Compare the first elements of both arrays and add the smaller one to the new array

    • Repeat until one of the arrays is empty, then add the remaining elements of the other array

    • Return the merged array

  • Answered by AI
  • Q2. Puzzle like water problem
Round 3 - Technical 

(1 Question)

  • Q1. Brief discussion about project
Round 4 - HR 

(1 Question)

  • Q1. Your background and hobbies

Interview Preparation Tips

Interview preparation tips for other job seekers - Good knowledge of DSA and project you are currently working upon.

Skills evaluated in this interview

Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
No response

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

Round 1 - Technical 

(2 Questions)

  • Q1. VPC architecture
  • Q2. End to end pipeline flow
  • Ans. 

    End to end pipeline flow refers to the process of automating the deployment of software from development to production.

    • Start with code development and version control

    • Move to continuous integration for automated testing

    • Utilize continuous delivery for deployment to staging environments

    • Implement continuous deployment for automatic deployment to production

    • Monitor and analyze performance and feedback for continuous improvem

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

(2 Questions)

  • Q1. Cycle of devops
  • Ans. 

    The cycle of DevOps involves continuous integration, continuous delivery, and continuous deployment to streamline software development and deployment processes.

    • Continuous integration: Developers regularly merge their code changes into a central repository, where automated tests are run to detect integration issues.

    • Continuous delivery: Code changes are automatically built, tested, and prepared for release to production,...

  • Answered by AI
  • Q2. Branches of deployment
  • Ans. 

    Branches of deployment refer to different environments where code changes are deployed for testing and production.

    • Development branch - where developers work on new features and bug fixes

    • Testing branch - where code changes are tested before being merged into production

    • Staging branch - a replica of the production environment used for final testing before deployment

    • Production branch - where the final code changes are depl...

  • Answered by AI

Skills evaluated in this interview

I applied via Referral and was interviewed in Sep 2021. There were 2 interview rounds.

Round 1 - Technical 

(1 Question)

  • Q1. This was more on azure devops, Terraform, powershell and azure
Round 2 - Technical 

(1 Question)

  • Q1. Technical round with manger. Most of the questions were scenario based

Interview Preparation Tips

Interview preparation tips for other job seekers - Most of the questions were practical. If you really have the work experience you can easily crack it

Ernst & Young Interview FAQs

How many rounds are there in Ernst & Young Technical DevOps Lead interview?
Ernst & Young interview process usually has 3 rounds. The most common rounds in the Ernst & Young interview process are Technical and HR.
What are the top questions asked in Ernst & Young Technical DevOps Lead interview?

Some of the top questions asked at the Ernst & Young Technical DevOps Lead interview -

  1. How to secure kubernetes cluster and application hosted. What security measures...read more
  2. Write an ansible playbook for windows servers to fetch local users details and ...read more
  3. How do you make a api call through powersh...read more

Tell us how to improve this page.

Ernst & Young Technical DevOps Lead Interview Process

based on 1 interview

Interview experience

4
  
Good
View more

Interview Questions from Similar Companies

TCS Interview Questions
3.7
 • 10.4k Interviews
Accenture Interview Questions
3.9
 • 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.4k Interviews
PwC Interview Questions
3.4
 • 1.4k Interviews
KPMG India Interview Questions
3.5
 • 796 Interviews
ZS Interview Questions
3.4
 • 481 Interviews
BCG Interview Questions
3.8
 • 195 Interviews
View all

Ernst & Young Technical DevOps Lead Reviews and Ratings

based on 1 review

1.0/5

Rating in categories

3.0

Skill development

1.0

Work-life balance

2.0

Salary

4.0

Job security

1.0

Company culture

1.0

Promotions

1.0

Work satisfaction

Explore 1 Review and Rating
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