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 Engineer Trainee Interview Questions and Answers

Updated 25 Jun 2024

8 Interview questions

An Engineer Trainee was asked
Q. Tell me about stand-alone systems.
Ans. 

Stand alone systems are independent systems that operate without the need for external connections or dependencies.

  • Stand alone systems do not require internet connectivity to function

  • They are self-sufficient and can operate independently

  • Examples include standalone computers, calculators, and offline software applications

An Engineer Trainee was asked
Q. How would you reduce 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 reduc...

Engineer Trainee Interview Questions Asked at Other Companies

Q1. If 10 people at a meeting shake hands with each other once, how m ... read more
asked in Siemens
Q2. A drawer contains 10 pairs each of red and blue socks. What is th ... read more
asked in AVASOFT
Q3. What is the logic for determining if a number is an Armstrong num ... read more
asked in Sobha
Q4. Shear force diagram and bending moment diagram for combination of ... read more
asked in Siemens
Q5. If you are given two CSV files, each containing two columns, how ... read more
An Engineer Trainee was asked
Q. 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.

An Engineer Trainee was asked
Q. If you are given two CSV files, each containing two columns, 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

An Engineer Trainee was asked
Q. 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.

  • Examp...

An Engineer Trainee was asked
Q. 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'].

An Engineer Trainee was asked
Q. Write a query to perform a left join on two tables.
Ans. 

A left join retrieves all records from the left table and matched records from the right table.

  • Use the LEFT JOIN keyword to combine rows from two tables based on a related column.

  • Syntax: SELECT columns FROM table1 LEFT JOIN table2 ON table1.column = table2.column;

  • Example: SELECT a.id, a.name, b.salary FROM employees a LEFT JOIN salaries b ON a.id = b.emp_id;

  • If there is no match, NULL values will be returned for co...

Are these interview questions helpful?
An Engineer Trainee was asked
Q. Explain the working of Bubble Sort.
Ans. 

Bubble Sort is a simple sorting algorithm that repeatedly steps through the list, compares adjacent elements, and swaps them if needed.

  • 1. Bubble Sort works by repeatedly comparing adjacent elements in an array.

  • 2. If the first element is greater than the second, they are swapped.

  • 3. This process is repeated for each pair of adjacent elements until the entire array is sorted.

  • 4. The algorithm gets its name because sma...

Siemens Engineer Trainee Interview Experiences

4 interviews found

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

30 minute 30 questions including verbal and quantitative aptitude

Round 2 - Technical 

(1 Question)

  • Q1. Basic level technical questions related to mechanical engineering
Round 3 - One-on-one 

(1 Question)

  • Q1. General level questions regarding topics in the resume
Round 4 - HR 

(1 Question)

  • Q1. What is the location you are willing to join
  • Ans. 

    I am open to various locations, including urban centers, remote areas, and international assignments, depending on project needs.

    • Willing to relocate to major cities like New York, San Francisco, or Chicago for career growth.

    • Open to working in remote locations if it involves unique projects or opportunities.

    • Interested in international assignments, especially in countries with emerging technologies, like India or Germany...

  • Answered by AI
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.
  • Ans. 

    Developed a smart irrigation system using IoT to optimize water usage in agriculture.

    • Designed a prototype using Arduino and moisture sensors.

    • Implemented a mobile app for real-time monitoring and control.

    • Conducted field tests, resulting in a 30% reduction in water usage.

    • Collaborated with a team of 4 engineers to enhance system efficiency.

  • Answered by AI
  • 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).
  • Ans. 

    Bubble Sort is a simple sorting algorithm that repeatedly steps through the list, compares adjacent elements, and swaps them if needed.

    • 1. Bubble Sort works by repeatedly comparing adjacent elements in an array.

    • 2. If the first element is greater than the second, they are swapped.

    • 3. This process is repeated for each pair of adjacent elements until the entire array is sorted.

    • 4. The algorithm gets its name because smaller ...

  • Answered by AI
  • 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.
  • Ans. 

    A left join retrieves all records from the left table and matched records from the right table.

    • Use the LEFT JOIN keyword to combine rows from two tables based on a related column.

    • Syntax: SELECT columns FROM table1 LEFT JOIN table2 ON table1.column = table2.column;

    • Example: SELECT a.id, a.name, b.salary FROM employees a LEFT JOIN salaries b ON a.id = b.emp_id;

    • If there is no match, NULL values will be returned for columns...

  • Answered by AI
  • 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?
  • Ans. 

    I prefer working in a dynamic city environment, but I'm adaptable and open to opportunities anywhere.

    • I value the experience and growth opportunities that come with different locations.

    • For example, if assigned to a less preferred location, I would focus on building relationships with colleagues.

    • I would also seek to understand the local market and industry trends to enhance my skills.

    • Additionally, I believe that every lo...

  • Answered by AI

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

Engineer Trainee Interview Questions & Answers

user image Reuben Adnan

posted on 27 Oct 2023

Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
Not Selected
Round 1 - Resume Shortlist 
Pro Tip by AmbitionBox:
Properly align and format text in your resume. A recruiter will have to spend more time reading poorly aligned text, leading to high chances of rejection.
View all tips
Round 2 - Aptitude Test 

It was only an aptitude test with no coding questions, although there were some pseudo codes and mostly consisted of aptitude

Round 3 - Technical 

(1 Question)

  • Q1. Was asked mostly questions on SQL and then the projects and some pseudocode
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Campus Placement and was interviewed before Oct 2022. 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 

It was average yet time crunch was there

Round 3 - Technical 

(2 Questions)

  • Q1. Fairly average, easy even at sime points
  • Q2. Where do you internshiped tell me about yourself
Round 4 - One-on-one 

(2 Questions)

  • Q1. Technical questions regarding transformers
  • Q2. Tell me about stand alone systems
  • Ans. 

    Stand alone systems are independent systems that operate without the need for external connections or dependencies.

    • Stand alone systems do not require internet connectivity to function

    • They are self-sufficient and can operate independently

    • Examples include standalone computers, calculators, and offline software applications

  • Answered by AI
Round 5 - HR 

(1 Question)

  • Q1. Will you be able to give your time

Skills evaluated in this interview

What people are saying about Siemens

View All
spaciousswift
Verified Icon
2w
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

I applied via Walk-in and was interviewed before Aug 2020. There was 1 interview round.

Interview Questionnaire 

1 Question

  • Q1. What is power supply?and explain
  • Ans. 

    Power supply is an electronic device that provides electrical energy to an electrical load.

    • Power supply converts AC voltage to DC voltage.

    • It regulates voltage and current to protect the device from damage.

    • Types of power supply include linear, switching, and battery.

    • Examples of power supply include wall adapters, computer power supplies, and batteries.

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Analysis the circuits

Interview Questionnaire 

1 Question

  • Q1. Favourite books, family background, strengths, weakness, travelling etc

I applied via Referral and was interviewed before Feb 2021. There were 2 interview rounds.

Round 1 - Technical 

(1 Question)

  • Q1. Firstly resume shortlist and after that interview related to technical questions
Round 2 - Assignment 

Shortlist in interview round after that training for final shortlist

Interview Preparation Tips

Interview preparation tips for other job seekers - Dedicate your aim and be active always everytime.
Are these interview questions helpful?

I applied via Naukri.com and was interviewed before Dec 2020. There were 4 interview rounds.

Interview Questionnaire 

1 Question

  • Q1. There were questions about Data Structures like which data structure will I use to store table values. Questions about my previous work projects

Interview Preparation Tips

Interview preparation tips for other job seekers - Be confident and answer honestly. Interview process may be delayed due to various reasons, but you will get updates from HR team. So be patient with this one.

I applied via Referral and was interviewed before Jul 2021. There were 2 interview rounds.

Round 1 - Technical 

(1 Question)

  • Q1. Basic technical questions regarding engineering
Round 2 - HR 

(1 Question)

  • Q1. Programming questions and some basic general questions

Interview Preparation Tips

Interview preparation tips for other job seekers - Learn PLC Programming before joining the company. learn about the softwares used by Rockwell
Interview experience
3
Average
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via LinkedIn and was interviewed before Mar 2022. There were 2 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 - Technical 

(2 Questions)

  • Q1. Behavioural questions
  • Q2. Academics based questions

Interview Preparation Tips

Interview preparation tips for other job seekers - Be confident and true to yourself. Answer all questions with confidence.

Siemens Interview FAQs

How many rounds are there in Siemens Engineer Trainee interview?
Siemens interview process usually has 4-5 rounds. The most common rounds in the Siemens interview process are Aptitude Test, Technical and Resume Shortlist.
How to prepare for Siemens Engineer 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, Chip Design, Digital Electronics, Electronics and Industrial Engineering.
What are the top questions asked in Siemens Engineer Trainee interview?

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

  1. Puzzle - A drawer contains 10 pairs each of red and blue socks. What is the min...read more
  2. If you're given two CSV files, containing 2 columns each, how would you merge t...read more
  3. Problem Solving - How would you reduce the vehicle congestion at a juncti...read more

Tell us how to improve this page.

Overall Interview Experience Rating

4.8/5

based on 4 interview experiences

Difficulty level

Easy 50%
Moderate 50%

Duration

Less than 2 weeks 100%
View more
Join Siemens #TransformTheEverydayWithUs

Interview Questions from Similar Companies

Johnson Controls Interview Questions
3.6
 • 276 Interviews
Wipro PARI Interview Questions
3.3
 • 51 Interviews
Falcon Autotech Interview Questions
3.9
 • 48 Interviews
MNC AUTOMATION Interview Questions
4.3
 • 36 Interviews
View all
Siemens Engineer Trainee Salary
based on 20 salaries
₹1.2 L/yr - ₹10 L/yr
65% more than the average Engineer Trainee Salary in India
View more details

Siemens Engineer Trainee Reviews and Ratings

based on 14 reviews

3.7/5

Rating in categories

3.3

Skill development

3.6

Work-life balance

3.3

Salary

3.0

Job security

3.4

Company culture

2.8

Promotions

2.9

Work satisfaction

Explore 14 Reviews and Ratings
Senior Software Engineer
1.8k salaries
unlock blur

₹15.8 L/yr - ₹30 L/yr

Software Developer
1.7k salaries
unlock blur

₹5.8 L/yr - ₹26.9 L/yr

Software Engineer
1.6k salaries
unlock blur

₹6.7 L/yr - ₹21.3 L/yr

Manager
585 salaries
unlock blur

₹14.3 L/yr - ₹26.5 L/yr

Senior Process Associate
483 salaries
unlock blur

₹2.2 L/yr - ₹7 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.7
Compare
write
Share an Interview