Cracking the Accenture DevOps Interview
Accenture has a massive global cloud practice. Their DevOps roles focus heavily on migrating legacy enterprise clients to the cloud (AWS/Azure) and setting up robust, secure CI/CD pipelines.
The Interview Stages
- Technical Round 1 (Linux, Git, & CI/CD): The fundamentals.
- Technical Round 2 (Cloud & IaC): AWS/Azure and Terraform/Ansible.
- Managerial Round: Agile workflows, client management, and architecture.
Round 1: Linux & CI/CD Fundamentals
- Linux: "How do you find which process is consuming the most port 8080 traffic?" (Expect questions on
netstat,grep,awk, andtop). - Git: Explain resolving a merge conflict or the difference between
git mergeandgit rebase. - Jenkins: "Explain how you set up a Jenkins Declarative Pipeline. How do you securely pass AWS credentials into a Jenkins job?"
Round 2: Infrastructure as Code (IaC) & Cloud
Accenture relies heavily on Terraform.
- Terraform: "What is the Terraform State file? Why is it dangerous to store it locally, and how do you implement remote state locking?" (Discuss S3 and DynamoDB).
- Docker/Kubernetes: "Explain how a Docker container is different from a Virtual Machine. How do you expose a Kubernetes pod to the external internet?"
Round 3: Managerial and Architecture
- Scenario: "A client wants to migrate a monolithic Java application to AWS. Walk me through the high-level architecture and the DevOps tools you would use."
- Focus: Discuss containerizing the app (Docker), pushing to ECR, deploying via EKS (Kubernetes), and using Terraform to build the VPC and security groups.
Pro Tip: Security is paramount in consulting. Mentioning DevSecOps—like integrating SonarQube for code quality or Trivy for container vulnerability scanning into your Jenkins pipeline—will heavily impress the interviewers.



