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
4.0

based on 21.5k Reviews

Filter interviews by

IBM DevOps and Automation Engineer Interview Questions and Answers

Updated 15 Oct 2024

IBM DevOps and Automation Engineer Interview Experiences

1 interview found

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

I applied via Naukri.com and was interviewed in Oct 2022. There were 3 interview rounds.

Round 1 - Technical 

(2 Questions)

  • Q1. Kubernetes related
  • Q2. Ci cd pipeline related scenario based
Round 2 - Technical 

(2 Questions)

  • Q1. Troubleshooting questions
  • Q2. Entire devops pipeline with tools stack used in my current project
  • Ans. 

    Our devops pipeline includes Jenkins for CI/CD, Docker for containerization, Ansible for configuration management, and Nagios for monitoring.

    • Jenkins for continuous integration and continuous deployment

    • Docker for containerization of applications

    • Ansible for configuration management and automation

    • Nagios for monitoring system performance and alerts

  • Answered by AI
Round 3 - HR 

(2 Questions)

  • Q1. Salary discussion
  • Q2. Role related discussion

Skills evaluated in this interview

Interview questions from similar companies

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

I was interviewed in Dec 2024.

Round 1 - Technical 

(7 Questions)

  • Q1. Write code to implement and explicit wait in Selenium
  • Q2. Write code to implement Robot class in java
  • Q3. How would you locate the Xpath for the "Today's Deal" menu item on Amazon
  • Q4. What will be the memory allocation for the code String str1 = "Automation"; String str2 = new String("Automation");
  • Q5. What is the difference between str1==str2 and str1.equals(str2)
  • Q6. Meaning of status code 401 and 502
  • Q7. Print first 4 letter and last 4 letter of String str="www.amazon.com"
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
No response

I was interviewed in Dec 2024.

Round 1 - Technical 

(2 Questions)

  • Q1. Difference between TOSCA and Selenium
  • Q2. How do we automate the Multiple pages in API testing
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
Selected Selected

I was interviewed in Dec 2024.

Round 1 - Technical 

(5 Questions)

  • Q1. Architecture of Openshift/Kuberenets?
  • Q2. Scenario question about RedHat Openshift/Kubernetes.
  • Q3. Difference between Stateful and Stateless Sets
  • Q4. Write sample deployment.yaml
  • Q5. Questions about Git
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 Nov 2024. There was 1 interview round.

Round 1 - Technical 

(4 Questions)

  • Q1. What is the difference between IAAS, PAAS, SAAS in AWS?
  • Q2. How do you ensure high availability in cloud computing?
  • Q3. How you monitor and troubleshoot in kubernetes?
  • Q4. Tell the best security practices in AWS cloud?

Interview Preparation Tips

Topics to prepare for TCS Devops Engineer interview:
  • aws
  • kubernetes
Interview preparation tips for other job seekers - Learn AWS services.
Interview experience
3
Average
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
-

I applied via Naukri.com and was interviewed in Sep 2024. There was 1 interview round.

Round 1 - Technical 

(10 Questions)

  • Q1. What is the output of below code class Animal{ Animal(){ System.out.println("animal is created") } class Dog extends Animal{ Dog(){ System.out.println("Dog is created")} class TestSuper4{ pub...
  • Ans. 

    The output of the code will be 'animal is created' followed by 'Dog is created'.

    • The code defines a class Animal with a constructor that prints 'animal is created'.

    • It also defines a class Dog that extends Animal, with a constructor that prints 'Dog is created'.

    • In the main method, an instance of Dog is created, which will trigger the constructors of both Animal and Dog classes.

  • Answered by AI
  • Q2. Output of this : System.out.println(10+20+"Hello"+30+40) - Explain
  • Q3. Output of this : String name="Hello"; name=name+"There"; system.out.println(name)
  • Ans. 

    The output will be 'HelloThere'

    • Concatenation of 'Hello' and 'There' results in 'HelloThere'

    • The final string is printed using System.out.println()

  • Answered by AI
  • Q4. StringBuffer buffer=new StringBuffer("Hello") buffer.append("There"); System.out.println(buffer);
  • Ans. 

    The code creates a StringBuffer object with 'Hello' and appends 'There' to it before printing the final string.

    • StringBuffer is mutable, so the original 'Hello' string can be modified

    • The append() method adds the specified string to the end of the buffer

    • The final output will be 'HelloThere'

  • Answered by AI
  • Q5. Which is valid or invalid a. ChromeDriver driver=new ChromeDriver(); b. WebDriver driver=new ChromeDriver(); c. WebDriver driver2=new WebDriver(); driver2=new ChromeDriver();
  • Ans. 

    Option a is valid, option b is valid, option c is invalid.

    • Option a is valid because ChromeDriver is a subclass of WebDriver, so it can be assigned to a WebDriver reference.

    • Option b is valid because ChromeDriver is a subclass of WebDriver, so it can be instantiated using a WebDriver reference.

    • Option c is invalid because WebDriver is an interface and cannot be instantiated directly. It can only be used as a reference typ

  • Answered by AI
  • Q6. Program to sort the input in descending order without using inbuild method/functions
  • Ans. 

    Sort input array of strings in descending order without using inbuilt functions

    • Iterate through the array and compare each element with the rest to find the largest element

    • Swap the largest element with the first element, then repeat the process for the remaining elements

    • Continue this process until the array is sorted in descending order

  • Answered by AI
  • Q7. Difference between findElement and findElements
  • Ans. 

    findElement returns the first matching element on the page, while findElements returns a list of all matching elements.

    • findElement returns a single WebElement matching the locator provided

    • findElements returns a list of WebElements matching the locator provided

    • findElement will throw NoSuchElementException if no element is found, while findElements will return an empty list

  • Answered by AI
  • Q8. Difference between getwindowhandle and getwindowhandles() and what is output type
  • Ans. 

    getwindowhandle returns the handle of the current window, getwindowhandles() returns handles of all open windows

    • getwindowhandle returns a single window handle, while getwindowhandles() returns a set of window handles

    • getwindowhandle is used to switch between windows in Selenium WebDriver

    • Output type of getwindowhandle is String, while output type of getwindowhandles() is Set

Answered by AI
  • Q9. Question on finding the xpaths on website
  • Q10. Difference between String and StringBuilder?
  • Ans. 

    String is immutable, while StringBuilder is mutable and more efficient for concatenating strings.

    • String is immutable, meaning its value cannot be changed once it is created.

    • StringBuilder is mutable, allowing for modifications to the string without creating a new object.

    • StringBuilder is more efficient for concatenating multiple strings as it does not create new objects each time.

    • Example: String str = "Hello"; StringBuil

  • Answered by AI

    Skills evaluated in this interview

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

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

    Round 1 - Technical 

    (2 Questions)

    • Q1. Can you tell me about yourself?
    • Ans. 

      I am a highly skilled Automation Engineer with a strong background in programming and problem-solving.

      • Experienced in developing automated test scripts using tools like Selenium and Appium

      • Proficient in programming languages such as Java, Python, and C#

      • Familiar with CI/CD pipelines and version control systems like Git

      • Strong analytical skills and attention to detail

      • Excellent communication and teamwork abilities

    • Answered by AI
    • Q2. Topic related to Locators, Waits,Handel Dropdown Menu, OOPS concepts, frame work used in previous organization
    Round 2 - Technical 

    (2 Questions)

    • Q1. Tell me about yourself
    • Ans. 

      I am a highly skilled Automation Engineer with a strong background in programming and problem-solving.

      • Experienced in designing, developing, and implementing automated testing solutions

      • Proficient in programming languages such as Python, Java, and C++

      • Familiar with various automation tools like Selenium and Jenkins

      • Strong analytical skills and attention to detail

      • Excellent communication and teamwork abilities

    • Answered by AI
    • Q2. FrameWoek used, Locators, How to take Screenshot in Selenium,Java program, Handel dropdown menu
    Interview experience
    5
    Excellent
    Difficulty level
    Easy
    Process Duration
    Less than 2 weeks
    Result
    Selected Selected

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

    Round 1 - One-on-one 

    (17 Questions)

    • Q1. Did you face any challenge while creating the DevOps pipeline?
    • Ans. 

      Yes, I faced challenges while creating the DevOps pipeline.

      • One challenge was integrating multiple tools and technologies into the pipeline.

      • Another challenge was ensuring smooth communication and collaboration between different teams involved in the pipeline.

      • I also faced challenges in automating the testing and deployment processes to achieve continuous integration and continuous delivery.

      • Dealing with legacy systems and...

    • Answered by AI
    • Q2. How do your container communicate in Kubernetes?
    • Ans. 

      Containers in Kubernetes communicate with each other through networking and service discovery mechanisms.

      • Containers within the same pod can communicate over localhost.

      • Containers in different pods can communicate using Kubernetes services.

      • Kubernetes assigns each pod a unique IP address for communication.

      • Kubernetes also supports DNS-based service discovery for containers.

    • Answered by AI
    • Q3. If you want to restrict the communication between the kubernetes pod, how would you restrict that one?
    • Ans. 

      Restricting communication between Kubernetes pods can be achieved using network policies.

      • Use Network Policies in Kubernetes to define rules for pod-to-pod communication

      • Specify which pods are allowed to communicate with each other based on labels

      • Deny all traffic by default and only allow specific traffic as needed

      • Example: Define a network policy to allow communication only between pods with label 'app=frontend' and 'app

    • Answered by AI
    • Q4. What is virtual private cloud or Vnet? What is the use of Vnet and why we use it in DevOps?
    • Ans. 

      A virtual private cloud (VPC) or Vnet is a private network in the cloud that allows you to isolate resources and control network traffic.

      • VPC/Vnet provides a secure and isolated environment for resources in the cloud.

      • It allows you to define your own IP address range, subnets, route tables, and network gateways.

      • VPC/Vnet helps in creating a secure connection between on-premises data centers and cloud resources.

      • It is used ...

    • Answered by AI
    • Q5. Can you tell me something about Ansible work in DevOps?
    • Ans. 

      Ansible is a popular automation tool used in DevOps for configuration management, application deployment, and orchestration.

      • Ansible is agentless, meaning it does not require any software to be installed on the nodes being managed.

      • It uses YAML syntax for writing playbooks, which are used to define automation tasks.

      • Ansible can be used for tasks such as provisioning servers, deploying applications, and managing configurat...

    • Answered by AI
    • Q6. What is Client based development?
    • Ans. 

      Client based development is a software development approach where the client's needs and feedback are prioritized throughout the development process.

      • Focus on meeting client requirements and expectations

      • Regular communication and feedback from the client

      • Iterative development cycles based on client input

      • Client involvement in decision-making processes

      • Examples: Agile development, customer-centric design

    • Answered by AI
    • Q7. What is resilience testing?
    • Ans. 

      Resilience testing is a type of testing that evaluates a system's ability to recover from failures and continue functioning.

      • Resilience testing involves intentionally introducing failures or disruptions to a system to see how it responds.

      • The goal of resilience testing is to identify weaknesses in the system's design or implementation that could lead to downtime or data loss.

      • Examples of resilience testing include simulat...

    • Answered by AI
    • Q8. What are DevOps KPI?
    • Ans. 

      DevOps KPI are key performance indicators used to measure the success of DevOps practices in an organization.

      • DevOps KPIs should align with business goals and objectives.

      • Examples of DevOps KPIs include deployment frequency, lead time for changes, mean time to recover, and change failure rate.

      • Monitoring KPIs helps in identifying areas for improvement and optimizing DevOps processes.

    • Answered by AI
    • Q9. What are the various branching strategies used in the version control system?
    • Ans. 

      Various branching strategies in version control systems help manage code changes effectively.

      • Mainline/Branch by Release: Each release has its own branch for bug fixes and maintenance.

      • Feature Branching: Each new feature is developed in a separate branch and merged back to main branch after completion.

      • Gitflow Workflow: Uses main, develop, feature, release, and hotfix branches for a structured workflow.

      • Trunk-Based Develop...

    • Answered by AI
    • Q10. What is feature branching and task branching?
    • Ans. 

      Feature branching and task branching are strategies used in version control systems to manage development tasks.

      • Feature branching involves creating a separate branch for each new feature being developed, allowing for isolation and independent development.

      • Task branching is similar to feature branching but is used for smaller tasks or bug fixes.

      • Both feature branching and task branching help in organizing and managing cod...

    • Answered by AI
    • Q11. What is the difference b/w Continuous delivery and continuous deployment?
    • Ans. 

      Continuous delivery focuses on automating the software delivery process up to production, while continuous deployment automatically deploys every change to production.

      • Continuous delivery involves automating the software delivery process up to production, ensuring that code is always in a deployable state.

      • Continuous deployment goes a step further by automatically deploying every change that passes automated tests to pro...

    • Answered by AI
    • Q12. Different phases in DevOps Methodology
    • Ans. 

      DevOps methodology consists of various phases including plan, code, build, test, release, deploy, operate, and monitor.

      • Plan: Define goals, set priorities, and create a roadmap.

      • Code: Develop and review code changes.

      • Build: Compile the code and create executable files.

      • Test: Verify code changes through automated testing.

      • Release: Deploy changes to production environment.

      • Deploy: Automate deployment process to various environ...

    • Answered by AI
    • Q13. What is blue green deployment pattern
    • Ans. 

      Blue green deployment pattern is a software release strategy that reduces downtime and risk by running two identical production environments.

      • In blue green deployment, one environment (blue) is currently live and serving production traffic, while the other environment (green) is idle.

      • Once the new version of the software is deployed to the green environment and tested thoroughly, traffic is switched from the blue to the ...

    • Answered by AI
    • Q14. What are key elements which are there in continuous testing tools?
    • Ans. 

      Key elements in continuous testing tools include automation, integration with CI/CD pipelines, reporting and analytics, scalability, and support for various testing types.

      • Automation of test cases to ensure quick feedback on code changes

      • Integration with CI/CD pipelines for seamless testing in the software delivery process

      • Reporting and analytics capabilities to track test results and identify issues

      • Scalability to handle ...

    • Answered by AI
    • Q15. Difference b/w centralized and distributed VCS
    • Ans. 

      Centralized VCS stores all versions of files in a central server, while distributed VCS allows each user to have a full copy of the repository.

      • Centralized VCS has a single point of failure, while distributed VCS is more resilient.

      • In centralized VCS, users need constant connection to the central server, while distributed VCS allows offline work.

      • Examples of centralized VCS include SVN and CVS, while Git is a popular dist

    • Answered by AI
    • Q16. How do you setup the VPC with azure?
    • Ans. 

      Setting up a VPC in Azure involves creating a virtual network, subnets, and configuring security groups.

      • Create a virtual network in the Azure portal

      • Define subnets within the virtual network

      • Configure network security groups to control inbound and outbound traffic

      • Establish peering connections with other VPCs if needed

    • Answered by AI
    • Q17. Describe about IAC and Configuration management
    • Ans. 

      IAC stands for Infrastructure as Code, which involves managing and provisioning infrastructure through code. Configuration management involves managing and maintaining the state of systems.

      • IAC allows for automating the process of setting up and managing infrastructure using code

      • Configuration management ensures that the desired state of systems is maintained consistently

      • Tools like Terraform, Ansible, and Puppet are comm...

    • Answered by AI

    Interview Preparation Tips

    Topics to prepare for Accenture Devops Engineer interview:
    • Azure
    • git
    • kubernetes
    • ansible
    • IAC
    • Configuration management
    Interview preparation tips for other job seekers - Clear basics and be confident!!

    Skills evaluated in this interview

    Interview experience
    3
    Average
    Difficulty level
    Moderate
    Process Duration
    -
    Result
    -
    Round 1 - Aptitude Test 

    It was very basic. Consisted of logical and numerical reasoning questions

    Round 2 - HR 

    (5 Questions)

    • Q1. Tell me about yourself
    • Q2. Tell me about your internship experience
    • Q3. Tell me about your projects
    • Q4. Tell me about software development lifecycle
    • Q5. Share screen and solve this coding question

    Interview Preparation Tips

    Interview preparation tips for other job seekers - Be confident and don't freeze. I froze in my interview because of the rudeness of recruiter, but don't make this mistake.
    Interview experience
    5
    Excellent
    Difficulty level
    -
    Process Duration
    -
    Result
    -
    Round 1 - Technical 

    (3 Questions)

    • Q1. What is devops explain tools in devops
    • Ans. 

      DevOps is a software development methodology that combines software development with IT operations to shorten the systems development life cycle.

      • DevOps is a combination of Development (Dev) and Operations (Ops)

      • It focuses on collaboration, automation, and integration between developers and IT operations

      • Tools in DevOps include Jenkins, Docker, Ansible, Git, Kubernetes, etc.

    • Answered by AI
    • Q2. How to create s3 bucket and explain
    • Ans. 

      To create an S3 bucket, you can use the AWS Management Console, AWS CLI, or AWS SDKs.

      • Use the AWS Management Console to create an S3 bucket by navigating to the S3 service, clicking on 'Create bucket', and following the prompts.

      • Use the AWS CLI command 'aws s3api create-bucket' to create an S3 bucket from the command line.

      • Use AWS SDKs such as boto3 for Python or AWS SDK for Java to programmatically create an S3 bucket.

    • Answered by AI
    • Q3. What is ec2 instance
    • Ans. 

      An EC2 instance is a virtual server in Amazon Web Services (AWS) Elastic Compute Cloud (EC2) service.

      • Virtual server in AWS EC2 service

      • Can be easily scaled up or down based on demand

      • Can run various operating systems and applications

      • Example: t2.micro, m5.large

    • Answered by AI

    Skills evaluated in this interview

    IBM Interview FAQs

    How many rounds are there in IBM DevOps and Automation Engineer interview?
    IBM interview process usually has 3 rounds. The most common rounds in the IBM interview process are Technical and HR.
    How to prepare for IBM DevOps and Automation 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 IBM. The most common topics and skills that interviewers at IBM expect are Python, Linux, Ansible, Devops and Jenkins.
    What are the top questions asked in IBM DevOps and Automation Engineer interview?

    Some of the top questions asked at the IBM DevOps and Automation Engineer interview -

    1. Entire devops pipeline with tools stack used in my current proj...read more
    2. Ci cd pipeline related scenario ba...read more
    3. Troubleshooting questi...read more

    Tell us how to improve this page.

    Interview Questions from Similar Companies

    TCS Interview Questions
    3.7
     • 10.3k Interviews
    Accenture Interview Questions
    3.9
     • 8.1k Interviews
    Infosys Interview Questions
    3.7
     • 7.6k Interviews
    Wipro Interview Questions
    3.7
     • 5.6k Interviews
    Cognizant Interview Questions
    3.8
     • 5.5k Interviews
    Capgemini Interview Questions
    3.8
     • 4.8k Interviews
    Tech Mahindra Interview Questions
    3.5
     • 3.8k Interviews
    HCLTech Interview Questions
    3.5
     • 3.8k Interviews
    Genpact Interview Questions
    3.9
     • 3k Interviews
    LTIMindtree Interview Questions
    3.8
     • 3k Interviews
    View all
    IBM DevOps and Automation Engineer Salary
    based on 6 salaries
    ₹7 L/yr - ₹20.4 L/yr
    44% more than the average DevOps and Automation Engineer Salary in India
    View more details
    Application Developer
    11.6k salaries
    unlock blur

    ₹5.5 L/yr - ₹23.8 L/yr

    Software Engineer
    5.6k salaries
    unlock blur

    ₹5.3 L/yr - ₹22.3 L/yr

    Advisory System Analyst
    5.2k salaries
    unlock blur

    ₹9.3 L/yr - ₹27 L/yr

    Senior Software Engineer
    4.8k salaries
    unlock blur

    ₹8 L/yr - ₹30 L/yr

    Senior Systems Engineer
    4.6k salaries
    unlock blur

    ₹5.6 L/yr - ₹19 L/yr

    Explore more salaries
    Compare IBM with

    Oracle

    3.7
    Compare

    TCS

    3.7
    Compare

    Cognizant

    3.8
    Compare

    Accenture

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