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

Siemens Interview Questions, Process, and Tips

Updated 26 Mar 2025

Top Siemens Interview Questions and Answers

View all 377 questions

Siemens Interview Experiences

Popular Designations

425 interviews found

Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - One-on-one 

(2 Questions)

  • Q1. Can you describe your past experience job responsibilities in detail and a challenge that you faced?
  • Q2. How did you over come that challenge, what are your expectations from this role

Project Associate Interview Questions asked at other Companies

Q1. What is an API? Why APIs are so popular these days? What is API Management? Why we need an API Management tool such as Apigee Edge? What is REST? What is the difference between SOAP & REST API ? What is API Proxy? What are the different... read more
View answer (1)
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
-

I appeared for an interview in Oct 2024.

Round 1 - Aptitude Test 

Vcb (Testing),ACB, battery, transformer, motor maintenance

Interview Preparation Tips

Interview preparation tips for other job seekers - Good work and team support supervision.

Electrical Engineer Interview Questions asked at other Companies

Q1. What is the difference between Switch gear & Circuit Breakers ?
View answer (13)
Interview experience
1
Bad
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Aptitude Test 

Common aptitude questions are asked in first round

Round 2 - One-on-one 

(2 Questions)

  • Q1. Self introductionp
  • Q2. Project explanation

Top Siemens Electrical GET Interview Questions and Answers

Q1. Difference between IDMT relay and transformer differential relay
View answer (1)

Electrical GET Interview Questions asked at other Companies

Q1. Can you explain Ohm's Law and how it relates to electrical circuits? What is the difference between AC (Alternating Current) and DC (Direct Current)? Describe the difference between analog and digital signals. Give an example of each. How w... read more
View answer (1)

Interview Questions & Answers

user image Anonymous

posted on 9 Oct 2024

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

I applied via Approached by Company and was interviewed in Apr 2024. There was 1 interview round.

Round 1 - One-on-one 

(3 Questions)

  • Q1. Introduce yourself
  • Ans. 

    I am a motivated finance student with a strong interest in investment management and financial analysis.

    • Currently pursuing a degree in finance

    • Completed relevant coursework in financial analysis and investment management

    • Participated in finance-related extracurricular activities such as investment clubs

    • Completed internships in finance industry

  • Answered by AI
  • Q2. What do you find attractive about the company
  • Ans. 

    I find the company's commitment to ethical investing and professional development opportunities very attractive.

    • Commitment to ethical investing aligns with my values

    • Professional development opportunities show company's investment in employees

    • Strong reputation in the industry

  • Answered by AI
  • Q3. Why a role in Finance?
  • Ans. 

    I am passionate about analyzing data, making informed decisions, and contributing to the success of businesses through financial strategies.

    • I have a strong aptitude for numbers and enjoy analyzing financial data

    • I am interested in understanding how businesses operate and how financial decisions impact their success

    • I am excited about the opportunity to work in a dynamic and fast-paced industry like finance

  • Answered by AI

Siemens interview questions for popular designations

 Software Developer

 (28)

 Software Engineer

 (20)

 Senior Software Engineer

 (14)

 Senior Executive

 (9)

 Electrical Engineer

 (7)

 Graduate Engineer Trainee (Get)

 (7)

 System Engineer

 (6)

 Intern

 (6)

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

I applied via Campus Placement and was interviewed in Sep 2023. There were 5 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 

After the resume screening, the shortlisted candidates were sent a link to the test which was scheduled a few days later. The test had 2 sections - Technical and Aptitude MCQs, and a Coding section.

Round 3 - Coding Test 

The Coding test had 2 easy-medium level questions. They were fairly easy to complete, and I successfully passed all test-cases.

Round 4 - Technical 

(9 Questions)

  • Q1. Tell me about any of the projects on your resume.
  • Q2. Explain the working of Bubble Sort (I had to pen down the pseudo-code, but others were asked to write the code as well).
  • Q3. Explain the working of Insertion Sort.
  • Ans. 

    Insertion Sort is a simple sorting algorithm that builds the final sorted array one item at a time.

    • Start from the second element and compare it with the previous elements to find its correct position in the sorted array.

    • Repeat this process for all elements in the array.

    • Example: Given array of strings ['banana', 'apple', 'orange'], after insertion sort it becomes ['apple', 'banana', 'orange'].

  • Answered by AI
  • Q4. How would you find the maximum and second-maximum numbers in an array? (Pseudo-code)
  • Ans. 

    Use a loop to iterate through the array and keep track of the maximum and second-maximum numbers.

    • Initialize two variables to store the maximum and second-maximum numbers.

    • Iterate through the array and update the variables accordingly.

    • Handle edge cases like when the array has less than two elements.

  • Answered by AI
  • Q5. Write the query to execute a left-join on two tables - I was shown a database with a few tables defined.
  • Q6. What do you understand by the phrase 'pass-by-value'?
  • Ans. 

    Pass-by-value is a method of passing arguments to a function where the actual value of the argument is copied to a new variable.

    • In pass-by-value, a copy of the actual value of the argument is passed to the function.

    • Any changes made to the parameter inside the function do not affect the original value outside the function.

    • Primitive data types like integers, floats, and characters are typically passed by value.

    • Example: i...

  • Answered by AI
  • Q7. If you're given two CSV files, containing 2 columns each, how would you merge the two files using Python?
  • Ans. 

    To merge two CSV files with 2 columns each in Python, use the pandas library.

    • Import the pandas library

    • Read the two CSV files into pandas DataFrames

    • Merge the DataFrames using a common column as the key

    • Save the merged DataFrame to a new CSV file

  • Answered by AI
  • Q8. Puzzle - A drawer contains 10 pairs each of red and blue socks. What is the minimum number of socks that should be picked to obtain at least 1 rightly colored pair?
  • Ans. 3, since there are only 2 colors of socks.
  • Answered Anonymously
  • Q9. Problem Solving - How would you reduce the vehicle congestion at a junction?
  • Ans. 

    To reduce vehicle congestion at a junction, implement traffic signal optimization, encourage public transportation, and create dedicated lanes for buses and bicycles.

    • Implement traffic signal optimization to improve traffic flow and reduce wait times.

    • Encourage the use of public transportation by providing incentives such as discounted fares or improved services.

    • Create dedicated lanes for buses and bicycles to reduce the...

  • Answered by AI
Round 5 - HR 

(3 Questions)

  • Q1. What is your short-term plan in life?
  • Q2. Reasons, if any, for the change in grades from high-school to university. (I went from a 95 aggregate in high-school, to a 85 aggregate in university)
  • Q3. What is your preferred location and how would you adjust if you did not receive your preferred location?

Interview Preparation Tips

Topics to prepare for Siemens Engineer Trainee interview:
  • Data Structures and Algorithms
  • OOPS
Interview preparation tips for other job seekers - Prepare for algorithms along with their code/pseudocode as well, and pray for a bit of luck with your interview panel :)

Skills evaluated in this interview

Top Siemens Engineer Trainee Interview Questions and Answers

Q1. Puzzle - A drawer contains 10 pairs each of red and blue socks. What is the minimum number of socks that should be picked to obtain at least 1 rightly colored pair?
View answer (2)

Engineer Trainee Interview Questions asked at other Companies

Q1. If 10 people had a meeting and they shake hands only once with each of the others, then how many handshakes will be there in total ?
View answer (8)

Get interview-ready with Top Siemens Interview Questions

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

(2 Questions)

  • Q1. Why do you want to change the job
  • Q2. Manual testing and automation testing questions

Softwaretest Engineer Interview Questions asked at other Companies

Q1. What is boundary value analysis? How do u perform boundary value testing for User ID & Password textfields in login page?
View answer (2)

Jobs at Siemens

View all
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(1 Question)

  • Q1. Stress strain curve

Top Siemens Electrical GET Interview Questions and Answers

Q1. Difference between IDMT relay and transformer differential relay
View answer (1)

Electrical GET Interview Questions asked at other Companies

Q1. Can you explain Ohm's Law and how it relates to electrical circuits? What is the difference between AC (Alternating Current) and DC (Direct Current)? Describe the difference between analog and digital signals. Give an example of each. How w... read more
View answer (1)
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
Selected Selected

I appeared for an interview in Jan 2025.

Round 1 - Coding Test 

2 to 3 dsa questions

Round 2 - HR 

(1 Question)

  • Q1. Why u want to join
  • Ans. 

    I am passionate about the mission of the organization and believe my skills align well with the role.

    • Passionate about the organization's mission

    • Skills align well with the role

    • Excited about the opportunity to contribute

  • Answered by AI

Graduate Engineer Trainee (Get) Interview Questions asked at other Companies

Q1. Q: 1 What is IC engine? What is the types of IC engine? Q:2 Difference between Otto cycle and Diesel cycle? What is the process of both cycle and what is the effeciency of both cycle ? Which one is good in effeciency? Q:3 Difference between... read more
View answer (2)
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
  • Q2. Oops related questions

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare core subjects

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 defined for a pair of integers in the array when both of the following con... read more
View answer (1)

Software Developer Interview Questions asked at other Companies

Q1. Maximum Subarray Sum Problem Statement Given an array of integers, determine the maximum possible sum of any contiguous subarray within the array. Example: Input: array = [34, -50, 42, 14, -5, 86] Output: 137 Explanation: The maximum sum is... read more
View answer (43)
Interview experience
2
Poor
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(1 Question)

  • Q1. Authentication vs authorization, solid principles etc.
  • Ans. 

    Authentication verifies the identity of a user, while authorization determines what actions a user is allowed to perform.

    • Authentication confirms the identity of a user through credentials like passwords or biometrics.

    • Authorization controls access to resources based on the authenticated user's permissions.

    • Solid principles refer to a set of object-oriented design principles like Single Responsibility Principle, Open/Clos

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - If you are looking for the new generation technologies work with good mindset people then please avoid this organization.
The interview panel don't take efforts to introduce them self during interview process. they kept video off during online process. The panel were not serious during the process. Negative mindset people, they don't know how to take interviews for experience people. giving interview is waste o f time.

Advanced Software Engineer Interview Questions asked at other Companies

Q1. how are you shipping your code to production?
View answer (1)

Siemens Interview FAQs

How many rounds are there in Siemens interview?
Siemens interview process usually has 2-3 rounds. The most common rounds in the Siemens interview process are Technical, HR and Resume Shortlist.
How to prepare for Siemens 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, Automation, HTML, Consulting and Agile.
What are the top questions asked in Siemens interview?

Some of the top questions asked at the Siemens interview -

  1. How to run a docker command remotely. i.e. Docker is installed on both your lap...read more
  2. If were to write a function to tell if the number is odd or even, how would u c...read more
  3. Puzzle - A drawer contains 10 pairs each of red and blue socks. What is the min...read more
How long is the Siemens interview process?

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

Tell us how to improve this page.

Siemens Interview Process

based on 367 interviews

Interview experience

4.2
  
Good
View more

Explore Interview Questions and Answers for Top Skills at Siemens

Join Siemens #TransformTheEverydayWithUs

Interview Questions from Similar Companies

Johnson Controls Interview Questions
3.6
 • 262 Interviews
Falcon Autotech Interview Questions
3.9
 • 45 Interviews
Wipro PARI Interview Questions
3.3
 • 44 Interviews
MNC AUTOMATION Interview Questions
4.2
 • 34 Interviews
View all

Siemens Reviews and Ratings

based on 4.9k reviews

4.1/5

Rating in categories

3.9

Skill development

4.0

Work-life balance

3.6

Salary

4.1

Job security

4.0

Company culture

3.3

Promotions

3.7

Work satisfaction

Explore 4.9k Reviews and Ratings
Commercial Sales Manager | Vadodara

Vadodara

5-10 Yrs

₹ 6-12 LPA

Technical Architect - Principal

Pune

10-20 Yrs

Not Disclosed

Explore more jobs
Senior Software Engineer
1.6k salaries
unlock blur

₹9.5 L/yr - ₹34.5 L/yr

Software Developer
1.6k salaries
unlock blur

₹5.3 L/yr - ₹22.4 L/yr

Software Engineer
1.5k salaries
unlock blur

₹6 L/yr - ₹25 L/yr

Manager
593 salaries
unlock blur

₹9 L/yr - ₹32.5 L/yr

Senior Process Associate
461 salaries
unlock blur

₹2.2 L/yr - ₹7.2 L/yr

Explore more salaries
Compare Siemens with

Schneider Electric

4.1
Compare

Siemens Energy

4.1
Compare

Johnson Controls

3.5
Compare

Honeywell Automation

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