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 Verified Tick

Compare button icon Compare button icon Compare

Filter interviews by

Clear (1)

Siemens Software Developer Interview Questions, Process, and Tips

Updated 17 Dec 2024

Top Siemens Software Developer Interview Questions and Answers

  • Q1. Count Inversions Problem Statement Given an integer array ARR of size N , your task is to find the total number of inversions that exist in the array. An inversion is de ...read more
  • Q2. Maximum Subarray Sum Problem Statement Given an array arr of length N consisting of integers, find the sum of the subarray (including empty subarray) with the maximum su ...read more
  • Q3. Remove Character from String Problem Statement Given a string str and a character 'X', develop a function to eliminate all instances of 'X' from str and return the resul ...read more
View all 25 questions

Siemens Software Developer Interview Experiences

28 interviews found

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

I applied via Company Website and was interviewed before May 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 Resume tips
Round 2 - Coding Test 

Create applications related to ekart applications applying design pattern and OOPS concept

Round 3 - One-on-one 

(2 Questions)

  • Q1. Puzzles and C# Eelated questions
  • Q2. What is new in C# 10
  • Ans. 

    C# 10 introduces new features like file-scoped namespaces, global using directives, and interpolated string handlers.

    • File-scoped namespaces allow defining namespaces at the file level instead of wrapping everything in a namespace block.

    • Global using directives simplify the process of importing namespaces across the entire project.

    • Interpolated string handlers provide a way to customize how interpolated strings are proces

  • Answered by AI
Round 4 - HR 

(1 Question)

  • Q1. Just salary discussion

Skills evaluated in this interview

Round 1 - Technical 

(1 Question)

  • Q1. Please introduce yourself.
Round 2 - HR 

(1 Question)

  • Q1. Why you leave your current company

Interview Preparation Tips

Interview preparation tips for other job seekers - smile and confidence during the interview

Software Developer Interview Questions Asked at Other Companies

asked in Amazon
Q1. Maximum Subarray Sum Problem Statement Given an array of integers ... read more
asked in Amazon
Q2. Minimum Number of Platforms Needed Problem Statement You are give ... read more
asked in Rakuten
Q3. Merge Two Sorted Arrays Problem Statement Given two sorted intege ... read more
asked in Cognizant
Q4. Nth Fibonacci Number Problem Statement Calculate the Nth term in ... read more
Q5. Find Duplicate in Array Problem Statement You are provided with a ... read more

Interview Questionnaire 

1 Question

  • Q1. As I am from electronics background,I was asked about few electronics related question about ADC and DAC and encoding and decoding,And i was asked for a coding and some general puzzles

Interview Preparation Tips

Interview preparation tips for other job seekers - Be confident ,Be prepared for the round you are going,Have a good communication skill

I was interviewed before Mar 2021.

Round 1 - Coding Test 

(2 Questions)

Round duration - 120 Minutes
Round difficulty - Medium

This was an online MCQ + coding round where we had 1 hour to solve the MCQ's and another 1 hour to solve 2 coding
questions. The MCQ's were related to both General and Technical Aptitude.

  • Q1. 

    Path Sum Calculation

    You are provided with the root node of a binary tree containing 'N' nodes and an integer value 'TARGET'. Your task is to determine the number of leaf nodes for which the sum of the no...

  • Ans. 

    Calculate the number of leaf nodes in a binary tree with a path sum equal to a given target.

    • Traverse the binary tree from root to leaf nodes while keeping track of the sum along the path.

    • Recursively check if the current node is a leaf node and if the sum equals the target.

    • Increment a counter if the conditions are met and return the counter as the result.

  • Answered by AI
  • Q2. 

    Check If Numbers Are Coprime

    Determine if two given numbers 'a' and 'b' are coprime, meaning they have no common divisors other than 1.

    Input:

    t
    a_1 b_1
    a_2 b_2
    ...
    a_t b_t

    Output:

    true / false
    ...

    Exampl...

  • Ans. 

    Check if two numbers are coprime by finding their greatest common divisor (GCD) and determining if it is 1.

    • Calculate the GCD of the two numbers using Euclidean algorithm.

    • If GCD is 1, the numbers are coprime; otherwise, they are not.

    • Iterate through all pairs of numbers provided in the input.

    • Return true if GCD is 1, false otherwise.

  • Answered by AI
Round 2 - Video Call 

(2 Questions)

Round duration - 50 Minutes
Round difficulty - Medium

This was a standard DSA round where I was given 2 coding questions - the first one was related to DP and the second one was of Linked List. I first explained my approach and then coded the solutions in a production ready manner by applying proper coding principles.

  • Q1. 

    Maximum Length Pair Chain Problem Statement

    You are provided with 'N' pairs of integers such that in any given pair (a, b), the first number is always smaller than the second number, i.e., a < b. A pai...

  • Ans. 

    Find the length of the longest pair chain that can be formed using given pairs.

    • Sort the pairs based on the second element in increasing order.

    • Iterate through the sorted pairs and keep track of the maximum chain length.

    • Update the chain length if the current pair can be added to the chain.

    • Return the maximum chain length at the end.

  • Answered by AI
  • Q2. 

    Palindrome Linked List Problem Statement

    You are provided with a singly linked list of integers. Your task is to determine whether the given singly linked list is a palindrome. Return true if it is a pali...

  • Ans. 

    Check if a given singly linked list is a palindrome or not.

    • Use two pointers approach to find the middle of the linked list.

    • Reverse the second half of the linked list.

    • Compare the first half with the reversed second half to determine if it's a palindrome.

  • Answered by AI
Round 3 - Video Call 

(5 Questions)

Round duration - 60 Minutes
Round difficulty - Medium

This round started with 2 preety decent coding questions - one from DP and the other one was from Binary Search. This was followed by some questions from OOPS and then the interview ended with the interviewer asking me the famous 3-Ants and the Triangle Puzzle.

  • Q1. 

    Subset Sum Equal To K Problem Statement

    Given an array/list of positive integers and an integer K, determine if there exists a subset whose sum equals K.

    Provide true if such a subset exists, otherwise r...

  • Ans. 

    Given an array of positive integers and an integer K, determine if there exists a subset whose sum equals K.

    • Use dynamic programming to solve this problem efficiently

    • Create a 2D array to store if a subset sum is possible for each element and each sum value

    • Iterate through the array and update the 2D array accordingly

    • Check if the value at the last element and K is true to determine if a subset sum equals K

  • Answered by AI
  • Q2. 

    Search In Rotated Sorted Array Problem Statement

    Given a rotated sorted array ARR of size 'N' and an integer 'K', determine the index at which 'K' is present in the array.

    Note:
    1. If 'K' is not present...
  • Ans. 

    Given a rotated sorted array, find the index of a given integer 'K'.

    • Use binary search to find the pivot point where the array is rotated.

    • Based on the pivot point, perform binary search on the appropriate half of the array to find 'K'.

    • Handle cases where 'K' is not present in the array by returning -1.

  • Answered by AI
  • Q3. What is meant by static and dynamic polymorphism?
  • Ans. 

    Static polymorphism is resolved at compile time, while dynamic polymorphism is resolved at runtime.

    • Static polymorphism is achieved through function overloading and operator overloading.

    • Dynamic polymorphism is achieved through virtual functions and function overriding.

    • Example of static polymorphism: function overloading in C++.

    • Example of dynamic polymorphism: virtual functions in C++.

  • Answered by AI
  • Q4. What is abstraction in Object-Oriented Programming?
  • Ans. 

    Abstraction in OOP is the concept of hiding complex implementation details and showing only the necessary features to the outside world.

    • Abstraction allows us to focus on what an object does rather than how it does it.

    • It helps in reducing complexity and improving maintainability of code.

    • Example: In a car, we don't need to know the internal working of the engine to drive it. We just need to know how to operate the pedals

  • Answered by AI
  • Q5. You have 3 ants located at the corners of a triangle. The challenge is to determine the movement pattern of the ants if they all start moving towards each other. What will be the outcome?
Round 4 - HR 

(2 Questions)

Round duration - 30 Minutes
Round difficulty - Easy

This was a Technical Cum HR round where I was first asked some basic OOPS related concepts and then we discussed
about my expectations from the company , learnings and growth in the forthcomig years. I would suggest be honest and
try to communicate your thoughts properly in these type of rounds to maximise your chances of getting selected.

  • Q1. What do you know about the company?
  • Q2. Why should we hire you?

Interview Preparation Tips

Eligibility criteriaAbove 7 CGPASiemens interview preparation:Topics to prepare for the interview - Data Structures, Algorithms, System Design, Aptitude, OOPSTime required to prepare for the interview - 4 MonthsInterview preparation tips for other job seekers

Tip 1 : Must do Previously asked Interview as well as Online Test Questions.
Tip 2 : Go through all the previous interview experiences from Codestudio and Leetcode.
Tip 3 : 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

Siemens interview questions for designations

 Senior Software Developer

 (4)

 Software Developer Intern

 (1)

 Developer

 (1)

 Software Engineer

 (20)

 Software Architect

 (2)

 Lead Software

 (1)

 Java Developer

 (2)

 Senior Developer

 (1)

I applied via Referral and was interviewed in Mar 2021. There was 1 interview round.

Interview Questionnaire 

1 Question

  • Q1. Do you know anything about cloud computing?
  • Ans. 

    Yes, cloud computing refers to the delivery of computing services over the internet.

    • Cloud computing allows users to access data and applications from anywhere with an internet connection.

    • It offers scalability, flexibility, and cost-effectiveness compared to traditional on-premises computing.

    • Examples of cloud computing services include Amazon Web Services, Microsoft Azure, and Google Cloud Platform.

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Very chill interview on the basis of profile.
Learn about new technology like cloud etc.

Skills evaluated in this interview

Get interview-ready with Top Siemens Interview Questions

Interview Questionnaire 

1 Question

  • Q1. C++ Basic , malloc, calloc

Software Developer Jobs at Siemens

View all

Interview Questionnaire 

1 Question

  • Q1. Basic OOPs concepts

Interview Preparation Tips

Interview preparation tips for other job seekers - Be strong in basics.

I applied via Recruitment Consultant and was interviewed in Nov 2019. There were 5 interview rounds.

Interview Questionnaire 

4 Questions

  • Q1. Basic C++, and Data structure focus on pointers and virtual function, vptr, vtable
  • Q2. Prepare about ur current project and process followed for entire development process thoroughly
  • Q3. Prepare common tools like. Linux, git, gdb
  • Q4. Prepare basics of data structures, OOPS, design patterns used

Interview Preparation Tips

Interview preparation tips for other job seekers - Keep a steady approach, focus more and more on basics and working principle of concepts
Contribute & help others!
anonymous
You can choose to be anonymous

Siemens Interview FAQs

How many rounds are there in Siemens Software Developer interview?
Siemens interview process usually has 2-3 rounds. The most common rounds in the Siemens interview process are Technical, HR and Coding Test.
How to prepare for Siemens Software Developer 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 Siemens, Healthcare, Coding, Consulting and Debugging.
What are the top questions asked in Siemens Software Developer interview?

Some of the top questions asked at the Siemens Software Developer interview -

  1. Do you know anything about cloud computi...read more
  2. What is oops conce...read more
  3. What is new in C#...read more
How long is the Siemens Software Developer interview process?

The duration of Siemens Software Developer interview process can vary, but typically it takes about less than 2 weeks to complete.

Recently Viewed

INTERVIEWS

OodlesTechnologies

No Interviews

INTERVIEWS

MAS Financial Services

No Interviews

INTERVIEWS

African Industries

No Interviews

INTERVIEWS

Siemens

No Interviews

INTERVIEWS

Siemens

No Interviews

INTERVIEWS

PCS-Global

No Interviews

INTERVIEWS

Cognizant

No Interviews

INTERVIEWS

Mahindra & Mahindra

No Interviews

INTERVIEWS

Sammaan Capital Limited

No Interviews

Tell us how to improve this page.

Siemens Software Developer Interview Process

based on 25 interviews

4 Interview rounds

  • Technical Round - 1
  • Technical Round - 2
  • HR Round - 1
  • HR Round - 2
View more
Join Siemens #TransformTheEverydayWithUs
Siemens Software Developer Salary
based on 1.6k salaries
₹4.7 L/yr - ₹22.5 L/yr
69% more than the average Software Developer Salary in India
View more details

Siemens Software Developer Reviews and Ratings

based on 165 reviews

4.0/5

Rating in categories

3.6

Skill development

4.3

Work-life balance

3.5

Salary

4.2

Job security

4.3

Company culture

3.1

Promotions

3.6

Work satisfaction

Explore 165 Reviews and Ratings
Software Developer

Bangalore / Bengaluru

4-7 Yrs

₹ 8.4-17 LPA

Software Developer PL11 ( Full stack, Web UI)

Bangalore / Bengaluru

2-7 Yrs

₹ 4.5-17 LPA

Software Developer PL11 (Full stack, C#.Net)

Bangalore / Bengaluru

3-4 Yrs

₹ 7-14.11 LPA

Explore more jobs
Senior Software Engineer
1.6k salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Software Developer
1.6k salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Software Engineer
1.5k salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Manager
604 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Senior Executive
481 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Explore more salaries
Compare Siemens with

Schneider Electric

4.1
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
Rate your experience using AmbitionBox
Terrible
Terrible
Poor
Poor
Average
Average
Good
Good
Excellent
Excellent