Premium Employer

i

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

Infosys Verified Tick

Compare button icon Compare button icon Compare

Filter interviews by

Infosys Devops Interview Questions and Answers

Updated 22 Oct 2023

Infosys Devops Interview Experiences

3 interviews found

Devops Interview Questions & Answers

user image Anonymous

posted on 22 Oct 2023

Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
-
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 - Aptitude Test 

It was1 hour apti test

Round 3 - Technical 

(1 Question)

  • Q1. What is devops?
  • Ans. 

    DevOps is a software development methodology that combines software development (Dev) with IT operations (Ops) to improve collaboration and efficiency.

    • DevOps focuses on automating and streamlining the software development process.

    • It emphasizes communication and collaboration between development and operations teams.

    • DevOps aims to shorten the development lifecycle and provide continuous delivery of high-quality software...

  • Answered by AI
Round 4 - Group Discussion 

Global warming wdcajkjfuya

Round 5 - HR 

(1 Question)

  • Q1. Tell me about yourself

Interview Preparation Tips

Interview preparation tips for other job seekers - always be prepared

Skills evaluated in this interview

Devops Interview Questions & Answers

user image Anonymous

posted on 25 Apr 2022

I applied via Company Website and was interviewed in Mar 2022. 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 - Technical 

(1 Question)

  • Q1. What is Docker and its advantages . Which is the most secure docker image
  • Ans. 

    Docker is a containerization platform that allows developers to package and deploy applications in a portable manner.

    • Advantages include: faster deployment, improved scalability, reduced infrastructure costs, and increased consistency across environments.

    • The most secure Docker image is one that is regularly updated with security patches and has minimal dependencies.

    • Examples of secure Docker images include those from off...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Make your Baiscs strong and always be confident on your project which you have completed.

Skills evaluated in this interview

Devops Interview Questions Asked at Other Companies

asked in Genpact
Q1. How will you setup a microservice architecture application simple ... read more
asked in Housing.com
Q2. How will you kill all java process in one command ?
asked in Genpact
Q3. How to run cmd commands using python on windows environment ?
asked in Capgemini
Q4. how do you delete last 30 days logs in tomcat by using shell scri ... read more
asked in Genpact
Q5. What is difference between deep and shallow copy in python paradi ... read more

Devops Interview Questions & Answers

user image Anonymous

posted on 20 Apr 2021

Interview Questionnaire 

1 Question

  • Q1. Few from DevOps like git, jenkins, maven lifecycle, maven build vs install lifecycle, type of version control system and few questions based on my past experience in Infra domain.

Devops Jobs at Infosys

View all

Interview questions from similar companies

I applied via Naukri.com and was interviewed in Dec 2020. There was 1 interview round.

Interview Questionnaire 

1 Question

  • Q1. App service configuration, security mechanism, CI/CD pipeline, container, how to deploy in azure using Azure devops specially how it authenticate... questions will be based on the tools and technologies ...

Interview Preparation Tips

Interview preparation tips for other job seekers - Must check the configuration of the services which you mentioned in resume.

I applied via Naukri.com and was interviewed in May 2020. There were 3 interview rounds.

Interview Questionnaire 

8 Questions

  • Q1. How to run cmd commands using python on windows environment ?
  • Ans. 

    To run cmd commands using python on windows, use the subprocess module.

    • Import the subprocess module

    • Use the subprocess.run() method to execute the command

    • Pass the command as a list of strings to the run() method

    • Use the shell=True argument to run the command in a shell environment

    • Capture the output of the command using the stdout attribute of the returned CompletedProcess object

  • Answered by AI
  • Q2. What is difference between deep and shallow copy in python paradigm?
  • Ans. 

    Deep copy creates a new object with a new memory address while shallow copy creates a new object with the same memory address as the original object.

    • Deep copy creates a completely new object with a new memory address.

    • Shallow copy creates a new object with the same memory address as the original object.

    • In deep copy, changes made to the copied object do not affect the original object.

    • In shallow copy, changes made to the ...

  • Answered by AI
  • Q3. What is namespace in Docker ?
  • Ans. 

    Namespace in Docker is a way to isolate resources and avoid naming conflicts.

    • Namespaces provide a layer of isolation for containers

    • Each namespace has its own set of resources

    • Namespaces can be used for network, process, and mount isolation

    • Example: docker run --name mycontainer --net=container:othercontainer myimage

  • Answered by AI
  • Q4. Have you tackled a day to day problem using automation ? If yes then tell the problem and solution.
  • Q5. How can you send email with attachment using powershell ?
  • Ans. 

    Send email with attachment using PowerShell

    • Use Send-MailMessage cmdlet

    • Specify recipient, subject, body and attachment parameters

    • Example: Send-MailMessage -To 'example@email.com' -Subject 'Test Email' -Body 'This is a test email' -Attachments 'C:\test.txt'

  • Answered by AI
  • Q6. How to install IIS using powershell ?
  • Ans. 

    To install IIS using PowerShell, use the Install-WindowsFeature cmdlet.

    • Open PowerShell as an administrator

    • Run the command: Install-WindowsFeature -name Web-Server -IncludeManagementTools

    • Press 'Y' to confirm installation

    • Wait for the installation to complete

  • Answered by AI
  • Q7. How will you setup a microservice architecture application simple testing environment and deployment pipeline using kubernetes, containers, jenkins and available Cloud services.
  • Ans. 

    Setup microservice testing and deployment using Kubernetes, containers, Jenkins, and Cloud services.

    • Create a Kubernetes cluster on a Cloud provider

    • Build Docker containers for each microservice

    • Create a Jenkins pipeline for testing and deployment

    • Use Kubernetes to deploy and manage the containers

    • Use Cloud services for load balancing, monitoring, and scaling

  • Answered by AI
  • Q8. What is special variable in powershell ?

Interview Preparation Tips

Interview preparation tips for other job seekers - Most of these questions were asked because I specifically mentioned that I had hands on experience in Python, Powershell and Docker. Goind for the role of Devops, It is a must to have good knowledge about well known Cloud service provider and its services, so as to come with a Devops solution in setting up Testing and Production ready environments making use of available cloud services provided.

Skills evaluated in this interview

I applied via Naukri.com and was interviewed before May 2020. There were 3 interview rounds.

Interview Questionnaire 

5 Questions

  • Q1. How to integrate Maven with jenkins
  • Ans. 

    Integrating Maven with Jenkins

    • Install Maven plugin in Jenkins

    • Configure Maven installation in Jenkins global tool configuration

    • Create a new Jenkins job and select Maven project

    • Specify the path to the pom.xml file in the project configuration

    • Configure build triggers and other settings as required

  • Answered by AI
  • Q2. What are the git commands
  • Ans. 

    Git commands are used to manage version control of code repositories.

    • git init - initialize a new repository

    • git add - add changes to the staging area

    • git commit - commit changes to the repository

    • git push - push changes to a remote repository

    • git pull - pull changes from a remote repository

    • git clone - clone a remote repository

    • git branch - create, list, or delete branches

    • git merge - merge changes from one branch to another

    • g...

  • Answered by AI
  • Q3. Explain Jenkis pipeline job
  • Ans. 

    Jenkins pipeline job is a way to define a series of steps to be executed in a specific order.

    • Pipeline job is defined using a Jenkinsfile or a script in the Jenkins UI.

    • It consists of stages, which are a collection of steps.

    • Each step can be a shell command, a script, or a plugin.

    • Pipeline job can be triggered manually or automatically based on events.

    • It provides visibility into the entire build process and enables continu...

  • Answered by AI
  • Q4. AWS services
  • Q5. Shell script

Interview Preparation Tips

Interview preparation tips for other job seekers - it was good interview face real-time based questions and answered well

Skills evaluated in this interview

Devops Interview Questions & Answers

LTIMindtree user image PHILEMON KURUVILLA

posted on 6 Feb 2023

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

I applied via Recruitment Consulltant and was interviewed before Feb 2022. 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 - Telephonic Call 

(3 Questions)

  • Q1. What is Kubernettes ?
  • Ans. 

    Kubernetes is an open-source container orchestration platform that automates the deployment, scaling, and management of containerized applications.

    • Kubernetes is used to manage and automate the deployment of containerized applications.

    • It provides features like automatic scaling, load balancing, and self-healing.

    • Kubernetes allows for easy management of containers across multiple hosts and clusters.

    • It provides declarative...

  • Answered by AI
  • Q2. What is a container and why is the use?
  • Ans. 

    A container is a lightweight, standalone executable package that contains everything needed to run an application.

    • Containers provide a consistent and reproducible environment for applications to run in.

    • They are isolated from the host system and other containers, providing security and portability.

    • Containers can be easily deployed and scaled, making them ideal for modern application development and deployment.

    • Examples o...

  • Answered by AI
  • Q3. Containers allow process to run in an isolated environment with its own virtual memory, CPU and storage.It differ from virtual machines such that unlike the OS being virtulaized , the folder that are call...

Interview Preparation Tips

Topics to prepare for LTIMindtree Devops interview:
  • Virtualization.
  • Containers
  • Load Balancing
  • Clusters
Interview preparation tips for other job seekers - Read more on Dockers ,Virtulaization, VDI and Clusters.

Skills evaluated in this interview

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

They conducted an aptitude test and it was based on math and English basic and general knowledge

Round 3 - Coding Test 

Based on your skill set they gave you assignments and based on the deadline you have to submit

Interview Preparation Tips

Interview preparation tips for other job seekers - be prepared based on your skill set and be positive while your interview and don't loose your confidance

Devops Interview Questions & Answers

TCS user image Kamal Hist

posted on 28 May 2021

I applied via Naukri.com and was interviewed in Nov 2020. There was 1 interview round.

Interview Questionnaire 

1 Question

  • Q1. Question related to architecture and kubernetes

Interview Preparation Tips

Interview preparation tips for other job seekers - Focus mainly on fundamental concept of programming and architecture related questions

Devops Interview Questions & Answers

TCS user image Dhiman Halder

posted on 12 Apr 2022

I was interviewed in Mar 2022.

Round 1 - Technical 

(2 Questions)

  • Q1. Na its purely based on the projects handled by the candidate. It will be unfair to question something which the candidate dont know
  • Q2. Never be mean about ur past company however ill treatment u got from them. Remember that company was ur bread earner at the time u need it. So, choose your company wisely.

Interview Preparation Tips

Interview preparation tips for other job seekers - Know your subject well. Understand the basics and philosophy of the subject in question. Think lateral while studing your subject. Question yourself on everyday services or products you use.

Infosys Interview FAQs

How many rounds are there in Infosys Devops interview?
Infosys interview process usually has 3-4 rounds. The most common rounds in the Infosys interview process are Resume Shortlist, Technical and Aptitude Test.
How to prepare for Infosys Devops 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 Infosys. The most common topics and skills that interviewers at Infosys expect are DevOps, AWS, AWS DevOps, Automation Testing and Jenkins.
What are the top questions asked in Infosys Devops interview?

Some of the top questions asked at the Infosys Devops interview -

  1. What is Docker and its advantages . Which is the most secure docker im...read more
  2. what is devo...read more
  3. Few from DevOps like git, jenkins, maven lifecycle, maven build vs install life...read more

Tell us how to improve this page.

Infosys Devops Interview Process

based on 1 interview

Interview experience

3
  
Average
View more
Join Infosys Creating the next opportunity for people, businesses & communities

Devops Interview Questions from Similar Companies

TCS Devops Interview Questions
3.7
 • 6 Interviews
Wipro Devops Interview Questions
3.7
 • 1 Interview
View all
Infosys Devops Salary
based on 12 salaries
₹3 L/yr - ₹12 L/yr
45% less than the average Devops Salary in India
View more details

Infosys Devops Reviews and Ratings

based on 1 review

5.0/5

Rating in categories

5.0

Skill development

4.0

Work-life balance

5.0

Salary

5.0

Job security

4.0

Company culture

4.0

Promotions

4.0

Work satisfaction

Explore 1 Review and Rating
Azure Devops - Bangalore

Hyderabad / Secunderabad,

Bangalore / Bengaluru

4-9 Yrs

Not Disclosed

AWS/Azure Devops

Hyderabad / Secunderabad,

Bangalore / Bengaluru

4-9 Yrs

Not Disclosed

AWS Devops - Hyderabad, Bengaluru

Hyderabad / Secunderabad,

Pune

+1

3-8 Yrs

Not Disclosed

Explore more jobs
Technology Analyst
55.7k salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Senior Systems Engineer
50.6k salaries
unlock blur

₹0 L/yr - ₹0 L/yr

System Engineer
39.5k salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Technical Lead
30.8k salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Senior Associate Consultant
28k salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Explore more salaries
Compare Infosys with

TCS

3.7
Compare

Wipro

3.7
Compare

Cognizant

3.7
Compare

Accenture

3.8
Compare
Did you find this page helpful?
Yes No
write
Share an Interview