AmbitionBox

AmbitionBox

Search

Interview Questions

  • Reviews
  • Salaries
  • Interview Questions
  • About Company
  • Benefits
  • Jobs
  • Office Photos
  • Community
  • Home
  • Companies
  • Reviews
  • Salaries
  • Jobs
  • Interviews
  • Salary Calculator
  • Awards 2024
  • Campus Placements
  • Practice Test
  • Compare Companies
+ Contribute
notification
notification
Login
  • Home
  • Communities
  • Companies
    • Companies

      Discover best places to work

    • Compare Companies

      Compare & find best workplace

    • Add Office Photos

      Bring your workplace to life

    • Add Company Benefits

      Highlight your company's perks

  • Reviews
    • Company reviews

      Read reviews for 6L+ companies

    • Write a review

      Rate your former or current company

  • Salaries
    • Browse salaries

      Discover salaries for 6L+ companies

    • Salary calculator

      Calculate your take home salary

    • Are you paid fairly?

      Check your market value

    • Share your salary

      Help other jobseekers

    • Gratuity calculator

      Check your gratuity amount

    • HRA calculator

      Check how much of your HRA is tax-free

    • Salary hike calculator

      Check your salary hike

  • Interviews
    • Company interviews

      Read interviews for 40K+ companies

    • Share interview questions

      Contribute your interview questions

  • Jobs
  • Awards
    pink star
    VIEW WINNERS
    • ABECA 2025
      VIEW WINNERS

      AmbitionBox Employee Choice Awards - 4th Edition

    • ABECA 2024

      AmbitionBox Employee Choice Awards - 3rd Edition

    • AmbitionBox Best Places to Work 2022

      2nd Edition

    Participate in ABECA 2026 right icon dark
For Employers
logo
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 Work with us arrow

Compare button icon Compare button icon Compare
4.0

based on 5.1k Reviews

  • Why join us
  • Reviews
    5.1k
  • Salaries
    30.7k
  • Interviews
    451
  • Jobs
    496
  • Benefits
    699
  • Photos
    13
  • Posts
    4

Filter interviews by

Siemens Software Developer Interview Questions and Answers

Updated 17 Dec 2024

24 Interview questions

A Software Developer was asked 9mo ago
Q. Write a program to find duplicate elements in an array.
Ans. 

Program to find duplicates in an array of strings

  • Iterate through the array and store each element in a hash set

  • If an element is already in the hash set, it is a duplicate

  • Return a list of all duplicates found

A Software Developer was asked
Q. Write basic code.
Ans. 

Basic code example using an array of strings

  • Declare an array of strings in the preferred programming language

  • Initialize the array with some string values

  • Access and manipulate elements in the array as needed

Software Developer Interview Questions Asked at Other Companies

asked in Amazon
Q1. Maximum Subarray Sum Problem Statement Given an array of integers ... read more
View answers (43)
asked in Rakuten
Q2. Merge Two Sorted Arrays Problem Statement Given two sorted intege ... read more
View answers (4)
asked in Amazon
Q3. Minimum Number of Platforms Needed Problem Statement You are give ... read more
View answers (7)
asked in Cognizant
Q4. Nth Fibonacci Number Problem Statement Calculate the Nth term in ... read more
View answers (5)
asked in PhonePe
Q5. Form a Triangle Problem Statement You are given an array of integ ... read more
View answers (2)
View All
A Software Developer was asked
Q. Write a simple program.
Ans. 

A simple program to print 'Hello, World!'

  • Create a new file with a .py extension

  • Write 'print('Hello, World!')' inside the file

  • Save the file and run it using a Python interpreter

A Software Developer was asked
Q. Explain the concepts of Object-Oriented Programming (OOP).
Ans. 

OOPs (Object-Oriented Programming) is a programming paradigm based on the concept of objects, which can contain data and code.

  • OOPs focuses on creating objects that interact with each other to solve a problem

  • Key principles include Inheritance, Encapsulation, Polymorphism, and Abstraction

  • Inheritance allows a class to inherit properties and behavior from another class

  • Encapsulation hides the internal state of an objec...

A Software Developer was asked
Q. 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 p...

A Software Developer was asked
Q. What are the concepts of OOPS?
Ans. 

OOPs concepts are the principles of Object-Oriented Programming that help in designing and implementing software systems.

  • Encapsulation - bundling of data and methods that operate on that data

  • Inheritance - ability of a class to inherit properties and methods from its parent class

  • Polymorphism - ability of objects to take on multiple forms or behaviors

  • Abstraction - hiding of complex implementation details and showing...

A Software Developer was asked
Q. 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.

Are these interview questions helpful?
A Software Developer was asked 10mo ago
Q. Implementation of OOPS
Ans. 

OOPS (Object-Oriented Programming) is a programming paradigm based on the concept of objects, which can contain data and code.

  • OOPS focuses on the use of classes and objects to organize code and data

  • Encapsulation, inheritance, polymorphism, and abstraction are key principles of OOPS

  • Example: Inheritance allows a class to inherit properties and methods from another class

A Software Developer was asked 11mo ago
Q. Design Patterns in C#
Ans. 

Design patterns in C# are reusable solutions to common problems in software design.

  • Design patterns help in creating maintainable and scalable code.

  • Some common design patterns in C# include Singleton, Factory, Observer, and Strategy.

  • Each design pattern has its own purpose and can be applied in different scenarios.

  • Design patterns promote code reusability and improve code organization.

A Software Developer was asked 11mo ago
Q. Oops concept in C#
Ans. 

Oops concept in C# refers to Object-Oriented Programming principles like Inheritance, Polymorphism, Encapsulation, and Abstraction.

  • Inheritance allows a class to inherit properties and behavior from another class.

  • Polymorphism allows objects of different classes to be treated as objects of a common superclass.

  • Encapsulation hides the internal state of an object and only exposes necessary functionalities.

  • Abstraction f...

1 2 3

Siemens Software Developer Interview Experiences

28 interviews found

Software Developer Interview Questions & Answers

user image Dadu Katekar

posted on 9 Dec 2024

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

I applied via Campus Placement and was interviewed in Nov 2024. There were 3 interview rounds.

Round 1 - Aptitude Test 

Basic aptitude and common CS fundamentals questions.

Round 2 - Group Discussion 

Share the current technology related topic.

Round 3 - One-on-one 

(2 Questions)

  • Q1. Question on OOPS
  • Add your answer
  • Q2. Coding questions
  • Add your answer

Interview Preparation Tips

Interview preparation tips for other job seekers - Focus on CS fundamentals. Basic simple data structures questions asked in the interview.
Anonymous

Software Developer Interview Questions & Answers

user image Anonymous

posted on 19 Sep 2024

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

I applied via Campus Placement

Round 1 - Coding Test 

2 coding questions based on dp and string

Round 2 - Technical 

(2 Questions)

  • Q1. Oops, dsa and questions on my projects like how will you improve your project
  • Add your answer
  • Q2. Why do you want to join company
  • Ans. 

    I am impressed by the company's innovative projects and collaborative work environment.

    • Exciting projects and innovative technologies being used

    • Collaborative work environment with opportunities for growth

    • Positive company culture and values align with my own

    • Strong reputation in the industry

  • Answered by AI
    Add your answer
Anonymous

Software Developer Interview Questions & Answers

user image Anonymous

posted on 2 Sep 2024

Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
-
Round 1 - One-on-one 

(1 Question)

  • Q1. Basics of .Net Programming Language
  • Add your answer
Round 2 - Behavioral 

(1 Question)

  • Q1. Basics of previous work
  • Add your answer
Round 3 - HR 

(1 Question)

  • Q1. Basics of my personal interest
  • Add your answer
Anonymous

Software Developer Interview Questions & Answers

user image Anonymous

posted on 4 Sep 2024

Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(1 Question)

  • Q1. Write program for finding duplicates
  • Ans. 

    Program to find duplicates in an array of strings

    • Iterate through the array and store each element in a hash set

    • If an element is already in the hash set, it is a duplicate

    • Return a list of all duplicates found

  • Answered by AI
    Add your answer

Interview Preparation Tips

Interview preparation tips for other job seekers - read oops and design patterns

Skills evaluated in this interview

Anonymous

Software Developer Interview Questions & Answers

user image Anonymous

posted on 21 Oct 2024

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

I applied via Campus Placement and was interviewed in Apr 2024. There were 2 interview rounds.

Round 1 - Coding Test 

20 MCQ on aptitude ,cn,os,DBMS ,2 easy medium coding questions

Round 2 - Technical 

(2 Questions)

  • Q1. Introduce yourself
  • Add your answer
  • Q2. Oops related questions
  • Add your answer

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare core subjects
Anonymous

Software Developer Interview Questions & Answers

user image Anonymous

posted on 15 Jul 2024

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

I applied via Company Website and was interviewed in Jan 2024. There were 4 interview rounds.

Round 1 - Technical 

(1 Question)

  • Q1. As I joined as a Mendix developer, questions are related to mendix and front end.
  • Add your answer
Round 2 - Technical 

(1 Question)

  • Q1. Some hands on questions on mendix and rest apis
  • Add your answer
Round 3 - Behavioral 

(1 Question)

  • Q1. Typical managerial question answer.. nothing new
  • Add your answer
Round 4 - HR 

(1 Question)

  • Q1. More like salary negotiations
  • Add your answer
Anonymous

Software Developer Interview Questions & Answers

user image Anonymous

posted on 23 Aug 2024

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

I applied via Company Website and was interviewed in Feb 2024. There were 2 interview rounds.

Round 1 - Technical 

(2 Questions)

  • Q1. Implementation of OOPS
  • Ans. 

    OOPS (Object-Oriented Programming) is a programming paradigm based on the concept of objects, which can contain data and code.

    • OOPS focuses on the use of classes and objects to organize code and data

    • Encapsulation, inheritance, polymorphism, and abstraction are key principles of OOPS

    • Example: Inheritance allows a class to inherit properties and methods from another class

  • Answered by AI
    Add your answer
  • Q2. Cppy constructor implementation
  • Ans. 

    A C++ constructor initializes objects and can be overloaded for different initialization scenarios.

    • Constructors have the same name as the class.

    • They can be parameterized to allow different initialization: `ClassName(int x) { ... }`.

    • Default constructors have no parameters: `ClassName() { ... }`.

    • Copy constructors create a new object as a copy of an existing object: `ClassName(const ClassName &obj) { ... }`.

    • Destructor...

  • Answered by AI
    Add your answer
Round 2 - HR 

(2 Questions)

  • Q1. Aspirations, goals
  • Add your answer
  • Q2. Background ques
  • Add your answer

Skills evaluated in this interview

Anonymous

Software Developer Interview Questions & Answers

user image Anonymous

posted on 18 Feb 2024

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

I appeared for an interview in Jan 2024.

Round 1 - Technical 

(4 Questions)

  • Q1. They asked me to write simple programs in c , python ,java I wrote finally it was good
  • Add your answer
  • Q2. Write basic code
  • Ans. 

    Basic code example using an array of strings

    • Declare an array of strings in the preferred programming language

    • Initialize the array with some string values

    • Access and manipulate elements in the array as needed

  • Answered by AI
    Add your answer
  • Q3. Write simple profram
  • Ans. 

    A simple program to print 'Hello, World!'

    • Create a new file with a .py extension

    • Write 'print('Hello, World!')' inside the file

    • Save the file and run it using a Python interpreter

  • Answered by AI
    Add your answer
  • Q4. They aasked wts ur strenth and weakness So for that i teplied my strengthis my smartwork
  • Add your answer

Interview Preparation Tips

Interview preparation tips for other job seekers - It was good

Skills evaluated in this interview

Anonymous

Software Developer Interview Questions & Answers

user image Satwik krishna

posted on 19 Sep 2024

Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-

I applied via Campus Placement and was interviewed in Aug 2024. There were 3 interview rounds.

Round 1 - Aptitude Test 

Gcd questions - 120 min

Round 2 - Coding Test 

Palindrome bt conversion

Round 3 - HR 

(1 Question)

  • Q1. Resume question
  • Add your answer
Anonymous

Software Developer Interview Questions & Answers

user image Anonymous

posted on 5 Oct 2024

Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Coding Test 

Program to Reverse linked list

Anonymous

What people are saying about Siemens

View All
safemosquito
1w (edited)
ex -
Siemens
What will be the outcome
For an interview, reached 3rd Round and expecting last round with HR, they have requested my documents of education and salary. Whether I'm selected or not ? Any person who has faced interview process in Burns and Mcdonnell, can just help. But response from them is delayed, while other previous replies were on time.
Got a question about Siemens?
Ask anonymously on communities.
More about working at Siemens
  • HQ - Mumbai, Maharashtra, India
  • Industrial Automation
  • 10k-50k Employees (India)
  • Public
  • Electronics Manufacturing
  • Software Product
  • Electrical Equipment
  • Urban Transport
  • Semiconductors

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.

Tell us how to improve this page.

Siemens Interviews By Designations

  • Siemens Software Developer Interview Questions
  • Siemens Software Engineer Interview Questions
  • Siemens Senior Software Engineer Interview Questions
  • Siemens Senior Executive Interview Questions
  • Siemens Electrical Engineer Interview Questions
  • Siemens Graduate Engineer Trainee (Get) Interview Questions
  • Siemens System Engineer Interview Questions
  • Siemens Intern Interview Questions
  • Show more
  • Siemens Graduate Trainee Interview Questions
  • Siemens Consultant Interview Questions

Interview Questions for Popular Designations

  • Senior Software Developer Interview Questions
  • Lead Software Engineer Interview Questions
  • Software Development Engineer II Interview Questions
  • Associate Software Developer Interview Questions
  • Software Development Engineer 1 Interview Questions
  • Software Engineer Interview Questions
  • Software Engineer Level 1 Interview Questions
  • Senior Software Engineer Interview Questions
  • Show more
  • Senior Software Development Engineer Interview Questions
  • Java Software Developer Interview Questions

Overall Interview Experience Rating

4/5

based on 25 interview experiences

Difficulty level

Easy 9%
Moderate 91%

Duration

Less than 2 weeks 82%
2-4 weeks 18%
View more
logo
Join Siemens #TransformTheEverydayWithUs

Software Developer Interview Questions from Similar Companies

Utthunga Technologies
Utthunga Technologies Software Developer Interview Questions
3.3
 • 4 Interviews
Schneider Electric
Schneider Electric Software Developer Interview Questions
4.1
 • 3 Interviews
Addverb Technologies
Addverb Technologies Software Developer Interview Questions
3.7
 • 3 Interviews
Automotive Robotics (India)
Automotive Robotics (India) Software Developer Interview Questions
3.5
 • 3 Interviews
MNC AUTOMATION
MNC AUTOMATION Software Developer Interview Questions
4.2
 • 2 Interviews
Agiliad Technologies
Agiliad Technologies Software Developer Interview Questions
3.5
 • 2 Interviews
Johnson Controls
Johnson Controls Software Developer Interview Questions
3.6
 • 1 Interview
Rockwell Automation
Rockwell Automation Software Developer Interview Questions
3.7
 • 1 Interview
Wipro PARI
Wipro PARI Software Developer Interview Questions
3.3
 • 1 Interview
Automation Anywhere
Automation Anywhere Software Developer Interview Questions
3.7
 • 1 Interview
View all
Siemens Software Developer Salary
based on 1.8k salaries
₹3.8 L/yr - ₹27 L/yr
53% more than the average Software Developer Salary in India
View more details

Siemens Software Developer Reviews and Ratings

based on 176 reviews

4.0/5

Rating in categories

3.7

Skill development

4.3

Work-life balance

3.5

Salary

4.2

Job security

4.3

Company culture

3.2

Promotions

3.7

Work satisfaction

Explore 176 Reviews and Ratings
Software Developer Jobs at Siemens
Siemens
Software Developer - SQL

Pune

2-5 Yrs

₹ 4.5-20 LPA

Siemens
Software Developer - Java

Pune

2-5 Yrs

₹ 4.5-20 LPA

Siemens
Software Developer

Pune

2-6 Yrs

₹ 4.5-20 LPA

Explore more jobs
Siemens Salaries in India
Software Developer
1.8k salaries
unlock blur

₹3.8 L/yr - ₹27 L/yr

Senior Software Engineer
1.7k salaries
unlock blur

₹9.4 L/yr - ₹35 L/yr

Software Engineer
1.5k salaries
unlock blur

₹6 L/yr - ₹25 L/yr

Manager
599 salaries
unlock blur

₹8.2 L/yr - ₹29 L/yr

Senior Process Associate
481 salaries
unlock blur

₹2.2 L/yr - ₹7 L/yr

Explore more salaries
Compare Siemens with
Schneider Electric

Schneider Electric

4.1
Compare
Siemens Energy

Siemens Energy

4.1
Compare
Johnson Controls

Johnson Controls

3.6
Compare
Honeywell Automation

Honeywell Automation

3.8
Compare
Popular Calculators
Are you paid fairly?
Monthly In-hand Salary Calculator
Gratuity Calculator
HRA Calculator
Salary Hike Calculator
  • Home >
  • Interviews >
  • Siemens Interview Questions >
  • Siemens Software Developer Interview Questions
write
Share an Interview
Stay ahead in your career. Get AmbitionBox app
Awards Banner

Trusted by over 1.5 Crore job seekers to find their right fit company

80 Lakh+

Reviews

4 Crore+

Salaries

10 Lakh+

Interviews

1.5 Crore+

Users

Contribute
Search

Interview Questions

  • Reviews
  • Salaries
  • Interview Questions
  • About Company
  • Benefits
  • Jobs
  • Office Photos
  • Community
Users/Jobseekers
  • Companies
  • Reviews
  • Salaries
  • Jobs
  • Interviews
  • Salary Calculator
  • Practice Test
  • Compare Companies
Employers
  • Create a new company
  • Update company information
  • Respond to reviews
  • Invite employees to review
  • AmbitionBox Offering for Employers
  • AmbitionBox Employers Brochure
AmbitionBox Awards
  • ABECA 2025 winners awaited tag
  • Participate in ABECA 2026
  • Invite employees to rate
AmbitionBox
  • About Us
  • Our Team
  • Email Us
  • Blog
  • FAQ
  • Credits
  • Give Feedback
Terms & Policies
  • Privacy
  • Grievances
  • Terms of Use
  • Summons/Notices
  • Community Guidelines
Get AmbitionBox app

Made with ❤️ in India. Trademarks belong to their respective owners. All rights reserved © 2025 Info Edge (India) Ltd.

Follow Us
  • Youtube
  • Instagram
  • LinkedIn
  • Facebook
  • Twitter