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

Filter interviews by

Siemens Graduate Trainee Interview Questions and Answers

Updated 12 Apr 2025

6 Interview questions

A Graduate Trainee was asked 7mo ago
Q. Given the root of a binary tree, return the level order traversal of its nodes' values. (i.e., from left to right, level by level).
Ans. 

Level order traversal of binary tree visits nodes level by level, from left to right.

  • Use a queue to keep track of nodes at each level

  • Start by pushing the root node into the queue

  • While the queue is not empty, dequeue a node, visit it, and enqueue its children

A Graduate Trainee was asked 11mo ago
Q. Given a string, reverse it.
Ans. 

Reverse a string by iterating through the characters and swapping them

  • Create a function that takes a string as input

  • Initialize two pointers, one at the beginning and one at the end of the string

  • Swap the characters at the two pointers and move them towards the center until they meet

Graduate Trainee Interview Questions Asked at Other Companies

asked in Flipkart
Q1. Given an array, how do you find the number of pairs that sum to a ... read more
asked in Freshworks
Q2. Invert a Binary Tree You are provided with a Binary Tree and one ... read more
asked in Freshworks
Q3. Merge Two Sorted Arrays Problem Statement Given two sorted intege ... read more
asked in Freshworks
Q4. Deepest Left Leaf Node Problem Statement You are provided with a ... read more
asked in TCS
Q5. Consonant Counting Problem Statement Given a string STR comprisin ... read more
A Graduate Trainee was asked 11mo ago
Q. Given an array of integers, find the second largest integer.
Ans. 

Find the second largest integer in an array of strings

  • Convert the strings in the array to integers

  • Sort the integers in descending order

  • Return the second element in the sorted array as the second largest integer

A Graduate Trainee was asked 11mo ago
Q. Change the odd bits in the binary form of a given number and convert the new binary into decimal form
Ans. 

To change the odd bits in a binary number, flip the bits at odd positions and convert the new binary number to decimal form.

  • Start by converting the given number into binary form.

  • Identify the odd bits in the binary number (counting from right to left, starting at 1).

  • Flip the odd bits by changing 1s to 0s and 0s to 1s.

  • Convert the new binary number into decimal form.

  • For example, if the given number is 13 (binary 1101...

A Graduate Trainee was asked
Q. What are your strengths?
Ans. 

My strengths include strong communication skills, ability to work well in a team, and problem-solving abilities.

  • Strong communication skills - able to effectively convey ideas and information

  • Ability to work well in a team - collaborate with others to achieve common goals

  • Problem-solving abilities - able to analyze situations and come up with effective solutions

A Graduate Trainee was asked 11mo ago
Q. Primary vs secondary memory
Ans. 

Primary memory is volatile and directly accessible by the CPU, while secondary memory is non-volatile and used for long-term storage.

  • Primary memory is faster but has limited capacity, while secondary memory is slower but has larger capacity.

  • Examples of primary memory include RAM and cache memory, while examples of secondary memory include hard drives and SSDs.

  • Primary memory stores data that is currently being used...

Siemens Graduate Trainee Interview Experiences

5 interviews found

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

Test is about 1 hr and it contains 40 mcqs(both aptitude and coding)

Round 2 - Technical 

(2 Questions)

  • Q1. Level order traversal of binary tree
  • Ans. 

    Level order traversal of binary tree visits nodes level by level, from left to right.

    • Use a queue to keep track of nodes at each level

    • Start by pushing the root node into the queue

    • While the queue is not empty, dequeue a node, visit it, and enqueue its children

  • Answered by AI
  • Q2. Question related to OOPS concepts

Skills evaluated in this interview

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

I applied via Campus Placement and was interviewed in Jan 2024. There was 1 interview round.

Round 1 - Technical 

(2 Questions)

  • Q1. Change the odd bits in the binary form of a given number and convert the new binary into decimal form
  • Ans. 

    To change the odd bits in a binary number, flip the bits at odd positions and convert the new binary number to decimal form.

    • Start by converting the given number into binary form.

    • Identify the odd bits in the binary number (counting from right to left, starting at 1).

    • Flip the odd bits by changing 1s to 0s and 0s to 1s.

    • Convert the new binary number into decimal form.

    • For example, if the given number is 13 (binary 1101), th...

  • Answered by AI
  • Q2. Primary vs secondary memory
  • Ans. 

    Primary memory is volatile and directly accessible by the CPU, while secondary memory is non-volatile and used for long-term storage.

    • Primary memory is faster but has limited capacity, while secondary memory is slower but has larger capacity.

    • Examples of primary memory include RAM and cache memory, while examples of secondary memory include hard drives and SSDs.

    • Primary memory stores data that is currently being used by t...

  • Answered by AI

Skills evaluated in this interview

Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(2 Questions)

  • Q1. Find out the second largest integer in an array
  • Ans. 

    Find the second largest integer in an array of strings

    • Convert the strings in the array to integers

    • Sort the integers in descending order

    • Return the second element in the sorted array as the second largest integer

  • Answered by AI
  • Q2. Reverse a string
  • Ans. 

    Reverse a string by iterating through the characters and swapping them

    • Create a function that takes a string as input

    • Initialize two pointers, one at the beginning and one at the end of the string

    • Swap the characters at the two pointers and move them towards the center until they meet

  • Answered by AI

Skills evaluated in this interview

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

General Aptitude, Pipes, Time

Round 2 - HR 

(2 Questions)

  • Q1. Tell me about your self
  • Ans. 

    I am a motivated graduate with a passion for learning and a strong foundation in my field, eager to contribute and grow in a dynamic environment.

    • Educational Background: Graduated with a degree in Business Administration, focusing on Marketing.

    • Internship Experience: Completed a summer internship at XYZ Company, where I assisted in developing a social media campaign that increased engagement by 30%.

    • Skills: Proficient in ...

  • Answered by AI
  • Q2. What are your Strenghts
  • Ans. 

    My strengths include strong communication skills, ability to work well in a team, and problem-solving abilities.

    • Strong communication skills - able to effectively convey ideas and information

    • Ability to work well in a team - collaborate with others to achieve common goals

    • Problem-solving abilities - able to analyze situations and come up with effective solutions

  • Answered by AI
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
More than 8 weeks
Result
Selected Selected

I appeared for an interview before Apr 2024, where I was asked the following questions.

  • Q1. Java OOPS, program to extract values from linkedlist, stream apis, and spingboot
  • Q2. DBMS concepts and basic cloud technologies

What people are saying about Siemens

View All
spaciousswift
Verified Icon
1w
works at
SEW Eurodrive india
Seeking Insights on Siemens – Sales & Business Development Roles
Hi everyone, I’m currently exploring opportunities in Sales and Business Development roles at Siemens, and I’d really appreciate any insights from current or former employees (or anyone familiar with the organization). I’m particularly curious about: Typical salary range or compensation structure (fixed + variable, bonus, etc.) Work culture within the sales & business development teams Career growth opportunities and internal mobility Work-life balance Benefits (healthcare, insurance, learning support, etc.) Any other pros or cons worth considering If you’ve had experience at Siemens or have reliable input, I’d love to hear your honest feedback—either here or via DM if you prefer. Thanks in advance for your time and help! #Siemens #SalesCareers #BusinessDevelopment #WorkCulture #CareerAdvice #SalaryInsights #JobSearch
Got a question about Siemens?
Ask anonymously on communities.

Interview questions from similar companies

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

Related to your department

Round 2 - Group Discussion 

General topics on industrial trends

Round 3 - One-on-one 

(3 Questions)

  • Q1. Technical quesrions related to your department
  • Q2. LVDT working principle and thevenin, Norton etc
  • Q3. Logic gates based questions
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
No response

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

Round 1 - Aptitude Test 

Got some aptitude question in the company side, and the candidates want to finish in the given time

Round 2 - One-on-one 

(2 Questions)

  • Q1. Basic question about my resume
  • Q2. Analytic questions and case study question to test my handling the situation skills
Are these interview questions helpful?
Interview experience
5
Excellent
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Selected Selected

I appeared for an interview in Dec 2024, where I was asked the following questions.

  • Q1. Basic sql and codes. Tree traversal bfs dfs
  • Q2. About their products and robots
Interview experience
5
Excellent
Difficulty level
Hard
Process Duration
Less than 2 weeks
Result
Selected Selected

I appeared for an interview in Dec 2024, where I was asked the following questions.

  • Q1. Industrial robot design
  • Q2. Project related questions as well

Interview Preparation Tips

Interview preparation tips for other job seekers - Excellent company and work culture is too good and there are many things to learn here.
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

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

Round 1 - Aptitude Test 

There were logical reasoning and critical thinking along with mental ability

Round 2 - Technical 

(3 Questions)

  • Q1. Technical interview related to your field of study
  • Q2. About my college project
  • Q3. Basics of cad and uses of creo
Round 3 - HR 

(1 Question)

  • Q1. Why do you want to join the company and what are your expectation

Siemens Interview FAQs

How many rounds are there in Siemens Graduate Trainee interview?
Siemens interview process usually has 1-2 rounds. The most common rounds in the Siemens interview process are Technical, Aptitude Test and HR.
How to prepare for Siemens Graduate Trainee 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 Automation, HTML, Interpersonal Skills, Siemens and Bidding.
What are the top questions asked in Siemens Graduate Trainee interview?

Some of the top questions asked at the Siemens Graduate Trainee interview -

  1. Change the odd bits in the binary form of a given number and convert the new bi...read more
  2. Find out the second largest integer in an ar...read more
  3. Level order traversal of binary t...read more

Tell us how to improve this page.

Overall Interview Experience Rating

4.6/5

based on 5 interview experiences

Difficulty level

Easy 50%
Moderate 50%

Duration

Less than 2 weeks 50%
More than 8 weeks 50%
View more
Join Siemens #TransformTheEverydayWithUs
Siemens Graduate Trainee Salary
based on 29 salaries
₹4.5 L/yr - ₹6 L/yr
41% more than the average Graduate Trainee Salary in India
View more details

Siemens Graduate Trainee Reviews and Ratings

based on 9 reviews

3.4/5

Rating in categories

3.9

Skill development

3.8

Work-life balance

3.3

Salary

4.4

Job security

4.5

Company culture

3.4

Promotions

3.8

Work satisfaction

Explore 9 Reviews and Ratings
Software Developer
1.8k salaries
unlock blur

₹3.9 L/yr - ₹27 L/yr

Senior Software Engineer
1.8k salaries
unlock blur

₹15.8 L/yr - ₹30 L/yr

Software Engineer
1.5k salaries
unlock blur

₹6.6 L/yr - ₹21.2 L/yr

Manager
612 salaries
unlock blur

₹13.8 L/yr - ₹25 L/yr

Senior Executive
464 salaries
unlock blur

₹9.6 L/yr - ₹16 L/yr

Explore more salaries
Compare Siemens with

Schneider Electric

4.1
Compare

Siemens Energy

4.1
Compare

Johnson Controls

3.6
Compare

Honeywell Automation

3.8
Compare
write
Share an Interview