Upload Button Icon Add office photos

Filter interviews by

Comcast India Engineering Center Devops Engineer Interview Questions and Answers

Updated 14 May 2025

10 Interview questions

A Devops Engineer was asked 1mo ago
Q. Write an Ansible Playbook to rotate the password of a virtual machine.
Ans. 

Ansible Playbook to automate password rotation for a virtual machine securely.

  • Define the playbook structure with hosts and tasks.

  • Use the 'user' module to change the password: 'user: name=username password=newpassword'.

  • Utilize 'ansible-vault' to encrypt sensitive data like passwords.

  • Example task: - name: Rotate password user: name: myuser password: '{{ new_password }}'

  • Ensure to test the playbook in a safe...

A Devops Engineer was asked 1mo ago
Q. What are the best practices for writing Dockerfiles?
Ans. 

Best practices for writing Dockerfiles ensure efficient, secure, and maintainable container images.

  • Use a minimal base image (e.g., 'FROM alpine' instead of 'FROM ubuntu') to reduce size.

  • Leverage multi-stage builds to keep final images small and only include necessary artifacts.

  • Order instructions from least to most frequently changed to optimize caching (e.g., COPY package.json first).

  • Use specific tags for base ima...

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 the difference between a ReplicaSet, a DaemonSet, and a Deployment?
Ans. 

ReplicaSet ensures a specified number of replicas of a pod are running, Deployment manages ReplicaSets, DaemonSet ensures a pod runs on all nodes.

  • ReplicaSet: ensures a specified number of replicas of a pod are running

  • Deployment: manages ReplicaSets and provides declarative updates for Pods and ReplicaSets

  • DaemonSet: ensures a pod runs on all (or some) nodes in a cluster

  • Example: ReplicaSet can be used to ensure high...

A Devops Engineer was asked
Q. How do you grant access to a specific S3 bucket?
Ans. 

To give access to a particular S3 bucket, create an IAM user with appropriate permissions and policies.

  • Create an IAM user with access to the S3 bucket

  • Attach policies to the IAM user that allow access to the S3 bucket

  • Ensure that the IAM user has the necessary permissions to perform the required actions on the S3 bucket

  • Use AWS CLI or AWS Management Console to grant access to the IAM user

A Devops Engineer was asked
Q. How do you configure port forwarding in a proxy?
Ans. 

Port forwarding in proxy involves redirecting traffic from one port to another through the proxy server.

  • Port forwarding is useful for accessing services on a remote network through a proxy server.

  • It can be done using tools like SSH tunneling or configuring the proxy server to forward traffic.

  • For example, to access a web server on port 80 of a remote network through a proxy server, the proxy server can be configure...

A Devops Engineer was asked
Q. Describe your experience using SonarQube and explain its purpose.
Ans. 

SonarQube is a tool for continuous code quality inspection and management.

  • SonarQube analyzes code for bugs, vulnerabilities, and code smells.

  • It provides detailed reports and metrics on code quality.

  • It integrates with CI/CD pipelines for continuous code inspection.

  • SonarQube supports multiple programming languages including Java, C#, Python, and more.

  • It can be used to enforce coding standards and best practices acro...

A Devops Engineer was asked
Q. How do you connect AWS with GCP?
Ans. 

AWS and GCP can be connected using various methods such as VPN, direct peering, or third-party tools.

  • One way is to use VPN to establish a secure connection between the two cloud platforms.

  • Another way is to use direct peering which allows for a private connection between the two platforms.

  • Third-party tools like Equinix Cloud Exchange Fabric can also be used to connect AWS and GCP.

  • It is important to consider factors...

Are these interview questions helpful?
A Devops Engineer was asked
Q. How do you use a script to schedule backups on a server?
Ans. 

To schedule backups in a server using a script, you can use a cron job.

  • Create a backup script that includes the necessary commands to backup the desired files or directories.

  • Set the script to be executable using the chmod command.

  • Create a cron job using the crontab command that specifies the frequency and timing of the backups.

  • Test the backup script and cron job to ensure they are working correctly.

A Devops Engineer was asked
Q. What is the difference between a classic network load balancer and an application load balancer?
Ans. 

Classic network load balancer operates at transport layer while app load balancer operates at application layer.

  • Classic network load balancer distributes traffic based on IP address and port number.

  • App load balancer distributes traffic based on URL, host or path.

  • Classic network load balancer supports TCP and SSL protocols.

  • App load balancer supports HTTP and HTTPS protocols.

  • App load balancer provides advanced routi...

A Devops Engineer was asked
Q. Explain SDLC , explain waterfall model, Write any code in Java
Ans. 

Explanation of SDLC, waterfall model and Java code

  • SDLC stands for Software Development Life Cycle and is a process followed for software development

  • Waterfall model is a linear sequential approach to software development

  • Java code example: System.out.println("Hello World!");

Comcast India Engineering Center Devops Engineer Interview Experiences

3 interviews found

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

I applied via Naukri.com and was interviewed in Aug 2022. There were 3 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 - Technical 

(4 Questions)

  • Q1. How to connect aws with gcp
  • Ans. 

    AWS and GCP can be connected using various methods such as VPN, direct peering, or third-party tools.

    • One way is to use VPN to establish a secure connection between the two cloud platforms.

    • Another way is to use direct peering which allows for a private connection between the two platforms.

    • Third-party tools like Equinix Cloud Exchange Fabric can also be used to connect AWS and GCP.

    • It is important to consider factors like...

  • Answered by AI
  • Q2. Sonaqube usage and what it does
  • Ans. 

    SonarQube is a tool for continuous code quality inspection and management.

    • SonarQube analyzes code for bugs, vulnerabilities, and code smells.

    • It provides detailed reports and metrics on code quality.

    • It integrates with CI/CD pipelines for continuous code inspection.

    • SonarQube supports multiple programming languages including Java, C#, Python, and more.

    • It can be used to enforce coding standards and best practices across te...

  • Answered by AI
  • Q3. Kubernetes manifest files related
  • Q4. Logging and monitoring tools related
Round 3 - Technical 

(6 Questions)

  • Q1. Diff b/w replicaset,daemonset and deployment
  • Ans. 

    ReplicaSet ensures a specified number of replicas of a pod are running, Deployment manages ReplicaSets, DaemonSet ensures a pod runs on all nodes.

    • ReplicaSet: ensures a specified number of replicas of a pod are running

    • Deployment: manages ReplicaSets and provides declarative updates for Pods and ReplicaSets

    • DaemonSet: ensures a pod runs on all (or some) nodes in a cluster

    • Example: ReplicaSet can be used to ensure high avai...

  • Answered by AI
  • Q2. Port fordwaring in proxy
  • Ans. 

    Port forwarding in proxy involves redirecting traffic from one port to another through the proxy server.

    • Port forwarding is useful for accessing services on a remote network through a proxy server.

    • It can be done using tools like SSH tunneling or configuring the proxy server to forward traffic.

    • For example, to access a web server on port 80 of a remote network through a proxy server, the proxy server can be configured to ...

  • Answered by AI
  • Q3. Diff between classic network and app loadbalancer
  • Ans. 

    Classic network load balancer operates at transport layer while app load balancer operates at application layer.

    • Classic network load balancer distributes traffic based on IP address and port number.

    • App load balancer distributes traffic based on URL, host or path.

    • Classic network load balancer supports TCP and SSL protocols.

    • App load balancer supports HTTP and HTTPS protocols.

    • App load balancer provides advanced routing fe...

  • Answered by AI
  • Q4. How do use script to schedule backup in server
  • Ans. 

    To schedule backups in a server using a script, you can use a cron job.

    • Create a backup script that includes the necessary commands to backup the desired files or directories.

    • Set the script to be executable using the chmod command.

    • Create a cron job using the crontab command that specifies the frequency and timing of the backups.

    • Test the backup script and cron job to ensure they are working correctly.

  • Answered by AI
  • Q5. How to give access to particula s3 bucket
  • Ans. 

    To give access to a particular S3 bucket, create an IAM user with appropriate permissions and policies.

    • Create an IAM user with access to the S3 bucket

    • Attach policies to the IAM user that allow access to the S3 bucket

    • Ensure that the IAM user has the necessary permissions to perform the required actions on the S3 bucket

    • Use AWS CLI or AWS Management Console to grant access to the IAM user

  • Answered by AI
  • Q6. Few scenario based questions in k8s

Interview Preparation Tips

Interview preparation tips for other job seekers - deep understanding of concepts in each skill and key skill help u to get job here

Skills evaluated in this interview

Devops Engineer Interview Questions & Answers

user image gautham girish

posted on 14 May 2025

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

I appeared for an interview before May 2024, where I was asked the following questions.

  • Q1. Best practice to write docker file
  • Ans. 

    Best practices for writing Dockerfiles ensure efficient, secure, and maintainable container images.

    • Use a minimal base image (e.g., 'FROM alpine' instead of 'FROM ubuntu') to reduce size.

    • Leverage multi-stage builds to keep final images small and only include necessary artifacts.

    • Order instructions from least to most frequently changed to optimize caching (e.g., COPY package.json first).

    • Use specific tags for base images (...

  • Answered by AI
  • Q2. Ansible Plabook to rotate password of s vm
  • Ans. 

    Ansible Playbook to automate password rotation for a virtual machine securely.

    • Define the playbook structure with hosts and tasks.

    • Use the 'user' module to change the password: 'user: name=username password=newpassword'.

    • Utilize 'ansible-vault' to encrypt sensitive data like passwords.

    • Example task: - name: Rotate password user: name: myuser password: '{{ new_password }}'

    • Ensure to test the playbook in a safe envi...

  • Answered by AI
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Campus Placement and was interviewed in Nov 2022. There were 4 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 - Coding Test 

Two Coding questions and MCQs in SQL and aptitude

Round 3 - Technical 

(1 Question)

  • Q1. Explain SDLC , explain waterfall model, Write any code in Java
  • Ans. 

    Explanation of SDLC, waterfall model and Java code

    • SDLC stands for Software Development Life Cycle and is a process followed for software development

    • Waterfall model is a linear sequential approach to software development

    • Java code example: System.out.println("Hello World!");

  • Answered by AI
Round 4 - HR 

(1 Question)

  • Q1. Tell me about yourself.Weakness and strengths
  • Ans. 

    I am a DevOps Engineer with strong technical skills and a passion for automation and problem-solving.

    • Strong knowledge of cloud platforms like AWS and Azure

    • Proficient in scripting languages like Python and Bash

    • Experience with configuration management tools like Ansible and Puppet

    • Ability to troubleshoot and resolve complex technical issues

    • Excellent communication and collaboration skills

    • Detail-oriented and able to priorit...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Just be confident . Try to answer all the questions

Skills evaluated in this interview

Top trending discussions

View All
Interview Tips & Stories
6d (edited)
a team lead
Why are women still asked such personal questions in interview?
I recently went for an interview… and honestly, m still trying to process what just happened. Instead of being asked about my skills, experience, or how I could add value to the company… the questions took a totally unexpected turn. The interviewer started asking things like When are you getting married? Are you engaged? And m sure, if I had said I was married, the next question would’ve been How long have you been married? What does my personal life have to do with the job m applying for? This is where I felt the gender discrimination hit hard. These types of questions are so casually thrown at women during interviews but are they ever asked to men? No one asks male candidates if they’re planning a wedding or how old their kids are. So why is it okay to ask women? Can we please stop normalising this kind of behaviour in interviews? Our careers shouldn’t be judged by our relationship status. Period.
Got a question about Comcast India Engineering Center?
Ask anonymously on communities.

Interview questions from similar companies

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

(1 Question)

  • Q1. Question on the skills that you have written in resume
Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Aptitude Test 

English and Reasoning

I applied via Naukri.com and was interviewed in Jul 2021. There were 3 interview rounds.

Interview Questionnaire 

1 Question

  • Q1. They focused on my old projects and asked questions about the projects and technologies were used.

Interview Preparation Tips

Interview preparation tips for other job seekers - Need to know end to end architecture, implementation and deployment of your project. In between they may ask questions in BASH, Python etc.,
Interview experience
5
Excellent
Difficulty level
Hard
Process Duration
2-4 weeks
Result
Selected Selected

I appeared for an interview before May 2024, where I was asked the following questions.

  • Q1. How you can Be prompt in pipeline concept
  • Ans. 

    Being prompt in pipeline concepts involves timely execution, monitoring, and automation to ensure efficient DevOps practices.

    • Implement Continuous Integration (CI) to automate code testing and integration, reducing manual intervention.

    • Use Continuous Deployment (CD) to automatically deploy code changes to production, ensuring faster delivery.

    • Monitor pipeline performance with tools like Jenkins or GitLab CI to quickly ide...

  • Answered by AI
  • Q2. How do you practice resolving real-world Kubernetes (K8s) production issues?
  • Ans. 

    I practice resolving Kubernetes issues through hands-on labs, simulations, and real-world scenarios to enhance my troubleshooting skills.

    • Set up a local Kubernetes cluster using tools like Minikube or Kind to simulate production environments.

    • Participate in Kubernetes troubleshooting exercises or workshops to gain practical experience.

    • Use monitoring tools like Prometheus and Grafana to visualize and diagnose issues in re...

  • Answered by AI
  • Q3. How you can manage application load ?
  • Ans. 

    Application load management ensures optimal performance and availability through various techniques and tools.

    • Use Load Balancers: Distribute incoming traffic across multiple servers (e.g., AWS Elastic Load Balancing).

    • Auto-Scaling: Automatically adjust the number of active servers based on traffic (e.g., AWS Auto Scaling).

    • Caching: Implement caching mechanisms (e.g., Redis, Memcached) to reduce load on the application se...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Great company to work
Are these interview questions helpful?
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
  • Q1. About the basic linux command
  • Q2. About devops tools like jenkins, kubernetes, etc
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

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

  • Q1. What is the DevOps and Advantages
  • Ans. 

    DevOps is a cultural and technical movement that enhances collaboration between development and operations teams for faster software delivery.

    • Improved collaboration: Breaks down silos between development and operations teams, fostering a culture of shared responsibility.

    • Faster time to market: Continuous integration and continuous deployment (CI/CD) practices enable quicker releases, like deploying updates to a web appl...

  • Answered by AI
  • Q2. What is the terraform?
  • Ans. 

    Terraform is an open-source infrastructure as code tool for building, changing, and versioning infrastructure safely and efficiently.

    • Declarative Configuration: Users define infrastructure in configuration files using HashiCorp Configuration Language (HCL).

    • Resource Management: Terraform manages resources across various providers like AWS, Azure, and Google Cloud.

    • State Management: It maintains a state file to keep track ...

  • Answered by AI
Interview experience
3
Average
Difficulty level
-
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 - HR 

(1 Question)

  • Q1. About you your experience and communication skills
Round 3 - Technical 

(2 Questions)

  • Q1. Depends upon team leader Ask basics as well as the issue they are facing during their work.
  • Q2. Especially Linux file system How to mount additional disk Booting process Docker file structure
Round 4 - Technical 

(2 Questions)

  • Q1. Second technical round is depends upon the TL he can ask your experience and issues
  • Q2. And can ask questions about cloud AWS and azure
Round 5 - HR 

(1 Question)

  • Q1. Salary discussion

Comcast India Engineering Center Interview FAQs

How many rounds are there in Comcast India Engineering Center Devops Engineer interview?
Comcast India Engineering Center interview process usually has 3-4 rounds. The most common rounds in the Comcast India Engineering Center interview process are Technical, Resume Shortlist and Coding Test.
How to prepare for Comcast India Engineering Center 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 Comcast India Engineering Center. The most common topics and skills that interviewers at Comcast India Engineering Center expect are Devops, AWS, CI, Cd and Docker.
What are the top questions asked in Comcast India Engineering Center Devops Engineer interview?

Some of the top questions asked at the Comcast India Engineering Center Devops Engineer interview -

  1. how do use script to schedule backup in ser...read more
  2. how to give access to particula s3 buc...read more
  3. Explain SDLC , explain waterfall model, Write any code in J...read more

Tell us how to improve this page.

Overall Interview Experience Rating

4.3/5

based on 3 interview experiences

Difficulty level

Moderate 100%

Duration

Less than 2 weeks 33%
2-4 weeks 67%
View more
Comcast India Engineering Center Devops Engineer Salary
based on 55 salaries
₹6.4 L/yr - ₹19.6 L/yr
29% more than the average Devops Engineer Salary in India
View more details

Comcast India Engineering Center Devops Engineer Reviews and Ratings

based on 7 reviews

4.3/5

Rating in categories

4.3

Skill development

4.6

Work-life balance

3.8

Salary

4.4

Job security

4.5

Company culture

4.2

Promotions

4.5

Work satisfaction

Explore 7 Reviews and Ratings
Software Development Engineer II
139 salaries
unlock blur

₹10 L/yr - ₹17.5 L/yr

Software Development Engineer 3
70 salaries
unlock blur

₹16.2 L/yr - ₹25 L/yr

Software Developer
60 salaries
unlock blur

₹9.5 L/yr - ₹30 L/yr

Devops Engineer
55 salaries
unlock blur

₹6.4 L/yr - ₹19.6 L/yr

Sdet 2
48 salaries
unlock blur

₹8.2 L/yr - ₹13 L/yr

Explore more salaries
Compare Comcast India Engineering Center with

Thomson Reuters

4.1
Compare

HighRadius

2.8
Compare

Oracle Cerner

3.6
Compare

Chetu

3.3
Compare
write
Share an Interview