Upload Button Icon Add office photos
Engaged Employer

i

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

IBM Verified Tick

Compare button icon Compare button icon Compare

Filter interviews by

IBM AWS Devops Engineer Interview Questions and Answers

Updated 10 Sep 2024

IBM AWS Devops Engineer Interview Experiences

2 interviews found

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

(2 Questions)

  • Q1. What I'd diff between git fetch and git pull
  • Ans. 

    git fetch downloads changes from the remote repository, while git pull downloads changes and merges them into the current branch.

    • git fetch only downloads changes from the remote repository, but does not merge them into the current branch

    • git pull downloads changes from the remote repository and merges them into the current branch

    • git fetch is useful for reviewing changes before merging, while git pull is a shortcut for f

  • Answered by AI
  • Q2. What diff add and copy command
  • Ans. 

    The 'add' command is used to add files from the source directory to the destination directory in a Dockerfile, while the 'copy' command is used to copy files from the source directory to the destination directory in a Dockerfile.

    • The 'add' command can also accept URLs as the source, while the 'copy' command cannot.

    • The 'add' command can automatically extract compressed files, while the 'copy' command cannot.

    • The 'copy' co...

  • Answered by AI
Round 2 - HR 

(1 Question)

  • Q1. Salary discusion
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(1 Question)

  • Q1. Error that came across while pod creation
  • Ans. 

    Error encountered during pod creation can be due to various reasons such as incorrect configuration, resource constraints, network issues, or image availability.

    • Check the pod configuration file for any syntax errors or misconfigurations

    • Ensure that there are enough resources available on the cluster for pod creation

    • Verify network connectivity and DNS resolution within the cluster

    • Check if the container image specified in...

  • Answered by AI

Skills evaluated in this interview

AWS Devops Engineer Interview Questions Asked at Other Companies

Q1. how do you troubleshoot a docker container that is going to die?
Q2. If i delete an instance on the console and then i deploy the same ... read more
Q3. how do you take a backup of Linux logs to was S3 bucket?
asked in Saaspect
Q4. In how many ways we can create a role in aws?
asked in Vayana
Q5. What if I delete EC2 Machine from AWS Console and then apply Terr ... read more

Interview questions from similar companies

I was interviewed in Sep 2019.

Interview Questionnaire 

3 Questions

  • Q1. 1. Network Architecture
  • Q2. Private Cloud, Autoscaling, AwsCodeDeploy
  • Q3. CI/CD pipeline

Interview Questionnaire 

1 Question

  • Q1. Interview questions on aws and DevOps

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

(1 Question)

  • Q1. Reg Docker, Kubernettes, and AWS
Round 3 - HR 

(1 Question)

  • Q1. Experience and skills set

Interview Preparation Tips

Interview preparation tips for other job seekers - Keep motivated and learn from your last interview. Always note down the questions that had been asked in the previous interview and keep it handy.

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

Interview Questionnaire 

1 Question

  • Q1. About Kubernetes, Git, Jenkins, AWS.

Interview Preparation Tips

Interview preparation tips for other job seekers - Have clear understanding of all the tools

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

Interview Questionnaire 

3 Questions

  • Q1. ELB, AUTOSCALING,SECURITY GROUPS, NACL ,CUSTOM VPC ,DIRECT CONNECT, VPC PEERING, S3 POLICIES, Best practice of ec2
  • Q2. ELASTIC COMPUTECLOUD AND ELASTIC LOADBALANCING WHY WE CALL ELASTIC FOR BOTH AS ELASTIC
  • Q3. DIFFERENCE NACL & SECURITY GROUPS DOCKERS SWARM, HOW DO WE INSTALL JENKINS,
  • Ans. 

    Explanation of NACL, Security Groups, Docker Swarm, and Jenkins installation process.

    • NACL is a stateless firewall that controls inbound and outbound traffic at the subnet level.

    • Security Groups are stateful firewalls that control inbound and outbound traffic at the instance level.

    • Docker Swarm is a container orchestration tool that manages a cluster of Docker hosts.

    • Jenkins can be installed on a server using a package man...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - please refer these topics completely

Skills evaluated in this interview

I applied via Recruitment Consultant

Interview Questionnaire 

3 Questions

  • Q1. Work experience
  • Q2. Technical expertise
  • Q3. Best practices

Interview Preparation Tips

Interview preparation tips for other job seekers - Try to be yourself. Only talk about things that you have actually worked. Don't bring in jargons to impress that might hurt instead of helping.

Talk more about your real life experiences and practice implemented
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Case Study 

How aws vs verulation.

Round 2 - Technical 

(2 Questions)

  • Q1. Nacl vs security group?
  • Ans. 

    Nacl is a stateless firewall while security group is a stateful firewall in AWS.

    • NACL operates at the subnet level, while security groups operate at the instance level.

    • NACL rules are evaluated in order, while security group rules are evaluated independently.

    • NACLs are stateless, meaning you must create rules for both inbound and outbound traffic, while security groups are stateful.

    • NACLs are more flexible in terms of allo...

  • Answered by AI
  • Q2. Aws cloudformation
Round 3 - HR 

(2 Questions)

  • Q1. Reason for change
  • Q2. Salary discuss how much excellent

Skills evaluated in this interview

Interview experience
5
Excellent
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Approached by Company and was interviewed in Feb 2024. There were 2 interview rounds.

Round 1 - Technical 

(5 Questions)

  • Q1. How lambda works?
  • Ans. 

    AWS Lambda is a serverless computing service that runs code in response to events and automatically manages the computing resources required.

    • Lambda functions are triggered by events such as changes to data in an S3 bucket, updates to a DynamoDB table, or HTTP requests via API Gateway.

    • Lambda functions can be written in languages like Node.js, Python, Java, and more.

    • AWS Lambda automatically scales to handle the incoming ...

  • Answered by AI
  • Q2. What is VPC? Explain in detail
  • 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 AWS resources.

    • You c...

  • Answered by AI
  • Q3. What is a pod in K8s?
  • Ans. 

    A pod in K8s is the smallest deployable unit in Kubernetes, consisting of one or more containers that share resources.

    • Pods are used to group containers that need to work together, such as a web server and a database.

    • Pods share the same network namespace and can communicate with each other using localhost.

    • Pods can be managed, scaled, and monitored as a single unit in Kubernetes.

    • Each pod has a unique IP address within th

  • Answered by AI
  • Q4. EC2 Autoscaling, Load balancing
  • Q5. What is terraform state file?
  • Ans. 

    Terraform state file is a file that stores the state of your infrastructure managed by Terraform.

    • It keeps track of the current state of your resources in the cloud.

    • Helps Terraform understand what has been created, modified, or deleted.

    • It is used to plan and apply changes to your infrastructure.

    • State file can be stored locally or remotely in a backend like AWS S3 or Terraform Cloud.

  • Answered by AI
Round 2 - One-on-one 

(3 Questions)

  • Q1. Day to day activity
  • Q2. If you know many things why do you want to go with only one?
  • Q3. Most difficult situation handled in project

Interview Preparation Tips

Topics to prepare for Capgemini AWS Devops Engineer interview:
  • AWS
  • Kubernetes
  • Terraform
Interview preparation tips for other job seekers - Go through basics of AWS and Kubernetes

Skills evaluated in this interview

IBM Interview FAQs

How many rounds are there in IBM AWS Devops Engineer interview?
IBM interview process usually has 1-2 rounds. The most common rounds in the IBM interview process are Technical and HR.
What are the top questions asked in IBM AWS Devops Engineer interview?

Some of the top questions asked at the IBM AWS Devops Engineer interview -

  1. What I'd diff between git fetch and git p...read more
  2. error that came across while pod creat...read more
  3. What diff add and copy comm...read more

Tell us how to improve this page.

IBM AWS Devops Engineer Interview Process

based on 4 interviews

Interview experience

4.5
  
Good
View more
IBM AWS Devops Engineer Salary
based on 189 salaries
₹4 L/yr - ₹15.8 L/yr
38% more than the average AWS Devops Engineer Salary in India
View more details

IBM AWS Devops Engineer Reviews and Ratings

based on 6 reviews

4.4/5

Rating in categories

3.8

Skill development

4.0

Work-life balance

3.4

Salary

4.0

Job security

4.2

Company culture

3.2

Promotions

3.6

Work satisfaction

Explore 6 Reviews and Ratings
Application Developer
11.7k salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Software Engineer
5.5k salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Advisory System Analyst
5.2k salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Senior Software Engineer
5k salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Senior Systems Engineer
4.5k salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Explore more salaries
Compare IBM with

Oracle

3.7
Compare

TCS

3.7
Compare

Cognizant

3.7
Compare

Accenture

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