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 Infrastructure Specialist Interview Questions and Answers

Updated 28 Jul 2024

10 Interview questions

An Infrastructure Specialist was asked
Q. Are you willing to work on DevOps, Cloud, or Development tasks?
Ans. 

Yes, I am capable of working in various roles such as DevOps, Cloud, and Development.

  • I have experience and skills in DevOps practices such as automation, CI/CD, and infrastructure as code.

  • I am proficient in cloud technologies like AWS, Azure, or Google Cloud Platform.

  • I have a strong background in software development with expertise in languages like Python, Java, or JavaScript.

An Infrastructure Specialist was asked
Q. Write a Dockerfile.
Ans. 

A Dockerfile is a text document that contains all the commands a user could call on the command line to assemble an image.

  • Start with a base image

  • Use the FROM keyword to specify the base image

  • Add any necessary dependencies using the RUN keyword

  • Copy application code into the image using the COPY keyword

  • Expose any necessary ports using the EXPOSE keyword

  • Specify the command to run when the container starts using the C...

Infrastructure Specialist Interview Questions Asked at Other Companies

asked in IBM
Q1. If you want to avoid hard coding the AMI Ids while creating an in ... read more
asked in IBM
Q2. How would you check if a pod in a ReplicaSet went down or failed, ... read more
asked in IBM
Q3. Are you willing to work on DevOps, Cloud, or Development tasks?
asked in IBM
Q4. How would you provide security to your credentials while using Te ... read more
asked in IBM
Q5. If you are using CI/CD, define your stages and issues you faced.
An Infrastructure Specialist was asked
Q. If you are using CI/CD, define your stages and issues you faced.
Ans. 

CICD stages include build, test, deploy, and monitor. Common issues include integration challenges and pipeline failures.

  • Stages: Build, Test, Deploy, Monitor

  • Issues: Integration challenges, Pipeline failures

  • Example: Integration challenges with third-party tools delaying deployment

An Infrastructure Specialist was asked
Q. How would you provide security to your credentials while using Terraform?
Ans. 

Use encrypted variables, limit access to credentials, and utilize secure storage solutions.

  • Encrypt sensitive variables using tools like Vault or AWS KMS

  • Limit access to credentials by using least privilege principles

  • Store credentials securely in a password manager or key vault

  • Avoid hardcoding credentials in Terraform configuration files

What people are saying about IBM

View All
a data scientist
2w
Best organization in terms of Learning, Opportunity, WLB
Current Role: Data Scientist (Gen AI) YOE: 5.5 CCTC: 18.5 LPA Offers I have: 1. Quantiphi Analytics (Bangalore) - 32.9 LPA (29 Fixed + 1 JB + 2.9 Variable) 2. STG Labs (Bangalore) - 33 LPA (32 Fixed + 1 JB) 3. Rakuten Symphony (Bangalore) - 32.8 LPA (28 Fixed + 1 JB + 2.8 Bonus) 4. IBM (Hometown) - 32.5 LPA (Fixed) Offers in Pipeline: 1. Programmers.io - Remote 2. Worley - Remote 3. C5i - Bangalore 4. Wipro - Bangalore 5. Capgemini - Hometown 6. MPhasis - Hyderabad I want to know which organization will best considering Learning, Opportunity, WLB.
Got a question about IBM?
Ask anonymously on communities.
An Infrastructure Specialist was asked
Q. How would you check if a pod in a ReplicaSet went down or failed, and what was the reason for it?
Ans. 

To check if a pod in ReplicaSet went down or failed, monitor the pod status, logs, and events.

  • Monitor the pod status using kubectl get pods command

  • Check the pod logs for any error messages using kubectl logs command

  • Review the events related to the pod using kubectl describe pod command

  • Set up alerts or notifications for pod failures using monitoring tools like Prometheus or Grafana

An Infrastructure Specialist was asked
Q. If you want to avoid hard coding the AMI Ids while creating an instance, how would you do that through Terraform?
Ans. 

Use variables or data sources in Terraform to dynamically manage AMI IDs without hard coding.

  • Define a variable for the AMI ID in your Terraform configuration: `variable "ami_id" {}`.

  • Use a data source to fetch the latest AMI ID dynamically: `data "aws_ami" "latest" {}`.

  • Reference the variable or data source in your resource block: `ami = var.ami_id` or `ami = data.aws_ami.latest.id`.

  • Utilize Terraform workspaces or e...

An Infrastructure Specialist was asked
Q. Explain the OSI model.
Ans. 

The OSI model is a conceptual framework that standardizes the functions of a telecommunication or computing system into seven layers.

  • The OSI model stands for Open Systems Interconnection model.

  • It helps in understanding how data is transmitted over a network.

  • The seven layers are: Physical, Data Link, Network, Transport, Session, Presentation, and Application.

  • Each layer has specific functions and interacts with adja...

Are these interview questions helpful?
An Infrastructure Specialist was asked
Q. Explain VPC, NAT Gateway, difference between NACL and SG
Ans. 

VPC is a virtual private cloud that allows you to create isolated networks, NAT Gateway enables instances in a private subnet to connect to the internet, NACL controls inbound and outbound traffic at the subnet level, SG controls traffic at the instance level.

  • VPC is a virtual network in the cloud that you can define and customize, providing a secure environment for your resources.

  • NAT Gateway allows instances in a ...

An Infrastructure Specialist was asked
Q. What are modules in Terraform, share your screen and write module
Ans. 

Modules in Terraform are reusable components that allow you to encapsulate and organize your infrastructure code.

  • Modules help in breaking down complex infrastructure into smaller, manageable components

  • They promote reusability and maintainability of code

  • Modules can be shared and used across different projects

  • Example: Creating a module for provisioning a virtual machine in Azure

An Infrastructure Specialist was asked
Q. Any Cloud and Linux/windows
Ans. 

Yes, I have experience with both Cloud services and Linux/Windows operating systems.

  • Experience with AWS, Azure, or Google Cloud Platform

  • Proficient in Linux distributions such as Ubuntu, CentOS, or Red Hat

  • Familiar with Windows Server operating systems

  • Knowledge of virtualization technologies like VMware or Hyper-V

IBM Infrastructure Specialist Interview Experiences

5 interviews found

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

(1 Question)

  • Q1. Questions regarding previous projects
Round 2 - Technical 

(1 Question)

  • Q1. Questions regarding terraform
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 Sep 2023. There were 2 interview rounds.

Round 1 - Technical 

(10 Questions)

  • Q1. Tell me about your project, how did you work and what were the tools used?
  • Q2. What are modules in Terraform, share your screen and write module
  • Ans. 

    Modules in Terraform are reusable components that allow you to encapsulate and organize your infrastructure code.

    • Modules help in breaking down complex infrastructure into smaller, manageable components

    • They promote reusability and maintainability of code

    • Modules can be shared and used across different projects

    • Example: Creating a module for provisioning a virtual machine in Azure

  • Answered by AI
  • Q3. If you want to avoid hard coding the AMI Ids while creating an instance, how would you do that through Terraform?
  • Ans. 

    Use variables or data sources in Terraform to dynamically manage AMI IDs without hard coding.

    • Define a variable for the AMI ID in your Terraform configuration: `variable "ami_id" {}`.

    • Use a data source to fetch the latest AMI ID dynamically: `data "aws_ami" "latest" {}`.

    • Reference the variable or data source in your resource block: `ami = var.ami_id` or `ami = data.aws_ami.latest.id`.

    • Utilize Terraform workspaces or enviro...

  • Answered by AI
  • Q4. Questions on lifecycle block, data block, modules and resources in Terraform - scenario based just like one above
  • Q5. How would you provide security to your credentials while using Terraform
  • Ans. 

    Use encrypted variables, limit access to credentials, and utilize secure storage solutions.

    • Encrypt sensitive variables using tools like Vault or AWS KMS

    • Limit access to credentials by using least privilege principles

    • Store credentials securely in a password manager or key vault

    • Avoid hardcoding credentials in Terraform configuration files

  • Answered by AI
  • Q6. Explain VPC, NAT Gateway, difference between NACL and SG
  • Ans. 

    VPC is a virtual private cloud that allows you to create isolated networks, NAT Gateway enables instances in a private subnet to connect to the internet, NACL controls inbound and outbound traffic at the subnet level, SG controls traffic at the instance level.

    • VPC is a virtual network in the cloud that you can define and customize, providing a secure environment for your resources.

    • NAT Gateway allows instances in a priva...

  • Answered by AI
  • Q7. Write a Docker File
  • Ans. 

    A Dockerfile is a text document that contains all the commands a user could call on the command line to assemble an image.

    • Start with a base image

    • Use the FROM keyword to specify the base image

    • Add any necessary dependencies using the RUN keyword

    • Copy application code into the image using the COPY keyword

    • Expose any necessary ports using the EXPOSE keyword

    • Specify the command to run when the container starts using the CMD ke...

  • Answered by AI
  • Q8. S3 Lifecycle rules
  • Q9. If you are using CICD define your stages and issues you faced
  • Ans. 

    CICD stages include build, test, deploy, and monitor. Common issues include integration challenges and pipeline failures.

    • Stages: Build, Test, Deploy, Monitor

    • Issues: Integration challenges, Pipeline failures

    • Example: Integration challenges with third-party tools delaying deployment

  • Answered by AI
  • Q10. How will you check if a pod in ReplicaSet went down or failed and what was the reason for the same?
  • Ans. 

    To check if a pod in ReplicaSet went down or failed, monitor the pod status, logs, and events.

    • Monitor the pod status using kubectl get pods command

    • Check the pod logs for any error messages using kubectl logs command

    • Review the events related to the pod using kubectl describe pod command

    • Set up alerts or notifications for pod failures using monitoring tools like Prometheus or Grafana

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

(5 Questions)

  • Q1. Tell me about yourself
  • Ans. 

    Experienced Infrastructure Specialist with a strong background in network management, cloud solutions, and system optimization.

    • Over 7 years of experience in IT infrastructure management, focusing on network security and performance optimization.

    • Led a project to migrate on-premises servers to AWS, resulting in a 30% reduction in operational costs.

    • Skilled in implementing virtualization technologies, such as VMware and Hy...

  • Answered by AI
  • Q2. Why do you like learning new things
  • Q3. Agile methodology, Scrum
  • Q4. Day to Day activities
  • Q5. Will you be able to work if given any type of work like either DevOps or only Cloud or only Development?
  • Ans. 

    Yes, I am capable of working in various roles such as DevOps, Cloud, and Development.

    • I have experience and skills in DevOps practices such as automation, CI/CD, and infrastructure as code.

    • I am proficient in cloud technologies like AWS, Azure, or Google Cloud Platform.

    • I have a strong background in software development with expertise in languages like Python, Java, or JavaScript.

  • Answered by AI

Interview Preparation Tips

Topics to prepare for IBM Infrastructure Specialist interview:
  • Terraform
  • AWS
  • Kubernetes
  • Docker
Interview preparation tips for other job seekers - Go through Terraform blocks, go through your project very well, try going through all AWS services mentioned in resume

Skills evaluated in this interview

Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
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. Any Cloud and Linux/windows
  • Ans. 

    Yes, I have experience with both Cloud services and Linux/Windows operating systems.

    • Experience with AWS, Azure, or Google Cloud Platform

    • Proficient in Linux distributions such as Ubuntu, CentOS, or Red Hat

    • Familiar with Windows Server operating systems

    • Knowledge of virtualization technologies like VMware or Hyper-V

  • Answered by AI
Round 3 - Behavioral 

(1 Question)

  • Q1. Behavioral Round

Skills evaluated in this interview

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

I applied via Job Portal and was interviewed in Dec 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 - Technical 

(1 Question)

  • Q1. About openshift kubernetes etc
Round 3 - Technical 

(1 Question)

  • Q1. About the infrastructure and scenario based questions
Round 4 - HR 

(1 Question)

  • Q1. Location discussion
Interview experience
3
Average
Difficulty level
-
Process Duration
4-6 weeks
Result
Selected Selected

I applied via Naukri.com and was interviewed before Jun 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. Basic networking questions
  • Q2. OSI model explaination
  • Ans. 

    The OSI model is a conceptual framework that standardizes the functions of a telecommunication or computing system into seven layers.

    • The OSI model stands for Open Systems Interconnection model.

    • It helps in understanding how data is transmitted over a network.

    • The seven layers are: Physical, Data Link, Network, Transport, Session, Presentation, and Application.

    • Each layer has specific functions and interacts with adjacent ...

  • Answered by AI
  • Q3. Basic tcp ip questions
  • Q4. Routing related
Round 3 - HR 

(1 Question)

  • Q1. Salary discussion

Skills evaluated in this interview

Interview questions from similar companies

Interview Questionnaire 

2 Questions

  • Q1. Technical
  • Q2. Be yourself

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

Interview Questionnaire 

2 Questions

  • Q1. What are different types of cloud?
  • Q2. What is workflow,trigger, different types of reports, roles, profiles, permission set, sharing rules etc?
  • Ans. 

    Workflow, trigger, reports, roles, profiles, permission set, and sharing rules are all important features in Salesforce.

    • Workflow is a series of automated steps that can be used to streamline business processes.

    • Triggers are used to execute code before or after a record is inserted, updated, or deleted.

    • Reports are used to display data in a visual format, such as a table or chart.

    • Roles are used to define the hierarchy of ...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Google the question related to your topic and also become 100% prepared with your resume.

Skills evaluated in this interview

Are these interview questions helpful?

I applied via LinkedIn and was interviewed before Jul 2020. There were 4 interview rounds.

Interview Questionnaire 

4 Questions

  • Q1. Which technologies your interested to work
  • Q2. Question related to Java coding
  • Q3. Question from C language
  • Q4. Question from AI & ML

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare on all the latest technologies, brush your regular skills

I applied via Company Website and was interviewed before Oct 2020. There were 3 interview rounds.

Interview Questionnaire 

1 Question

  • Q1. Tell me about your experience

Interview Preparation Tips

Interview preparation tips for other job seekers - Be confident adn clear when you answer

I applied via Amcat and was interviewed before Jul 2021. There were 2 interview rounds.

Round 1 - Aptitude Test 

Refer R S Agarwal book for apptitude

Round 2 - One-on-one 

(1 Question)

  • Q1. Write a c program on fractional numbers
  • Ans. 

    A C program to perform arithmetic operations on fractional numbers.

    • Use float or double data type to store fractional numbers.

    • Use scanf() to take input from the user.

    • Perform arithmetic operations like addition, subtraction, multiplication, and division.

    • Use printf() to display the result.

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Be prepared refer R S Agarwal book for apptitude test

Skills evaluated in this interview

IBM Interview FAQs

How many rounds are there in IBM Infrastructure Specialist interview?
IBM interview process usually has 2-3 rounds. The most common rounds in the IBM interview process are Technical, Resume Shortlist and HR.
How to prepare for IBM Infrastructure Specialist 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 IBM. The most common topics and skills that interviewers at IBM expect are Healthcare, AWS, Linux, Networking and Kubernetes.
What are the top questions asked in IBM Infrastructure Specialist interview?

Some of the top questions asked at the IBM Infrastructure Specialist interview -

  1. If you want to avoid hard coding the AMI Ids while creating an instance, how wo...read more
  2. How will you check if a pod in ReplicaSet went down or failed and what was the ...read more
  3. Will you be able to work if given any type of work like either DevOps or only C...read more

Tell us how to improve this page.

Overall Interview Experience Rating

4.4/5

based on 9 interview experiences

Difficulty level

Easy 50%
Moderate 50%

Duration

Less than 2 weeks 50%
4-6 weeks 50%
View more

Interview Questions from Similar Companies

TCS Interview Questions
3.6
 • 11.1k Interviews
Accenture Interview Questions
3.8
 • 8.6k Interviews
Infosys Interview Questions
3.6
 • 7.9k Interviews
Wipro Interview Questions
3.7
 • 6k Interviews
Cognizant Interview Questions
3.7
 • 5.9k Interviews
Capgemini Interview Questions
3.7
 • 5k Interviews
Tech Mahindra Interview Questions
3.5
 • 4.1k Interviews
HCLTech Interview Questions
3.5
 • 4.1k Interviews
Genpact Interview Questions
3.8
 • 3.4k Interviews
DXC Technology Interview Questions
3.7
 • 836 Interviews
View all
IBM Infrastructure Specialist Salary
based on 781 salaries
₹4.9 L/yr - ₹22.5 L/yr
20% less than the average Infrastructure Specialist Salary in India
View more details

IBM Infrastructure Specialist Reviews and Ratings

based on 63 reviews

4.1/5

Rating in categories

4.2

Skill development

4.3

Work-life balance

3.7

Salary

4.0

Job security

4.1

Company culture

3.5

Promotions

3.9

Work satisfaction

Explore 63 Reviews and Ratings
Infrastructure Specialist-Cloud Platforms

Bangalore / Bengaluru

8-10 Yrs

₹ 5.6-21 LPA

Infrastructure Specialist-AWS Platform

Bangalore / Bengaluru

5-10 Yrs

₹ 5.2-21 LPA

Infrastructure Specialist-Cloud Application Operations

Bangalore / Bengaluru

4-7 Yrs

₹ 7-12.5 LPA

Explore more jobs
Application Developer
12.5k salaries
unlock blur

₹5.1 L/yr - ₹26.3 L/yr

Software Engineer
5.9k salaries
unlock blur

₹8.1 L/yr - ₹26.1 L/yr

Software Developer
5.7k salaries
unlock blur

₹13.8 L/yr - ₹35.2 L/yr

Senior Software Engineer
5.4k salaries
unlock blur

₹12.5 L/yr - ₹36 L/yr

Advisory System Analyst
5.2k salaries
unlock blur

₹9.5 L/yr - ₹27 L/yr

Explore more salaries
Compare IBM with

Oracle

3.7
Compare

TCS

3.6
Compare

Cognizant

3.7
Compare

Accenture

3.8
Compare
write
Share an Interview