Upload Button Icon Add office photos
Premium Employer

i

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

Siemens

Compare button icon Compare button icon Compare
4.1

based on 4.6k Reviews

Filter interviews by

Siemens Devops Engineer Interview Questions, Process, and Tips

Updated 19 May 2024

Top Siemens Devops Engineer Interview Questions and Answers

  • Q1. How to run a docker command remotely. i.e. Docker is installed on both your laptop and a remote linux server. You need to run docker command on the linux server but witho ...read more
  • Q2. DevOps Question What is Continuous Testing (CT)?
  • Q3. Linux Question What is LVM and why is it required?
View all 17 questions

Siemens Devops Engineer Interview Experiences

3 interviews found

Interview experience
5
Excellent
Difficulty level
Easy
Process Duration
2-4 weeks
Result
Selected Selected

I applied via campus placement at National Institute of Technology, Surathkal and was interviewed before May 2023. There were 2 interview rounds.

Round 1 - Aptitude Test 

Its a aptitude test and mode was online

Round 2 - Technical 

(2 Questions)

  • Q1. Sorting methods
  • Q2. Given random numbers and wanted to find sum of max 2 numbers is greater than 100 or not

Interview Preparation Tips

Interview preparation tips for other job seekers - Solve gfg , leetcode problems or go for code force contests

Devops Engineer Interview Questions & Answers

user image CodingNinjas

posted on 11 Mar 2022

I was interviewed before Mar 2021.

Round 1 - Video Call 

(7 Questions)

Round duration - 60 Minutes
Round difficulty - Medium

This round started with some basic questions from DevOps followed by some more questions from Docker and Linux.

  • Q1. DevOps Question

    What is Continuous Testing (CT)?

  • Ans. 

    Continuous Testing (CT) is that phase of DevOps which involves the process of running the automated test cases as part of an automated software delivery pipeline with the sole aim of getting immediate feedback regarding the quality and validation of business risks associated with the automated build of code developed by the developers.

    Using this phase will help the team to test each build continuously (as soon as the c...

  • Answered by CodingNinjas
  • Q2. DevOps Question

    How does AWS contribute to DevOps?

  • Ans. 

    AWS stands for Amazon Web Services and it is a well known cloud provider. AWS helps DevOps by providing the below benefits :

    1) Flexible Resources: AWS provides ready-to-use flexible resources for usage.

    2) Scaling: Thousands of machines can be deployed on AWS by making use of unlimited storage and computation power.

    3) Automation: Lots of tasks can be automated by using various services provided by AWS.

    4) Security: AWS i...

  • Answered by CodingNinjas
  • Q3. Docker Question

    What is docker image registry?

  • Ans. 

    1) A Docker image registry, in simple terms, is an area where the docker images are stored. Instead of converting the applications to containers each and every time, a developer can directly use the images stored in the registry.

    2) This image registry can either be public or private and Docker hub is the most popular and famous public registry available.

  • Answered by CodingNinjas
  • Q4. Docker Question

    How many Docker components are there?

  • Ans. 

    There are three docker components, they are - Docker Client, Docker Host, and Docker Registry.

    1) Docker Client: This component performs “build” and “run” operations for the purpose of opening communication with the docker host.

    2) Docker Host: This component has the main docker daemon and hosts containers and their associated images. The daemon establishes a connection with the docker registry.

    3) Docker Registry: This c...

  • Answered by CodingNinjas
  • Q5. Docker Question

    Describe the lifecycle of Docker Container

  • Ans. 

    The different stages of the docker container from the start of creating it to its end are called the docker container life cycle. 

    The most important stages are:

    1) Created: This is the state where the container has just been created new but not started yet.
    2) Running: In this state, the container would be running with all its associated processes.
    3) Paused: This state happens when the running container has been pau...

  • Answered by CodingNinjas
  • Q6. Linux Question

    What is LVM and why is it required?

  • Ans. 

    1) LVM (Logical Volume Management) is basically a tool that provides logical volume management for the Linux kernel. 

    2) It is being introduced simply to make physical storage device management easier. It also includes allocating disks, striping, mirroring, resizing logical volumes. 

    3) Its main advantages are increased abstraction, flexibility, and control. It simply allows for flexible disk space management.&...

  • Answered by CodingNinjas
  • Q7. Linux Question

    What is load average in Linux?

  • Ans. 

    Load average, as the name suggests, is the average system load on Linux servers being calculated over a given period of time. The load average of Linux servers can be found using “top” and “uptime” commands. It is simply used to keep track of system resources. It is represented by a decimal number starting at 0.00. It tells you the load that the system has been under.

  • Answered by CodingNinjas
Round 2 - Video Call 

(7 Questions)

Round duration - 60 Minutes
Round difficulty - Medium

This round started with me first giving a brief intro about my experience in the DevOps sector and then the interviewer switched to asking me questions about Git , Docker and Kubernetes.

  • Q1. Git Question

    What is the command used to delete a branch?

  • Ans. 

    1) To delete a branch we can simply use the command : git branch –d [head].

    2) To delete a branch locally, we can simply run the command : git branch -d 

    3) To delete a branch remotely, run the command : git push origin --delete 

    4) Deleting a branching scenario occurs for multiple reasons. One such reason is to get rid of the feature branches once it has been merged into the development branch.

  • Answered by CodingNinjas
  • Q2. Git Question

    What do you know about git reflog?

  • Ans. 

    This command tracks every single change made in the repository references (that can be branches or tags) and also maintains the branches/tags log history that was either created locally or checked out. Reference logs such as the commit snapshot of when the branch was created or cloned, checked-out, renamed, or any commits made on the branch are maintained by Git and listed by the ‘reflog’ command.

    1) This recovery of th...

  • Answered by CodingNinjas
  • Q3. Git Question

    Difference between git revert and git reset.

  • Ans. 

    git revert : 
    1) This command is used for creating a new commit that undoes the changes of the previous commit.
    2) Using this command adds a new history to the project without modifying the existing history

    git reset : 
    1) This command is used for undoing the local changes done in the git repository.
    2) This command operates on the commit history, git index, and the working directory.

  • Answered by CodingNinjas
  • Q4. Docker Question

    Can you tell the difference between CMD and ENTRYPOINT?

  • Ans. 

    1) CMD command provides executable defaults for an executing container. In case the executable has to be omitted then the usage of ENTRYPOINT instruction along with the JSON array format has to be incorporated.

    2) ENTRYPOINT specifies that the instruction within it will always be run when the container starts. 
    This command provides an option to configure the parameters and the executables. If the DockerFile does no...

  • Answered by CodingNinjas
  • Q5. Kubernetes Question

    How to monitor the Kubernetes cluster?

  • Ans. 

    Prometheus is used for Kubernetes monitoring. The Prometheus ecosystem consists of multiple components.

    1) Mainly Prometheus server which scrapes and stores time-series data.
    2) Client libraries for instrumenting application code.
    3) Push gateway for supporting short-lived jobs.
    4) Special-purpose exporters for services like StatsD, HAProxy, Graphite, etc.
    5) An alert manager to handle alerts on various support tools.

  • Answered by CodingNinjas
  • Q6. Kubernetes Question

    What is Kubernetes Load Balancing?

  • Ans. 

    Load Balancing is one of the most common and standard ways of exposing the services. There are two types of load balancing in K8s and they are :

    Internal load balancer – This type of balancer automatically balances loads and allocates the pods with the required incoming load.

    External Load Balancer – This type of balancer directs the traffic from the external loads to backend pods.

  • Answered by CodingNinjas
  • Q7. DevOps Question

    Can you explain the architecture of Jenkins?

  • Ans. 

    Jenkins follows the master-slave architecture. The master pulls the latest code from the GitHub repository whenever there is a commitment made to the code. The master requests slaves to perform operations like build, test and run and produce test case reports. This workload is distributed to all the slaves in a uniform manner.

    Jenkins also uses multiple slaves because there might be chances that require different test c...

  • Answered by CodingNinjas
Round 3 - HR 

(2 Questions)

Round duration - 30 Minutes
Round difficulty - Easy

This was a typical HR round with some standard Behavioral questions.

  • Q1. Basic HR Question

    Tell me something about yourself?

  • Ans. 

    Tip 1 : Prepare the points that you will speak in your introduction prior to the interview.
    Tip 2 : Tell about your current cgpa, achievements and authenticated certification
    Tip 3 : I told about my role in current internship and what all I do

  • Answered by CodingNinjas
  • Q2. Basic HR Question

    Why should we hire you ?

  • Ans. 

    Tip 1 : The cross questioning can go intense some time, think before you speak.

    Tip 2 : Be open minded and answer whatever you are thinking, in these rounds I feel it is important to have opinion.

    Tip 3 : Context of questions can be switched, pay attention to the details. It is okay to ask questions in these round,
    like what are the projects currently the company is investing, which team you are mentoring. How all is the ...

  • Answered by CodingNinjas

Interview Preparation Tips

Eligibility criteriaAbove 1+ years of experienceSiemens interview preparation:Topics to prepare for the interview - Docker, Kubernetes, AWS, CI/CD, Git, DBMS, LinuxTime required to prepare for the interview - 4 MonthsInterview preparation tips for other job seekers

Tip 1 : Go through all the previous interview experiences from Codestudio and Leetcode.
Tip 2 : Do at-least 2 good projects and you must know every bit of them.

Application resume tips for other job seekers

Tip 1 : Have at-least 2 good projects explained in short with all important points covered.
Tip 2 : Every skill must be mentioned.
Tip 3 : Focus on skills, projects and experiences more.

Final outcome of the interviewSelected

Skills evaluated in this interview

Devops Engineer Interview Questions Asked at Other Companies

Q1. Reverse the StringYou are given a string 'STR'. The string contai ... read more
asked in Lentra AI
Q2. if you want to connect multiple vpc ,we have 2 or 3 vpc, you have ... read more
asked in Siemens
Q3. How to run a docker command remotely. i.e. Docker is installed on ... read more
asked in Nagarro
Q4. Guess The NumberYou are given an integer ‘N’ and there is a hidde ... read more
Q5. Docker command to transfer an image from one machine to another w ... read more

I applied via Company Website and was interviewed in Mar 2020. There was 1 interview round.

Interview Questionnaire 

4 Questions

  • Q1. What is the VPN port used for UDP
  • Ans. 

    The VPN port used for UDP is typically 500.

    • The VPN port used for UDP is usually port 500.

    • UDP is a protocol that allows for faster transmission of data but does not guarantee delivery or order of packets.

    • Port 500 is commonly used for IPsec VPNs, which provide secure communication over the internet.

    • Other VPN protocols may use different ports for UDP, so it's important to check the specific configuration.

  • Answered by AI
  • Q2. Write a golang program to find furthest number from zero. No this isn't find the greatest number. Because the numbers could be negative so if an array has [ -4 2 24 55 -89 12] then -89 is furthest from zer...
  • Q3. Syntax for grep command and regex
  • Ans. 

    Syntax for grep command and regex

    • grep [options] pattern [file]

    • Regular expression (regex) is used to define the pattern

    • Examples: grep 'hello' file.txt

    • grep -i 'hello' file.txt

    • grep -r 'hello' /path/to/directory

  • Answered by AI
  • Q4. How to run a docker command remotely. i.e. Docker is installed on both your laptop and a remote linux server. You need to run docker command on the linux server but without taking a separate ssh session to...
  • Ans. 

    You can use the Docker API to remotely run Docker commands on a Linux server without taking a separate SSH session.

    • Use the Docker API to interact with the Docker daemon on the remote Linux server.

    • Make sure Docker is installed and running on both your laptop and the remote server.

    • Authenticate with the remote server using appropriate credentials.

    • Establish a connection to the Docker daemon on the remote server using the D...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - This interview was for Mendix which is acquired by Siemens. First round is an online test shared by email. They give you a sample test so you can familiarize with the UI and then you can proceed with the actual test which is an hour long(but mostly its 15 min of multiple choice questions and rest of the time for a program to write)

Skills evaluated in this interview

Devops Engineer Jobs at Siemens

View all

Interview questions from similar companies

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

Interview Questionnaire 

1 Question

  • Q1. All about devops build and release process and core concepts.

Interview Preparation Tips

Interview preparation tips for other job seekers - Practice a lot on Hands-on and key concepts of devops.

Siemens Interview FAQs

How many rounds are there in Siemens Devops Engineer interview?
Siemens interview process usually has 2 rounds. The most common rounds in the Siemens interview process are Aptitude Test and Technical.
How to prepare for Siemens Devops 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 Siemens. The most common topics and skills that interviewers at Siemens expect are Python, GIT, Devops, Siemens and Agile.
What are the top questions asked in Siemens Devops Engineer interview?

Some of the top questions asked at the Siemens Devops Engineer interview -

  1. How to run a docker command remotely. i.e. Docker is installed on both your lap...read more
  2. What is the VPN port used for ...read more
  3. Syntax for grep command and re...read more

Tell us how to improve this page.

People are getting interviews through

based on 2 Siemens interviews
Company Website
Campus Placement
50%
50%
Moderate Confidence
?
Moderate Confidence means the data is based on a sufficient number of responses received from the candidates
Siemens Devops Engineer Salary
based on 154 salaries
₹4.7 L/yr - ₹20.4 L/yr
38% more than the average Devops Engineer Salary in India
View more details

Siemens Devops Engineer Reviews and Ratings

based on 16 reviews

3.9/5

Rating in categories

3.9

Skill development

4.0

Work-Life balance

3.6

Salary & Benefits

3.5

Job Security

4.0

Company culture

3.4

Promotions/Appraisal

3.7

Work Satisfaction

Explore 16 Reviews and Ratings
DevOps Engineer

Chennai

3-5 Yrs

Not Disclosed

Devops Engineer

Noida

2-5 Yrs

Not Disclosed

DevOps Engineer - CI/CD and GitOps

Pune

0-4 Yrs

Not Disclosed

Explore more jobs
Software Developer
1.6k salaries
unlock blur

₹4.9 L/yr - ₹22 L/yr

Senior Software Engineer
1.6k salaries
unlock blur

₹9.4 L/yr - ₹33.5 L/yr

Software Engineer
1.5k salaries
unlock blur

₹4.3 L/yr - ₹22 L/yr

Manager
595 salaries
unlock blur

₹8.2 L/yr - ₹31.8 L/yr

Senior Executive
450 salaries
unlock blur

₹5.4 L/yr - ₹20 L/yr

Explore more salaries
Compare Siemens with

Schneider Electric

4.2
Compare

Siemens Energy

4.2
Compare

ABB

4.1
Compare

BHEL

4.2
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