Upload Button Icon Add office photos
Engaged Employer

i

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

TCS Verified Tick

Compare button icon Compare button icon Compare

Filter interviews by

TCS Senior Devops Engineer Interview Questions and Answers

Updated 31 Jul 2024

TCS Senior Devops Engineer Interview Experiences

4 interviews found

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

(2 Questions)

  • Q1. Gitlab related Questionnaire ?
  • Q2. Terraform related Questionnaire ?

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare well
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
6-8 weeks
Result
-
Round 1 - Technical 

(2 Questions)

  • Q1. Add mount points automatically when system restarted Terraform state file storing so that it can accessible by other developers
  • Ans. 

    Automate the process of adding mount points on system restart and store Terraform state file for accessibility by other developers.

    • Use a configuration management tool like Ansible to automatically add mount points on system restart.

    • Utilize cloud storage services like AWS S3 or Azure Blob Storage to store Terraform state file for easy access by other developers.

    • Implement scripts or automation workflows to handle the mou...

  • Answered by AI
  • Q2. Store ansible secrets Trigger pipeline after another
  • Ans. 

    Store ansible secrets securely and trigger pipeline after another

    • Use ansible-vault to encrypt sensitive data like passwords and API keys

    • Store encrypted secrets in a separate file or in a secure vault

    • Use ansible-playbook to trigger pipelines sequentially or use a CI/CD tool like Jenkins for automation

  • Answered by AI
Round 2 - HR 

(2 Questions)

  • Q1. Salary discussion
  • Q2. Location discussion

Skills evaluated in this interview

Senior Devops Engineer Interview Questions Asked at Other Companies

Q1. What are Terraform life cycles ? and how do we use them ?
Q2. How do you trigger a pipeline from a specific version of applicat ... read more
Q3. What is ingress in Kubernetes, and how does it help us when deplo ... read more
Q4. what are stages involved in release pipeline ? Explain the code
Q5. What are TF provisioners? Describe their use cases.
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(2 Questions)

  • Q1. Before cicd and after cicd differences
  • Ans. 

    Before CI/CD, manual processes were used for software deployment, leading to slower release cycles. After CI/CD, automation streamlines the process for faster and more reliable deployments.

    • Before CI/CD: Manual deployment processes requiring human intervention

    • After CI/CD: Automated deployment pipelines for continuous integration and continuous delivery

    • Before CI/CD: Longer release cycles due to manual testing and deploym...

  • Answered by AI
  • Q2. What is docker used for and how integration happened to cicd before docker
  • Ans. 

    Docker is used for containerization of applications, allowing for easy deployment and scaling. Before Docker, CI/CD integration was more complex and less efficient.

    • Docker is used to create lightweight, portable, self-sufficient containers that can run applications in any environment.

    • Before Docker, CI/CD pipelines often relied on virtual machines or manual configurations for deployment and testing.

    • Docker simplifies the ...

  • Answered by AI

Skills evaluated in this interview

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

I applied via Naukri.com and was interviewed in Apr 2024. There were 2 interview rounds.

Round 1 - Coding Test 

Very long and busy test

Round 2 - Case Study 

Very out of this world really

Interview Preparation Tips

Interview preparation tips for other job seekers - work and prepare for the interview and win the match

What people are saying about TCS

View All
a digital marketer
now
Do you think they're gonna work on employees' work-life balance, OR for just publicity?
Infosys, Infosys, TCS, Genpact Revise Workplace Policies Infosys is sending a warning mail, if an employee overshoots the daily limit while working remotely, the system triggers a notification Genpact introduced a new policy to log in before 11 am But will these companies really change, or is it just a show to mask their issues?
FeedCard Image
Got a question about TCS?
Ask anonymously on communities.

Interview questions from similar companies

I applied via Naukri.com and was interviewed in Apr 2021. There were 4 interview rounds.

Interview Questionnaire 

1 Question

  • Q1. Questions related to devops and considering my experience some team management questions

Interview Preparation Tips

Interview preparation tips for other job seekers - Be confident and have in-depth knowledge on skill

I applied via Naukri.com and was interviewed in Apr 2021. There was 1 interview round.

Interview Questionnaire 

1 Question

  • Q1. Mostly they ask questions on your resume

Interview Preparation Tips

Interview preparation tips for other job seekers - prepare for write code for Jenkins file, terraform, ansible-playbook
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
-
Result
Selected Selected

I applied via Naukri.com and was interviewed before Feb 2023. There were 3 interview rounds.

Round 1 - Technical 

(1 Question)

  • Q1. Mostly Cloud related questions
Round 2 - Technical 

(1 Question)

  • Q1. If round 1 is clear , then be confident in round 2
Round 3 - HR 

(1 Question)

  • Q1. Salary related mainly
Are these interview questions helpful?
Interview experience
4
Good
Difficulty level
Easy
Process Duration
More than 8 weeks
Result
Selected Selected

I applied via Recruitment Consulltant and was interviewed before May 2023. There was 1 interview round.

Round 1 - Technical 

(1 Question)

  • Q1. CI/CD pipeline definitions

I applied via Naukri.com and was interviewed in Aug 2022. There were 2 interview rounds.

Round 1 - Technical 

(5 Questions)

  • Q1. Terraform templates to create aks
  • Ans. 

    Terraform templates can be used to create AKS clusters.

    • Use the azurerm_kubernetes_cluster resource in Terraform to create an AKS cluster.

    • Specify the required parameters such as resource group, location, node count, and node size.

    • Use the azurerm_kubernetes_service_principal resource to create a service principal for the AKS cluster.

    • Use the azurerm_kubernetes_cluster_node_pool resource to create node pools with specific ...

  • Answered by AI
  • Q2. OpenShift Source to Image
  • Q3. Jenkins pipeline end to end
  • Q4. Ansible taks done in project
  • Ans. 

    Ansible was extensively used in the project for configuration management and automation.

    • Automated deployment of applications using Ansible playbooks

    • Configuration management of servers using Ansible roles

    • Automated backup and restore of databases using Ansible scripts

    • Automated provisioning of infrastructure using Ansible modules

  • Answered by AI
  • Q5. Handled team size and DevSecOps
Round 2 - Technical 

(3 Questions)

  • Q1. Shell script concepts
  • Q2. Istio Service Mesh , Kubernetes Troubleshooting
  • Q3. Docker file creation
  • Ans. 

    Creating a Dockerfile involves defining the environment and instructions for building a Docker image.

    • Start with a base image using 'FROM', e.g., 'FROM ubuntu:20.04'.

    • Set environment variables with 'ENV', e.g., 'ENV APP_HOME /app'.

    • Copy files into the image using 'COPY', e.g., 'COPY . $APP_HOME'.

    • Install dependencies with 'RUN', e.g., 'RUN apt-get update && apt-get install -y python3'.

    • Specify the command to run the...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare well on Terraform , Azure DevOps concept, do hands on on Azure DevOps , should hv good understanding and experience of Jenkins and Kubernetes

Skills evaluated in this interview

Interview experience
1
Bad
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via Recruitment Consulltant and was interviewed in Jul 2024. There was 1 interview round.

Round 1 - One-on-one 

(1 Question)

  • Q1. Walk through on recent technical skills
  • Ans. 

    I have recently worked on implementing CI/CD pipelines using Jenkins, Docker, and Kubernetes.

    • Implemented Jenkins pipelines for automating build, test, and deployment processes

    • Utilized Docker for containerization of applications and services

    • Managed Kubernetes clusters for container orchestration

    • Integrated monitoring and logging tools like Prometheus and ELK stack

  • Answered by AI

TCS Interview FAQs

How many rounds are there in TCS Senior Devops Engineer interview?
TCS interview process usually has 1-2 rounds. The most common rounds in the TCS interview process are Technical, HR and Coding Test.
How to prepare for TCS Senior 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 TCS. The most common topics and skills that interviewers at TCS expect are Devops, Terraform, Docker, Jenkins and API.
What are the top questions asked in TCS Senior Devops Engineer interview?

Some of the top questions asked at the TCS Senior Devops Engineer interview -

  1. What is docker used for and how integration happened to cicd before doc...read more
  2. Add mount points automatically when system restarted Terraform state file stor...read more
  3. Store ansible secrets Trigger pipeline after anot...read more

Tell us how to improve this page.

Overall Interview Experience Rating

3.6/5

based on 7 interview experiences

Difficulty level

Moderate 100%

Duration

Less than 2 weeks 50%
6-8 weeks 50%
View more
TCS Senior Devops Engineer Salary
based on 492 salaries
₹11.4 L/yr - ₹20.1 L/yr
21% less than the average Senior Devops Engineer Salary in India
View more details

TCS Senior Devops Engineer Reviews and Ratings

based on 32 reviews

3.2/5

Rating in categories

3.3

Skill development

3.7

Work-life balance

2.4

Salary

4.3

Job security

3.0

Company culture

2.1

Promotions

3.4

Work satisfaction

Explore 32 Reviews and Ratings
System Engineer
1.1L salaries
unlock blur

₹1 L/yr - ₹9 L/yr

IT Analyst
65.5k salaries
unlock blur

₹7.9 L/yr - ₹14.5 L/yr

AST Consultant
53.6k salaries
unlock blur

₹12 L/yr - ₹20.6 L/yr

Assistant System Engineer
33.2k salaries
unlock blur

₹2.5 L/yr - ₹5 L/yr

Associate Consultant
32.9k salaries
unlock blur

₹16.2 L/yr - ₹28 L/yr

Explore more salaries
Compare TCS with

Amazon

4.0
Compare

Wipro

3.7
Compare

Infosys

3.6
Compare

Accenture

3.7
Compare
write
Share an Interview