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

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. What is the command used to delete a branch in Git?
  • Q3. What is Continuous Testing (CT)?
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

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. What is Continuous Testing (CT)?
  • Q2. How does AWS contribute to DevOps?
  • Q3. What is a Docker image registry?
  • Q4. How many components are there in Docker?
  • Q5. Can you describe the lifecycle of a Docker container?
  • Q6. What is LVM and why is it required?
  • Q7. What is load average in Linux?
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. What is the command used to delete a branch in Git?
  • Q2. What do you know about git reflog?
  • Q3. What is the difference between git revert and git reset?
  • Q4. Can you explain the difference between CMD and ENTRYPOINT in Docker?
  • Q5. How can you monitor a Kubernetes cluster?
  • Q6. What is Kubernetes Load Balancing?
  • Q7. Can you explain the architecture of Jenkins?
Round 3 - HR 

(2 Questions)

Round duration - 30 Minutes
Round difficulty - Easy

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

  • Q1. Can you tell me something about yourself?
  • Q2. Why should we hire you?

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

asked in Lentra AI
Q1. if you want to connect multiple vpc ,we have 2 or 3 vpc, you have ... read more
Q2. Reverse the String Problem Statement You are given a string STR w ... 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 Hidden Number Problem Statement You are given an intege ... 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

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

I applied via campus placement at Vellore Institute of Technology (VIT) and was interviewed in Dec 2024. There were 2 interview rounds.

Round 1 - Coding Test 

3 coding questions were given and all should have to be passed for the next round

Round 2 - Technical 

(2 Questions)

  • Q1. It was based purely on resume
  • Q2. No hr. Only technical round
Interview experience
3
Average
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
No response

I applied via Company Website and was interviewed in Nov 2024. There was 1 interview round.

Round 1 - Technical 

(2 Questions)

  • Q1. Can you explain the difference between a stack and a queue and provide a real-world example where each would be used.
  • Ans. 

    A stack is a Last In First Out (LIFO) data structure, while a queue is a First In First Out (FIFO) data structure.

    • Stack: LIFO - Last In First Out. Example: browser history where the last page visited is the first to be accessed.

    • Queue: FIFO - First In First Out. Example: a line at a grocery store where the first person in line is the first to be served.

  • Answered by AI
  • Q2. Given an array of integers, write a function to find the two numbers that add up to a specific target. How would you optimize this solution?
  • Ans. 

    Function to find two numbers in array that add up to target. Optimize solution.

    • Use a hash map to store each number and its index as you iterate through the array.

    • For each number, check if the difference between the target and the number exists in the hash map.

    • Return the indices of the two numbers that add up to the target.

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Be well prepared with coding challenges, especially related to arrays, linked lists, and trees.
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Walk-in and was interviewed in Dec 2023. There was 1 interview round.

Round 1 - Technical 

(4 Questions)

  • Q1. What technical skills you've learned so far in the college
  • Q2. Where do you see yourself in the next 5 years.
  • Q3. Reverse a linked list
  • Ans. 

    Reverse a linked list by changing the pointers direction

    • Iterate through the linked list and change the direction of pointers

    • Use three pointers - prev, current, next to reverse the list

    • Update the head pointer to point to the new first node

  • Answered by AI
  • Q4. General dbms, os, and cn questions

Interview Preparation Tips

Topics to prepare for Johnson Controls Software Engineer interview:
  • dsa
  • C++
  • computer networks
  • OS
  • sql
Interview preparation tips for other job seekers - just learn basics of computer fundamentals, and know about your project you mentioned in resume, and be good with normal dsa questions like arrays, strings, linked list, stacks and queues, and you should be good mostly

Skills evaluated in this interview

Interview experience
3
Average
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via campus placement at Dr DY Patil Institute of Management and Research, Pune and was interviewed in Nov 2023. 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 - Aptitude Test 

Basic aptitude questions

Round 3 - Group Discussion 

Topic was "which is best work from home or work from office?"

Round 4 - Technical 

(2 Questions)

  • Q1. Questions about html, css and javascript
  • Q2. Questions based on resume
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Coding Test 

Easy coding exercise with test cases

Round 2 - Technical 

(2 Questions)

  • Q1. More about coding exercise
  • Q2. Work experience
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Coding Test 

Building selection system using best practices in C# dot net, SOLID principle, Design Patterns.
It was above average difficult question and time was less. But they were ok to give more time to complete the system. lasted around 4 hours

Round 2 - Aptitude Test 

Asked questions about previous experience and my aptitude. they were keep to know if I am ok to work in fast pace environment. lasted around 40 mins.

Interview Preparation Tips

Interview preparation tips for other job seekers - Be prepared. They have detailed questions based on conceptual clarity.
Interview experience
4
Good
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Referral and was interviewed before Mar 2023. There was 1 interview round.

Round 1 - One-on-one 

(1 Question)

  • Q1. Design considerations for a front end web application
  • Ans. 

    Design considerations for front end web applications include user experience, performance, scalability, accessibility, and security.

    • Consider user experience by designing intuitive interfaces and smooth interactions.

    • Optimize performance by minimizing loading times and reducing unnecessary requests.

    • Ensure scalability by designing modular and flexible components.

    • Prioritize accessibility by following web content accessibil...

  • Answered by AI

Skills evaluated in this interview

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, Consulting, Devops and Siemens.
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.

Siemens Devops Engineer Interview Process

based on 1 interview

Interview experience

5
  
Excellent
View more
Join Siemens #TransformTheEverydayWithUS
Siemens Devops Engineer Salary
based on 158 salaries
₹4.8 L/yr - ₹20.2 L/yr
43% 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

3.5

Job security

4.0

Company culture

3.4

Promotions

3.7

Work satisfaction

Explore 16 Reviews and Ratings
DevOps Engineer - ML /AI

Bangalore / Bengaluru

4-6 Yrs

₹ 4.2-17.12 LPA

DevOps Engineer

Pune

2-4 Yrs

₹ 4.8-12 LPA

Explore more jobs
Software Developer
1.6k salaries
unlock blur

₹3.2 L/yr - ₹22.4 L/yr

Senior Software Engineer
1.6k salaries
unlock blur

₹9.6 L/yr - ₹33.6 L/yr

Software Engineer
1.5k salaries
unlock blur

₹4.2 L/yr - ₹22 L/yr

Manager
607 salaries
unlock blur

₹8.2 L/yr - ₹32 L/yr

Senior Executive
481 salaries
unlock blur

₹5.3 L/yr - ₹20.1 L/yr

Explore more salaries
Compare Siemens with

Schneider Electric

4.2
Compare

Siemens Energy

4.1
Compare

ABB

4.1
Compare

BHEL

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