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

Updated 11 Mar 2022

12 Interview questions

A Senior Systems Engineer was asked
Q. What makes a HashSet different from a TreeSet?
Ans. 

HashSet uses a hash table for storage, while TreeSet uses a red-black tree.

  • HashSet provides constant-time performance for basic operations like add, remove, contains.

  • TreeSet maintains elements in sorted order, allowing for efficient operations like range queries.

  • HashSet does not guarantee any specific order of elements, while TreeSet maintains a sorted order.

  • Example: HashSet<String> set = new HashSet<>...

A Senior Systems Engineer was asked
Q. What is thread starvation?
Ans. 

Thread starvation occurs when a thread is unable to access the CPU resources it needs to execute its tasks.

  • Occurs when a thread is constantly preempted by higher priority threads, preventing it from running

  • Can lead to performance degradation and delays in task completion

  • Can be mitigated by adjusting thread priorities or implementing thread pooling

Senior Systems Engineer Interview Questions Asked at Other Companies

asked in Infosys
Q1. 2. Explain COMP, COMP-2, COMP-3 and Display. What are the differe ... read more
asked in Infosys
Q2. 1. Explain COND parameter in JCL. What parameters can be coded bo ... read more
asked in Siemens
Q3. LRU Cache Design Question Design a data structure for a Least Rec ... read more
asked in Siemens
Q4. Nth Prime Number Problem Statement Find the Nth prime number give ... read more
asked in Infosys
Q5. What is a Data Dictionary, and can you explain all the elements o ... read more
A Senior Systems Engineer was asked
Q. What are the start() and run() methods of the Thread class?
Ans. 

The start() method is used to start a new thread, while the run() method contains the code that will be executed by the thread.

  • start() method is used to start a new thread and calls the run() method.

  • run() method contains the code that will be executed by the thread.

  • Calling run() directly will not create a new thread, it will just execute the code in the current thread.

A Senior Systems Engineer was asked
Q. 

LRU Cache Design Question

Design a data structure for a Least Recently Used (LRU) cache that supports the following operations:

1. get(key) - Return the value of the key if it exists in the cache; otherwi...

Ans. 

Design a Least Recently Used (LRU) cache data structure that supports get and put operations with capacity constraint.

  • Implement a doubly linked list to keep track of the order of keys based on their recent usage.

  • Use a hashmap to store key-value pairs for quick access.

  • When capacity is reached, evict the least recently used item before inserting a new item.

  • Update the order of keys in the linked list whenever a key i...

A Senior Systems Engineer was asked
Q. What is a BlockingQueue in the context of multithreading?
Ans. 

BlockingQueue is a thread-safe queue that supports operations that wait for the queue to become non-empty when retrieving an element.

  • BlockingQueue is part of the java.util.concurrent package in Java.

  • It is used to implement producer-consumer scenarios in multithreaded applications.

  • Operations like put() and take() are blocking, meaning they will wait until the queue is in a valid state to perform the operation.

  • Examp...

A Senior Systems Engineer was asked
Q. How does ConcurrentHashMap work in Java?
Ans. 

ConcurrentHashMap is a thread-safe implementation of the Map interface in Java.

  • ConcurrentHashMap allows multiple threads to read and write to the map concurrently without the need for external synchronization.

  • It achieves thread-safety by dividing the map into segments, each of which can be locked independently.

  • ConcurrentHashMap uses a combination of synchronized blocks and volatile variables to ensure thread-safet...

A Senior Systems Engineer was asked
Q. What is the difference between an abstract class and an interface in OOP?
Ans. 

Abstract class can have both abstract and non-abstract methods, while interface can only have abstract methods.

  • Abstract class can have constructors, fields, and methods, while interface cannot.

  • A class can implement multiple interfaces but can only inherit from one abstract class.

  • Abstract classes are used to define a common base class for related classes, while interfaces define a contract for classes to implement.

  • ...

Are these interview questions helpful?
A Senior Systems Engineer was asked
Q. What is meant by exception handling?
Ans. 

Exception handling is a programming concept where errors or exceptional events are dealt with in a structured manner.

  • Exception handling allows for graceful handling of errors in a program.

  • It involves using try, catch, and finally blocks to manage exceptions.

  • Examples include catching divide by zero errors or file not found exceptions.

A Senior Systems Engineer was asked
Q. What is the garbage collector in Java?
Ans. 

Garbage collector in Java is a built-in mechanism that automatically manages memory by reclaiming unused objects.

  • Garbage collector runs in the background to reclaim memory from objects that are no longer in use.

  • It helps prevent memory leaks and optimize memory usage.

  • Examples of garbage collectors in Java include Serial, Parallel, CMS, and G1.

A Senior Systems Engineer was asked
Q. What is a thread scheduler and how does time slicing work?
Ans. 

A thread scheduler is responsible for managing the execution of multiple threads in a system. Time slicing is a technique used by the scheduler to allocate CPU time to each thread.

  • Thread scheduler is a component of the operating system that decides which thread to run next

  • Time slicing involves dividing the CPU time among multiple threads based on a predefined time interval

  • Example: In a round-robin scheduling algor...

Siemens Senior Systems Engineer Interview Experiences

2 interviews found

I appeared for an interview before Mar 2021.

Round 1 - Face to Face 

(5 Questions)

Round duration - 60 Minutes
Round difficulty - Medium

This round started with 1 coding question related to Prime Numbers in which I was first asked to explain my approach and then write the pseudo code for it. This was followed by some preety standard questions from OOPS and Java.

  • Q1. 

    Nth Prime Number Problem Statement

    Find the Nth prime number given a number N.

    Explanation:

    A prime number is greater than 1 and is not the product of two smaller natural numbers. A prime number has exa...

  • Ans. 

    To find the Nth prime number given a number N, implement a function that returns the Nth prime number.

    • Create a function that takes N as input and returns the Nth prime number.

    • Use a loop to iterate through numbers and check if they are prime.

    • Keep track of the count of prime numbers found until reaching N.

    • Optimize the algorithm by checking only up to the square root of the number for primality.

    • Example: For N = 7, the 7th...

  • Answered by AI
  • Q2. What is the difference between an abstract class and an interface in OOP?
  • Ans. 

    Abstract class can have both abstract and non-abstract methods, while interface can only have abstract methods.

    • Abstract class can have constructors, fields, and methods, while interface cannot.

    • A class can implement multiple interfaces but can only inherit from one abstract class.

    • Abstract classes are used to define a common base class for related classes, while interfaces define a contract for classes to implement.

    • Examp...

  • Answered by AI
  • Q3. What is the garbage collector in Java?
  • Ans. 

    Garbage collector in Java is a built-in mechanism that automatically manages memory by reclaiming unused objects.

    • Garbage collector runs in the background to reclaim memory from objects that are no longer in use.

    • It helps prevent memory leaks and optimize memory usage.

    • Examples of garbage collectors in Java include Serial, Parallel, CMS, and G1.

  • Answered by AI
  • Q4. What is meant by exception handling?
  • Ans. 

    Exception handling is a programming concept where errors or exceptional events are dealt with in a structured manner.

    • Exception handling allows for graceful handling of errors in a program.

    • It involves using try, catch, and finally blocks to manage exceptions.

    • Examples include catching divide by zero errors or file not found exceptions.

  • Answered by AI
  • Q5. How does ConcurrentHashMap work in Java?
  • Ans. 

    ConcurrentHashMap is a thread-safe implementation of the Map interface in Java.

    • ConcurrentHashMap allows multiple threads to read and write to the map concurrently without the need for external synchronization.

    • It achieves thread-safety by dividing the map into segments, each of which can be locked independently.

    • ConcurrentHashMap uses a combination of synchronized blocks and volatile variables to ensure thread-safety.

    • It ...

  • Answered by AI
Round 2 - Face to Face 

(7 Questions)

Round duration - 50 Minutes
Round difficulty - Medium

This round had 1 coding question related to LRU Cache where I had to code its implementation in a production-ready manner explaining my overall approach with proper complexity analysis. This was followed by some Mutithreading questions from Java and then at last the interviewer asked me some basic design patterns in Software Engineering and some more questions related to OOPS.

  • Q1. 

    LRU Cache Design Question

    Design a data structure for a Least Recently Used (LRU) cache that supports the following operations:

    1. get(key) - Return the value of the key if it exists in the cache; otherw...

  • Ans. 

    Design a Least Recently Used (LRU) cache data structure that supports get and put operations with capacity constraint.

    • Implement a doubly linked list to keep track of the order of keys based on their recent usage.

    • Use a hashmap to store key-value pairs for quick access.

    • When capacity is reached, evict the least recently used item before inserting a new item.

    • Update the order of keys in the linked list whenever a key is acc...

  • Answered by AI
  • Q2. What are the start() and run() methods of the Thread class?
  • Ans. 

    The start() method is used to start a new thread, while the run() method contains the code that will be executed by the thread.

    • start() method is used to start a new thread and calls the run() method.

    • run() method contains the code that will be executed by the thread.

    • Calling run() directly will not create a new thread, it will just execute the code in the current thread.

  • Answered by AI
  • Q3. What is a BlockingQueue in the context of multithreading?
  • Ans. 

    BlockingQueue is a thread-safe queue that supports operations that wait for the queue to become non-empty when retrieving an element.

    • BlockingQueue is part of the java.util.concurrent package in Java.

    • It is used to implement producer-consumer scenarios in multithreaded applications.

    • Operations like put() and take() are blocking, meaning they will wait until the queue is in a valid state to perform the operation.

    • Example: L...

  • Answered by AI
  • Q4. What is thread starvation?
  • Ans. 

    Thread starvation occurs when a thread is unable to access the CPU resources it needs to execute its tasks.

    • Occurs when a thread is constantly preempted by higher priority threads, preventing it from running

    • Can lead to performance degradation and delays in task completion

    • Can be mitigated by adjusting thread priorities or implementing thread pooling

  • Answered by AI
  • Q5. What is a thread scheduler and how does time slicing work?
  • Ans. 

    A thread scheduler is responsible for managing the execution of multiple threads in a system. Time slicing is a technique used by the scheduler to allocate CPU time to each thread.

    • Thread scheduler is a component of the operating system that decides which thread to run next

    • Time slicing involves dividing the CPU time among multiple threads based on a predefined time interval

    • Example: In a round-robin scheduling algorithm,...

  • Answered by AI
  • Q6. Can you explain the SOLID principles in Object-Oriented Design?
  • Ans. 

    SOLID principles are a set of five design principles in object-oriented programming to make software more maintainable, flexible, and scalable.

    • Single Responsibility Principle (SRP) - A class should have only one reason to change.

    • Open/Closed Principle (OCP) - Software entities should be open for extension but closed for modification.

    • Liskov Substitution Principle (LSP) - Objects of a superclass should be replaceable with...

  • Answered by AI
  • Q7. What makes a HashSet different from a TreeSet?
  • Ans. 

    HashSet uses a hash table for storage, while TreeSet uses a red-black tree.

    • HashSet provides constant-time performance for basic operations like add, remove, contains.

    • TreeSet maintains elements in sorted order, allowing for efficient operations like range queries.

    • HashSet does not guarantee any specific order of elements, while TreeSet maintains a sorted order.

    • Example: HashSet<String> set = new HashSet<>(); T...

  • Answered by AI
Round 3 - HR 

(2 Questions)

Round duration - 30 Minutes
Round difficulty - Easy

This is a cultural fitment testing round .HR was very frank and asked standard questions. Then we discussed about my role.

  • Q1. Why should we hire you?
  • Q2. Why are you looking for a job change?

Interview Preparation Tips

Eligibility criteriaAbove 3 years of experienceSiemens interview preparation:Topics to prepare for the interview - Data Structures, Algorithms, System Design, Aptitude,Java, Spring, 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

I applied via Recruitment Consultant and was interviewed before May 2017. There were 4 interview rounds.

Interview Questionnaire 

3 Questions

  • Q1. 2 Developers in the panel. Last for almost 45 mins. 1. Automation test framework I worked on: Tool used Anatomy of framework Test Case flow Page Object Model 2. WAP for prime numbers. 3. Pu...
  • Q2. Team Lead in the panel. Last for almost 1.5 hrs. 1. Asked about any experience in languages like C++, C#, Java, Python, Perl etc along with comfort level. 2. Asked to write down all the answers (code snipp...
  • Q3. Senior Project Manager and HR Manager in the panel. Last for almost 2.5 hrs. 1. The current project you are working on with role and responsibility. 2. Domain knowledge acquires so far. 3. Contributions to...

Interview Preparation Tips

General Tips: Some piece of advice:
1. Be technically strong. Show all the required skills.
2. Present yourself to get fit in the current opening. Strengthen your answers with some real examples.
3. Be a bit diplomatic and take a pause (think critically) before answering the asked question.
4. Portray the ownership, rational thinking, problem-solving attitude.
5. The overall mindset should reflect the innovation, agent of new ideas, good team member with sustainability and positive attitude.
Skills: Communication, Body Language, Problem Solving, Analytical Skills, Leadership, Presentation Skills, Decision Making Skills
Duration: 1-4 weeks

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 Preparation Tips

Round: Resume Shortlist
Experience: General resume shortlisting out of nearly 400 applicants. Shortlisted close to 150 students.

Round: Technical Interview
Experience: Mostly questions from the resume were asked. They just wanted to know the types of projects I had done.
Tips: Make sure you know everything about what you write in your resume.

Round: Technical Interview
Experience: Another round of technical interview. Questions were more focused on the kind of profile they were offering, mostly to judge whether you are right for the job or not.

Skills: Confidence, Core knowledge
College Name: IIT BOMBAY

I appeared for an interview in Aug 2017.

Interview Questionnaire 

4 Questions

  • Q1. Difference between c and java?
  • Ans. 

    C is a procedural programming language while Java is an object-oriented programming language.

    • C is a low-level language while Java is a high-level language.

    • C requires manual memory management while Java has automatic memory management.

    • C is platform-dependent while Java is platform-independent.

    • C supports pointers while Java does not.

    • C has a simpler syntax compared to Java.

  • Answered by AI
  • Q2. Difference between final, finally and finalize
  • Ans. 

    final, finally, and finalize are keywords in Java with different meanings.

    • final is a keyword used to declare a constant value, a variable that cannot be modified.

    • finally is a block used in exception handling to ensure a piece of code is always executed, whether an exception is thrown or not.

    • finalize is a method in the Object class that is called by the garbage collector before an object is destroyed.

    • final and finally a...

  • Answered by AI
  • Q3. About yourself
  • Q4. Why Johnson
  • Ans. 

    Johnson is a reputable company known for its innovative software solutions and collaborative work environment.

    • Johnson has a strong reputation in the industry for delivering high-quality software solutions.

    • The company values collaboration and teamwork, which aligns with my own work style.

    • I admire Johnson's commitment to innovation and staying ahead of technological advancements.

  • Answered by AI

Interview Preparation Tips

Round: Apptitude Test
Experience: Questions was unpredictable as it was from reasoning,verbal , and from general knowledge also.Technical questions was also there.
Tips: Technical question was not that hard. Just have good basic knowledge of programming and DBMS

Round: Technical Interview
Experience: It was from basic concepts only.

Round: HR Interview
Experience: There were 12 HRs to take my interview but asked mainly from CV only.

Tips: Be calm and confident and learn the basic of subjects

College Name: BPPIMT

Skills evaluated in this interview

Interview Questionnaire 

3 Questions

  • Q1. Simple question as per 4 year of experience
  • Q2. Same question asked by interviewer
  • Q3. Too much tried for negotiation and not gave expected compansession

Interview Questionnaire 

1 Question

  • Q1. Prepare python data structures and python basics

I applied via Naukri.com and was interviewed before May 2020. There were 5 interview rounds.

Interview Questionnaire 

1 Question

  • Q1. Scenario based to be solved with python

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare the core concepts very well.
Are these interview questions helpful?

Interview Questionnaire 

1 Question

  • Q1. String programs, API basics, Automation, Status codes , Http methods.

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare well on programming
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
Selected Selected

I appeared for an interview in Sep 2024.

Round 1 - Technical 

(4 Questions)

  • Q1. Initializer list use cases
  • Ans. 

    Initializer lists in C++ allow for efficient member initialization and can improve code clarity and performance.

    • Used to initialize member variables in constructors: `MyClass(int a) : x(a), y(0) {}`.

    • Enables direct initialization of const and reference members: `const int value; MyClass() : value(42) {}`.

    • Facilitates initialization of base class members: `Derived() : Base(10) {}`.

    • Allows for initialization of STL container...

  • Answered by AI
  • Q2. Polymorphism and use cases
  • Q3. Types of polymorphism
  • Ans. 

    Types of polymorphism include compile-time polymorphism (method overloading) and runtime polymorphism (method overriding).

    • Compile-time polymorphism is achieved through method overloading, where multiple methods have the same name but different parameters.

    • Runtime polymorphism is achieved through method overriding, where a subclass provides a specific implementation of a method that is already defined in its superclass.

  • Answered by AI
  • Q4. Virtual functions
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Approached by Company and was interviewed before Apr 2022. There were 3 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 

(3 Questions)

  • Q1. Testing Technical Skill mentioned in Resume & Which ever need for the project we are going to work on
  • Q2. What is Python and its data types
  • Q3. What is logic building/thinking & where we need to apply this?
  • Ans. 

    Logic building/thinking is the process of analyzing and solving problems using reasoning and critical thinking skills.

    • It involves breaking down complex problems into smaller, more manageable parts

    • Identifying patterns and relationships between different pieces of information

    • Using deductive and inductive reasoning to draw conclusions

    • Applying logical principles to solve problems in various fields such as computer programm...

  • Answered by AI
Round 3 - HR 

(2 Questions)

  • Q1. Salary Expectations and Negotiations
  • Q2. What do you think about your growth after joining to our organisation?
  • Ans. 

    I believe that joining your organization will provide me with ample opportunities for growth and development.

    • I am confident that I will be able to learn and acquire new skills in a dynamic and challenging environment.

    • I am excited about the potential for career advancement and the chance to work on innovative projects.

    • I look forward to collaborating with talented colleagues and mentors who can guide and inspire my profe...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Best company to explore your skills independently and stressless environment to work

Skills evaluated in this interview

Siemens Interview FAQs

How to prepare for Siemens Senior Systems Engineer 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 Regulatory Affairs, Risk Management, Compliance Testing, Consulting and Data Structures and Algorithms.

Tell us how to improve this page.

Overall Interview Experience Rating

4.5/5

based on 2 interview experiences

Difficulty level

Hard 100%

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 Senior Systems Engineer Salary
based on 246 salaries
₹6.1 L/yr - ₹25.6 L/yr
122% more than the average Senior Systems Engineer Salary in India
View more details

Siemens Senior Systems Engineer Reviews and Ratings

based on 58 reviews

4.4/5

Rating in categories

4.1

Skill development

4.3

Work-life balance

4.1

Salary

4.5

Job security

4.3

Company culture

3.8

Promotions

3.9

Work satisfaction

Explore 58 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

Honeywell Automation

3.7
Compare

Rockwell Automation

3.6
Compare
write
Share an Interview