Upload Button Icon Add office photos
Engaged Employer

i

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

Amdocs Verified Tick

Compare button icon Compare button icon Compare

Filter interviews by

Amdocs Devops Engineer Interview Questions and Answers

Updated 7 Dec 2024

11 Interview questions

A Devops Engineer was asked 7mo ago
Q. Describe the uses and flow of Terraform in your company.
Ans. 

Terraform automates infrastructure provisioning, ensuring consistency and scalability in our DevOps workflows.

  • Infrastructure as Code (IaC): We define our infrastructure using Terraform configuration files, enabling version control and collaboration.

  • Environment Management: Terraform allows us to create and manage multiple environments (dev, staging, production) with ease.

  • Resource Provisioning: We use Terraform to p...

A Devops Engineer was asked 7mo ago
Q. How do you configure a remote backend in Terraform?
Ans. 

Remote backend in Terraform allows state management in a centralized location, enabling collaboration and consistency.

  • Enables multiple team members to work on the same infrastructure without conflicts.

  • Common remote backends include AWS S3, Azure Blob Storage, and HashiCorp Consul.

  • Example: Using AWS S3 as a backend requires specifying the bucket and key in the Terraform configuration.

  • State locking can be implemente...

Devops Engineer Interview Questions Asked at Other Companies

asked in Siemens
Q1. How can you run a Docker command remotely on a Linux server witho ... read more
asked in Lentra AI
Q2. If you want to connect multiple VPCs, and you have two or three V ... read more
Q3. Reverse the String Problem Statement You are given a string STR w ... read more
asked in Nagarro
Q4. Guess The Hidden Number Problem Statement You are given an intege ... read more
Q5. What Docker command can you use to transfer an image from one mac ... read more
A Devops Engineer was asked
Q. What is OOPS in Java?
Ans. 

OOPs in Java stands for Object-Oriented Programming concepts which include inheritance, encapsulation, polymorphism, and abstraction.

  • OOPs concepts help in organizing and structuring code for better reusability and maintainability.

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

  • Encapsulation hides the internal state of an object and only exposes necessary functionalities.

  • Polymorphis...

A Devops Engineer was asked
Q. Write the code for a scripted and declarative pipeline.
Ans. 

Scripted and declarative pipelines in Jenkins for DevOps Engineer role

  • Scripted pipeline uses Groovy script syntax

  • Declarative pipeline uses a more structured format with predefined stages

  • Scripted pipeline example: node { stage('Build') { echo 'Building' } }

  • Declarative pipeline example: pipeline { agent any stages { stage('Build') { steps { echo 'Building' } } } }

What people are saying about Amdocs

View All
endlessdahi
3d
ex -
Syneos Health
Staffing firms calling for Amdocs, Wipro roles—is it legit?
I'm getting daily calls from staffing companies like Sage IT, Techilla, etc., claiming to work with big clients like Amdocs, Wipro, and Virtusa. They offer good packages on their payroll, saying companies like Virtusa are their clients. How do they provide services to companies that are already service-based? Are these offers genuine? They ask about experience, salary expectations, and even for the last 4 digits of my Aadhar, then send a confirmation email. I've canceled interviews before, but the calls keep coming. Can someone help me understand this?
Got a question about Amdocs?
Ask anonymously on communities.
A Devops Engineer was asked
Q. What are the two health checks performed when an EC2 instance is launched?
Ans. 

The two health checks when an EC2 instance is launched are System Status Checks and Instance Status Checks.

  • System Status Checks ensure that the underlying host system is healthy and reachable.

  • Instance Status Checks ensure that the instance is running properly and can be accessed.

  • Examples: System Status Checks may include checking network connectivity, while Instance Status Checks may include verifying system logs.

What are the roles & responsibilities of a Devops Engineer at Amdocs?

Infrastructure Management

  • Set up and maintain server environments
  • Monitor system performance and troubleshoot issues
  • Implement security measures to protect data

Read full roles & responsibilities

A Devops Engineer was asked
Q. What is VPC and what are its concepts?
Ans. 

VPC stands for Virtual Private Cloud, a virtual network dedicated to your AWS account.

  • VPC allows you to create a logically isolated section of the AWS Cloud where you can launch AWS resources.

  • You can define your own IP address range, create subnets, configure route tables, and network gateways within a VPC.

  • VPC provides security by allowing you to control inbound and outbound traffic to and from your instances.

  • You ...

Amdocs HR Interview Questions

48 questions and answers

Q. What motivates you to want to join this company?
Q. What was your role in your previous company?
Q. Tell me about your roles.
A Devops Engineer was asked
Q. What is the difference between IAM groups and IAM roles?
Ans. 

IAM groups are collections of IAM users, while IAM roles are permissions that can be assumed by users or services.

  • IAM groups are used to manage permissions for multiple users at once

  • IAM roles are used to delegate permissions to users or services

  • IAM groups can contain multiple users, while IAM roles can only be assumed by one entity at a time

Are these interview questions helpful?
A Devops Engineer was asked
Q. Write a Dockerfile.
Ans. 

A Dockerfile is a text document that contains all the commands a user could call on the command line to assemble an image.

  • Start with a base image

  • Use the RUN instruction to execute commands

  • Use the COPY instruction to add files from your Docker client’s current directory

  • Use the CMD instruction to specify the command to run when the container starts

A Devops Engineer was asked
Q. Write a Terraform script.
Ans. 

Writing a terraform script for infrastructure provisioning

  • Define provider and required variables

  • Create resources like instances, networks, and storage

  • Use modules for reusable code

  • Implement variables and outputs for flexibility

  • Leverage terraform state for tracking changes

A Devops Engineer was asked
Q. Explain the Kubernetes architecture.
Ans. 

Kubernetes architecture is a container orchestration platform that manages containerized applications across a cluster of nodes.

  • Kubernetes follows a master-slave architecture with a master node and multiple worker nodes.

  • Master node components include API server, scheduler, controller manager, and etcd.

  • Worker node components include kubelet, kube-proxy, and container runtime (e.g. Docker).

  • Nodes communicate with eac...

Amdocs Devops Engineer Interview Experiences

8 interviews found

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

I applied via Company Website and was interviewed in Jan 2024. There was 1 interview round.

Round 1 - Technical 

(3 Questions)

  • Q1. What is VPC and its concepts?
  • Ans. 

    VPC stands for Virtual Private Cloud, a virtual network dedicated to your AWS account.

    • VPC allows you to create a logically isolated section of the AWS Cloud where you can launch AWS resources.

    • You can define your own IP address range, create subnets, configure route tables, and network gateways within a VPC.

    • VPC provides security by allowing you to control inbound and outbound traffic to and from your instances.

    • You can c...

  • Answered by AI
  • Q2. What are the two health checks when EC2 instance is launched?
  • Ans. 

    The two health checks when an EC2 instance is launched are System Status Checks and Instance Status Checks.

    • System Status Checks ensure that the underlying host system is healthy and reachable.

    • Instance Status Checks ensure that the instance is running properly and can be accessed.

    • Examples: System Status Checks may include checking network connectivity, while Instance Status Checks may include verifying system logs.

  • Answered by AI
  • Q3. What is difference between IAM group and IAM roles?

Skills evaluated in this interview

Devops Engineer Interview Questions & Answers

user image Aditya Raj

posted on 21 Jun 2024

Interview experience
5
Excellent
Difficulty level
Easy
Process Duration
2-4 weeks
Result
Selected Selected

I applied via Walk-in and was interviewed in May 2024. There were 2 interview rounds.

Round 1 - Coding Test 

Array,String,Data Structure, java ,oops

Round 2 - One-on-one 

(2 Questions)

  • Q1. What is oopsin java?
  • Q2. What is link list?

Skills evaluated in this interview

Devops Engineer Interview Questions & Answers

user image Parthiban K

posted on 24 Jul 2024

Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(2 Questions)

  • Q1. About EKS in AWS
  • Q2. About ECS in AWS
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
-
Result
Selected Selected
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 - Technical 

(2 Questions)

  • Q1. Explain the Kubernetes architecture
  • Ans. 

    Kubernetes architecture is a container orchestration platform that manages containerized applications across a cluster of nodes.

    • Kubernetes follows a master-slave architecture with a master node and multiple worker nodes.

    • Master node components include API server, scheduler, controller manager, and etcd.

    • Worker node components include kubelet, kube-proxy, and container runtime (e.g. Docker).

    • Nodes communicate with each oth...

  • Answered by AI
  • Q2. Write the terraform script
Round 3 - Technical 

(1 Question)

  • Q1. Write the dockerfile
Round 4 - HR 

(1 Question)

  • Q1. What are your salary expectations

Interview Preparation Tips

Interview preparation tips for other job seekers - Work hard

Skills evaluated in this interview

Devops Engineer Interview Questions & Answers

user image Kanchan Prasad Sinha

posted on 29 Feb 2024

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

(1 Question)

  • Q1. Write down the code of scripted and declarative pipeline

Skills evaluated in this interview

Interview experience
3
Average
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Company Website and was interviewed before Dec 2023. There were 2 interview rounds.

Round 1 - Coding Test 

Medium DSA questions

Round 2 - Technical 

(2 Questions)

  • Q1. Terraform uses and flow in your company
  • Q2. Remote backend in terraform?

Interview Preparation Tips

Interview preparation tips for other job seekers - Be well prepared for the interviews.

Skills evaluated in this interview

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

I applied via Referral and was interviewed before Mar 2023. There were 2 interview rounds.

Round 1 - Technical 

(1 Question)

  • Q1. Mostly related to kubernetes docker and other devops tools fundamentals
Round 2 - HR 

(1 Question)

  • Q1. Salary negotiations, growth etc

Interview Questionnaire 

2 Questions

  • Q1. Scenario based questions about AWS services
  • Q2. Working of Terraform , Packer ,Puppet
  • Ans. 

    Terraform, Packer, and Puppet are tools used in DevOps for infrastructure automation and configuration management.

    • Terraform is used for infrastructure as code and automates the provisioning of infrastructure resources.

    • Packer is used for creating machine images for multiple platforms from a single source configuration.

    • Puppet is used for configuration management and automates the deployment and management of software and...

  • Answered by AI

Skills evaluated in this interview

Interview questions from similar companies

I applied via Naukri.com and was interviewed in Dec 2019. There were 4 interview rounds.

Interview Questionnaire 

1 Question

  • Q1. DevOps methodology, Cloud computing, Java, role in the previous project

Interview Preparation Tips

Interview preparation tips for other job seekers - Sticks to the basics and always have command on the technology and the subject which you have mentioned on the resume, as most of the questions will be from that part itself.
Interview experience
5
Excellent
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Not Selected

I appeared for an interview in Jul 2025, where I was asked the following questions.

  • Q1. Tell me about yourself
  • Q2. What is job Expected
  • Ans. 

    A DevOps Engineer is responsible for bridging development and operations to enhance collaboration and efficiency in software delivery.

    • Implement CI/CD pipelines to automate software deployment processes.

    • Monitor system performance and troubleshoot issues proactively.

    • Collaborate with development teams to ensure smooth integration of new features.

    • Utilize cloud services (e.g., AWS, Azure) for scalable infrastructure managem...

  • Answered by AI
  • Q3. Salary Expected

Interview Preparation Tips

Interview preparation tips for other job seekers - Carrar growth

Amdocs Interview FAQs

How many rounds are there in Amdocs Devops Engineer interview?
Amdocs interview process usually has 1-2 rounds. The most common rounds in the Amdocs interview process are Technical, HR and Coding Test.
How to prepare for Amdocs Devops Engineer 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 Amdocs. The most common topics and skills that interviewers at Amdocs expect are Automation, microsoft, Linux, Python and Monitoring.
What are the top questions asked in Amdocs Devops Engineer interview?

Some of the top questions asked at the Amdocs Devops Engineer interview -

  1. What are the two health checks when EC2 instance is launch...read more
  2. What is difference between IAM group and IAM rol...read more
  3. Working of Terraform , Packer ,Pupp...read more

Tell us how to improve this page.

Overall Interview Experience Rating

3.9/5

based on 9 interview experiences

Difficulty level

Easy 20%
Moderate 80%

Duration

Less than 2 weeks 75%
2-4 weeks 25%
View more
Amdocs Devops Engineer Salary
based on 754 salaries
₹8.2 L/yr - ₹17 L/yr
40% more than the average Devops Engineer Salary in India
View more details

Amdocs Devops Engineer Reviews and Ratings

based on 61 reviews

3.6/5

Rating in categories

3.2

Skill development

3.6

Work-life balance

3.1

Salary

3.2

Job security

3.6

Company culture

2.7

Promotions

3.2

Work satisfaction

Explore 61 Reviews and Ratings
Software Developer
8.6k salaries
unlock blur

₹9.2 L/yr - ₹15.6 L/yr

Software Engineer
2k salaries
unlock blur

₹7.7 L/yr - ₹16.2 L/yr

Softwaretest Engineer
1.8k salaries
unlock blur

₹5.7 L/yr - ₹13.9 L/yr

Functional Test Engineer
1.2k salaries
unlock blur

₹5.2 L/yr - ₹12.5 L/yr

Associate Software Engineer
1k salaries
unlock blur

₹4.8 L/yr - ₹10 L/yr

Explore more salaries
Compare Amdocs with

TCS

3.5
Compare

IBM

3.9
Compare

Oracle

3.6
Compare

Carelon Global Solutions

3.8
Compare
write
Share an Interview