Upload Button Icon Add office photos

Filter interviews by

Accenture Devops Interview Questions and Answers

Updated 6 Jan 2023

Accenture Devops Interview Experiences

1 interview found

Devops Interview Questions & Answers

user image Anonymous

posted on 6 Jan 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 - Assignment 

Docker
Kubernetes
Azure DevOps
Azure Pipelines

Round 3 - Technical 

(2 Questions)

  • Q1. Asked some Devops Docker image size related questions.
  • Q2. Asked Kubernetes deployment strategies.

Interview Preparation Tips

Interview preparation tips for other job seekers - Build up your technical skills. Devops is a highly technical field so its important to have a strong foundation in programming languages.

Interview questions from similar companies

Devops Interview Questions & Answers

TCS user image Mahima Erukulla

posted on 23 Sep 2024

Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
No response
Round 1 - Technical 

(4 Questions)

  • Q1. Difference between git merge and git rebase
  • Ans. 

    Git merge combines changes from different branches, while git rebase rewrites commit history by moving the current branch to the tip of another branch.

    • Git merge creates a new commit with the combined changes of the branches being merged.

    • Git rebase moves the current branch to the tip of another branch, replaying the commits on top of it.

    • Merge preserves the commit history of both branches, while rebase creates a linear h...

  • Answered by AI
  • Q2. Difference between s3 and ebs
  • Ans. 

    S3 is object storage while EBS is block storage in AWS.

    • S3 is suitable for storing large amounts of unstructured data like images, videos, and backups.

    • EBS is used for storing data that requires frequent updates and access, like databases.

    • S3 is scalable and durable, while EBS is persistent and can be attached to a single EC2 instance.

    • S3 is accessed over HTTP/HTTPS, while EBS is accessed as a block device within an EC2 in

  • Answered by AI
  • Q3. What is the default monitoring time in aws cloud watch
  • Ans. 

    The default monitoring time in AWS CloudWatch is 5 minutes.

    • Default monitoring time in AWS CloudWatch is 5 minutes

    • Can be changed to 1 minute for detailed monitoring

    • Monitoring intervals can be adjusted based on requirements

  • Answered by AI
  • Q4. How to solve merge conflicts
  • Ans. 

    Merge conflicts can be solved by resolving the conflicting changes, committing the resolved changes, and then pushing the changes to the repository.

    • Pull the latest changes from the remote repository

    • Locate the conflicting files and resolve the conflicts manually

    • Add the resolved files to the staging area

    • Commit the changes with a message explaining how the conflicts were resolved

    • Push the changes to the remote repository

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - I was n't selected be prepared for basics

Skills evaluated in this interview

Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(2 Questions)

  • Q1. What is kops cluster
  • Q2. How will you configure high availability structure
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

Wipro user image Mandeep singh

posted on 29 Aug 2022

I applied via Naukri.com and was interviewed in Jul 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 - 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

Interview Questionnaire 

5 Questions

  • Q1. How do you configure ssl certification with tomcat
  • Ans. 

    SSL certification can be configured with Tomcat by generating a keystore file and configuring the server.xml file.

    • Generate a keystore file using keytool command

    • Configure the server.xml file to include the keystore file and password

    • Update the connector element in server.xml to include the SSL protocol and port number

    • Restart Tomcat to apply the changes

  • Answered by AI
  • Q2. Explain dynamic inventory in ansible
  • Ans. 

    Dynamic inventory is a feature in Ansible that allows for automatic inventory updates based on external data sources.

    • Dynamic inventory can be configured to pull inventory information from sources such as cloud providers, configuration management databases, or custom scripts.

    • This allows for more flexible and scalable inventory management, as hosts can be added or removed automatically based on changes in the external da...

  • Answered by AI
  • Q3. How do you delete last 30 days logs in tomcat by using shell script
  • Ans. 

    Deleting last 30 days logs in Tomcat using shell script

    • Use find command to locate files older than 30 days

    • Use xargs command to pass the file names to rm command

    • Use crontab to schedule the script to run periodically

  • Answered by AI
  • Q4. How you can identify which process cause your server got slow
  • Ans. 

    To identify the process causing server slowness, use monitoring tools and analyze system logs.

    • Use monitoring tools like Nagios, Zabbix, or Prometheus to track system performance metrics.

    • Analyze system logs to identify any errors or warnings related to specific processes.

    • Check CPU and memory usage of running processes using tools like top or htop.

    • Use profiling tools like strace or perf to identify resource-intensive pro...

  • Answered by AI
  • Q5. What are the stages you regularly write in pipeline job in Jenkins
  • Ans. 

    Stages in pipeline job in Jenkins

    • Checkout code from version control system

    • Build the code

    • Run unit tests

    • Deploy to staging environment

    • Run integration tests

    • Deploy to production environment

    • Send notification email

  • Answered by AI

Skills evaluated in this interview

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 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.

Devops Interview Questions & Answers

TCS user image selva yoish

posted on 6 Jun 2024

Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
No response

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

Round 1 - One-on-one 

(2 Questions)

  • Q1. Addfggggbhhhhhhhhjhhhjbbnb
  • Q2. Ffffjhhhhrfkkkjjjjjjjjjjjjjjjjjj

I applied via Company Website and was interviewed in Mar 2022. There were 2 interview rounds.

Round 1 - Resume Shortlist 
Pro Tip by AmbitionBox:
Properly align and format text in your resume. A recruiter will have to spend more time reading poorly aligned text, leading to high chances of rejection.
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

Accenture Interview FAQs

How many rounds are there in Accenture Devops interview?
Accenture interview process usually has 3 rounds. The most common rounds in the Accenture interview process are Resume Shortlist, Assignment and Technical.
How to prepare for Accenture 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 Accenture. The most common topics and skills that interviewers at Accenture expect are Consulting, Automation, Python, Devops and Outsourcing.
What are the top questions asked in Accenture Devops interview?

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

  1. Asked some Devops Docker image size related questio...read more
  2. Asked Kubernetes deployment strategi...read more

Tell us how to improve this page.

Devops Interview Questions from Similar Companies

TCS Devops Interview Questions
3.7
 • 6 Interviews
Infosys Devops Interview Questions
3.7
 • 3 Interviews
Nagarro Devops Interview Questions
4.0
 • 2 Interviews
Wipro Devops Interview Questions
3.7
 • 1 Interview
View all
Accenture Devops Salary
based on 23 salaries
₹3.6 L/yr - ₹14.9 L/yr
30% less than the average Devops Salary in India
View more details

Accenture Devops Reviews and Ratings

based on 2 reviews

3.5/5

Rating in categories

3.7

Skill development

3.8

Work-Life balance

3.5

Salary & Benefits

3.8

Job Security

3.7

Company culture

3.8

Promotions/Appraisal

3.5

Work Satisfaction

Explore 2 Reviews and Ratings
Application Development Analyst
38.9k salaries
unlock blur

₹3 L/yr - ₹12 L/yr

Application Development - Senior Analyst
26.2k salaries
unlock blur

₹6.8 L/yr - ₹20.2 L/yr

Team Lead
24.1k salaries
unlock blur

₹7 L/yr - ₹25.3 L/yr

Senior Software Engineer
18.4k salaries
unlock blur

₹6 L/yr - ₹19 L/yr

Software Engineer
17.6k salaries
unlock blur

₹3.6 L/yr - ₹12.8 L/yr

Explore more salaries
Compare Accenture with

TCS

3.7
Compare

Cognizant

3.8
Compare

Capgemini

3.8
Compare

Infosys

3.7
Compare

Calculate your in-hand salary

Confused about how your in-hand salary is calculated? Enter your annual salary (CTC) and get your in-hand salary
Did you find this page helpful?
Yes No
write
Share an Interview