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 Front end Developer Interview Questions and Answers

Updated 11 Mar 2022

10 Interview questions

A Front end Developer was asked
Q. What are closures in JavaScript?
Ans. 

Closures in JavaScript are functions that have access to variables from their outer scope even after the outer function has finished executing.

  • Closures allow for maintaining state in JavaScript functions.

  • They are created whenever a function is defined within another function.

  • Closures can access variables from their outer scope, even after the outer function has finished executing.

A Front end Developer was asked
Q. What is prototype chaining in JavaScript?
Ans. 

Prototype chaining in JavaScript is the mechanism by which objects inherit properties and methods from other objects.

  • In JavaScript, each object has a prototype property that points to another object. When a property or method is accessed on an object, JavaScript will look for it in the object itself first, and then in its prototype chain.

  • If the property or method is not found in the object, JavaScript will continu...

Front end Developer Interview Questions Asked at Other Companies

Q1. Non-Decreasing Array Problem Statement Given an integer array ARR ... read more
Q2. Find Unique Element in Array You have been provided an integer ar ... read more
asked in JUSPAY
Q3. Dijkstra's Shortest Path Problem Statement You are given an undir ... read more
asked in JUSPAY
Q4. Encode N-ary Tree to Binary Tree Problem Statement You are provid ... read more
Q5. Check If Linked List Is Palindrome Given a singly linked list of ... read more
A Front end Developer was asked
Q. What are the features of HTML5?
Ans. 

HTML5 is the latest version of the HTML standard with new features for web development.

  • Support for multimedia elements like <video> and <audio>

  • Canvas and SVG for graphics and animations

  • Improved form controls and validation

  • Offline storage with Local Storage and IndexedDB

  • Geolocation API for location-based services

🔥 Asked by recruiter 2 times
A Front end Developer was asked
Q. What is a service in Angular?
Ans. 

A service in Angular is a reusable piece of code that can be injected into components to provide specific functionality.

  • Services are singleton objects in Angular that are instantiated only once during the lifetime of an application.

  • They are used to encapsulate logic and data that can be shared across multiple components.

  • Services can be injected into components, directives, and other services using Angular's depend...

A Front end Developer was asked
Q. Can you explain the CSS Box Model?
Ans. 

The CSS Box Model is a fundamental concept in CSS that defines the layout and spacing of elements on a webpage.

  • The Box Model consists of content, padding, border, and margin.

  • Content: The actual content or text of the element.

  • Padding: Space between the content and the border.

  • Border: The border surrounding the padding and content.

  • Margin: Space outside the border, separating the element from other elements.

  • Example: d...

A Front end Developer was asked
Q. What is dependency injection in Angular?
Ans. 

Dependency injection in Angular is a design pattern where components are given their dependencies rather than creating them themselves.

  • In Angular, dependency injection is achieved by declaring the dependencies in the constructor of a component or service.

  • It helps in making components more modular, reusable, and easier to test.

  • For example, if a component needs a service to fetch data from an API, instead of creatin...

A Front end Developer was asked
Q. What are lifecycle hooks in Angular?
Ans. 

Lifecycle hooks in Angular are methods that allow you to tap into specific points in a component's lifecycle.

  • Lifecycle hooks include ngOnInit, ngOnChanges, ngDoCheck, ngOnDestroy, etc.

  • ngOnInit is used for initialization logic, ngOnChanges for reacting to input changes, ngDoCheck for custom change detection, ngOnDestroy for cleanup tasks, etc.

Are these interview questions helpful?
A Front end Developer was asked
Q. What are components in Angular?
Ans. 

Components in Angular are reusable building blocks that encapsulate HTML, CSS, and TypeScript logic.

  • Components are the basic building blocks of Angular applications.

  • They consist of an HTML template, CSS styles, and TypeScript code.

  • Components help in organizing the application into smaller, reusable pieces.

  • They can communicate with other components using @Input and @Output decorators.

  • Example: A 'navbar' component c...

A Front end Developer was asked
Q. What is the difference between 'var' and 'let' in JavaScript?
Ans. 

var is function scoped while let is block scoped in JavaScript.

  • var is function scoped, meaning it is accessible throughout the function it is declared in.

  • let is block scoped, meaning it is only accessible within the block it is declared in.

  • Using var can lead to variable hoisting issues, while let avoids this problem.

  • Example: var x = 10; function test() { var x = 20; console.log(x); } test(); // Output: 20

A Front end Developer was asked
Q. 

Sort Array Problem Statement

Given an array consisting of 'N' positive integers where each integer is either 0, 1, or 2, your task is to sort the given array in non-decreasing order.

Input:

Each input sta...
Ans. 

Sort an array of positive integers (0, 1, 2) in non-decreasing order.

  • Use counting sort algorithm to sort the array efficiently.

  • Count the occurrences of 0s, 1s, and 2s in the array.

  • Update the array with the counts of each element in non-decreasing order.

Siemens Front end Developer Interview Experiences

1 interview found

I appeared for an interview in Jun 2021.

Round 1 - Video Call 

(6 Questions)

Round duration - 60 Minutes
Round difficulty - Medium

This round consisted of some standard questions related to HTML , CSS , JS and basic Frontend develeoper practices .

  • Q1. What are the features of HTML5?
  • Ans. 

    HTML5 is the latest version of the HTML standard with new features for web development.

    • Support for multimedia elements like <video> and <audio>

    • Canvas and SVG for graphics and animations

    • Improved form controls and validation

    • Offline storage with Local Storage and IndexedDB

    • Geolocation API for location-based services

  • Answered by AI
  • Q2. Can you explain the CSS Box Model?
  • Ans. 

    The CSS Box Model is a fundamental concept in CSS that defines the layout and spacing of elements on a webpage.

    • The Box Model consists of content, padding, border, and margin.

    • Content: The actual content or text of the element.

    • Padding: Space between the content and the border.

    • Border: The border surrounding the padding and content.

    • Margin: Space outside the border, separating the element from other elements.

    • Example: div { ...

  • Answered by AI
  • Q3. Can you explain hoisting in JavaScript?
  • Ans. 

    Hoisting in JavaScript is a behavior where variable and function declarations are moved to the top of their containing scope during the compilation phase.

    • Variable declarations are hoisted to the top of their scope, but not their assignments.

    • Function declarations are fully hoisted, meaning they can be called before they are declared.

    • Hoisting can lead to unexpected behavior if not understood properly.

  • Answered by AI
  • Q4. What are closures in JavaScript?
  • Ans. 

    Closures in JavaScript are functions that have access to variables from their outer scope even after the outer function has finished executing.

    • Closures allow for maintaining state in JavaScript functions.

    • They are created whenever a function is defined within another function.

    • Closures can access variables from their outer scope, even after the outer function has finished executing.

  • Answered by AI
  • Q5. What is the difference between 'var' and 'let' in JavaScript?
  • Ans. 

    var is function scoped while let is block scoped in JavaScript.

    • var is function scoped, meaning it is accessible throughout the function it is declared in.

    • let is block scoped, meaning it is only accessible within the block it is declared in.

    • Using var can lead to variable hoisting issues, while let avoids this problem.

    • Example: var x = 10; function test() { var x = 20; console.log(x); } test(); // Output: 20

  • Answered by AI
  • Q6. What is prototype chaining in JavaScript?
  • Ans. 

    Prototype chaining in JavaScript is the mechanism by which objects inherit properties and methods from other objects.

    • In JavaScript, each object has a prototype property that points to another object. When a property or method is accessed on an object, JavaScript will look for it in the object itself first, and then in its prototype chain.

    • If the property or method is not found in the object, JavaScript will continue to ...

  • Answered by AI
Round 2 - Video Call 

(7 Questions)

Round duration - 50 Minutes
Round difficulty - Medium

This round primarily focused on AngularJS and had questions revolving around it and basic JavaScript.

  • Q1. What are components in Angular?
  • Ans. 

    Components in Angular are reusable building blocks that encapsulate HTML, CSS, and TypeScript logic.

    • Components are the basic building blocks of Angular applications.

    • They consist of an HTML template, CSS styles, and TypeScript code.

    • Components help in organizing the application into smaller, reusable pieces.

    • They can communicate with other components using @Input and @Output decorators.

    • Example: A 'navbar' component can be...

  • Answered by AI
  • Q2. What are the differences between a Component and a Directive in Angular?
  • Ans. 

    Components are building blocks of Angular applications, while directives are used to add behavior to DOM elements.

    • Components have a template, styles, and behavior encapsulated together, while directives are used to manipulate the behavior of existing DOM elements.

    • Components are typically used to create reusable UI elements, while directives are used to add custom behavior to existing elements.

    • Components can have their ...

  • Answered by AI
  • Q3. What are lifecycle hooks in Angular?
  • Ans. 

    Lifecycle hooks in Angular are methods that allow you to tap into specific points in a component's lifecycle.

    • Lifecycle hooks include ngOnInit, ngOnChanges, ngDoCheck, ngOnDestroy, etc.

    • ngOnInit is used for initialization logic, ngOnChanges for reacting to input changes, ngDoCheck for custom change detection, ngOnDestroy for cleanup tasks, etc.

  • Answered by AI
  • Q4. What is a service in Angular?
  • Ans. 

    A service in Angular is a reusable piece of code that can be injected into components to provide specific functionality.

    • Services are singleton objects in Angular that are instantiated only once during the lifetime of an application.

    • They are used to encapsulate logic and data that can be shared across multiple components.

    • Services can be injected into components, directives, and other services using Angular's dependency ...

  • Answered by AI
  • Q5. What is dependency injection in Angular?
  • Ans. 

    Dependency injection in Angular is a design pattern where components are given their dependencies rather than creating them themselves.

    • In Angular, dependency injection is achieved by declaring the dependencies in the constructor of a component or service.

    • It helps in making components more modular, reusable, and easier to test.

    • For example, if a component needs a service to fetch data from an API, instead of creating an ...

  • Answered by AI
  • Q6. 

    Sort Array Problem Statement

    Given an array consisting of 'N' positive integers where each integer is either 0, 1, or 2, your task is to sort the given array in non-decreasing order.

    Input:

    Each input st...
  • Ans. 

    Sort an array of positive integers (0, 1, 2) in non-decreasing order.

    • Use counting sort algorithm to sort the array efficiently.

    • Count the occurrences of 0s, 1s, and 2s in the array.

    • Update the array with the counts of each element in non-decreasing order.

  • Answered by AI
  • Q7. What is Angular Bootstrap?
  • Ans. 

    Angular Bootstrap is a front-end framework that combines Angular and Bootstrap to create responsive web applications.

    • Angular Bootstrap is a library that allows developers to easily integrate Bootstrap components into Angular applications.

    • It provides pre-built UI components like modals, dropdowns, and tooltips that can be easily customized and used in Angular projects.

    • Angular Bootstrap simplifies the process of creating...

  • Answered by AI
Round 3 - HR 

(1 Question)

Round duration - 30 Minutes
Round difficulty - Easy

This was a typical HR round with some standard Behavioral questions like my interests, weaknesses, strengths, family
background, are you willing to relocate or travel , why Siemens, CEO of Siemens etc.

  • Q1. Why should we hire you?

Interview Preparation Tips

Eligibility criteriaAbove 7 CGPASiemens interview preparation:Topics to prepare for the interview - HTML , CSS , JavaScript , React , NodeJS , Basic Data Structures and AlgorithmsTime required to prepare for the interview - 4 MonthsInterview preparation tips for other job seekers

Tip 1 : Do at-least 2 good projects and you must know every bit of them.
Tip 2 : Understand the fundamentals of JavaScript as they are asked very often.

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

What people are saying about Siemens

View All
spaciousswift
Verified Icon
6d
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
3
Average
Difficulty level
-
Process Duration
-
Result
-
Round 1 - One-on-one 

(2 Questions)

  • Q1. About projects, how do they work, what all have you implemented
  • Q2. One simple question on average of array elements
  • Ans. 

    Calculating the average of array elements involves summing the elements and dividing by their count.

    • To find the average, sum all elements in the array. Example: [2, 4, 6] -> 2 + 4 + 6 = 12.

    • Count the number of elements in the array. Example: [2, 4, 6] has 3 elements.

    • Divide the total sum by the count of elements. Example: 12 (sum) / 3 (count) = 4 (average).

    • Ensure to handle edge cases, like an empty array, which should...

  • Answered by AI

Front end Developer Interview Questions Asked at Other Companies

Q1. Non-Decreasing Array Problem Statement Given an integer array ARR ... read more
Q2. Find Unique Element in Array You have been provided an integer ar ... read more
asked in JUSPAY
Q3. Dijkstra's Shortest Path Problem Statement You are given an undir ... read more
asked in JUSPAY
Q4. Encode N-ary Tree to Binary Tree Problem Statement You are provid ... read more
Q5. Check If Linked List Is Palindrome Given a singly linked list of ... read more
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 Oct 2024. There were 2 interview rounds.

Round 1 - Resume Shortlist 

(1 Question)

  • Q1. Just based on resume
Round 2 - Interview 

(4 Questions)

  • Q1. Tell me about your projects
  • Ans. 

    I have worked on various projects including web development, mobile app development, and data analysis.

    • Developed a web application using React and Node.js for a client in the e-commerce industry

    • Created a mobile app using Flutter for tracking daily expenses

    • Performed data analysis on customer feedback data using Python and SQL

  • Answered by AI
  • Q2. He gave me a DSA question.
  • Q3. Asked about oops concepts
  • Ans. 

    OOPs concepts include encapsulation, inheritance, polymorphism, and abstraction, forming the foundation of object-oriented programming.

    • Encapsulation: Bundling data and methods in a class. Example: A class 'Car' with attributes like 'speed' and methods like 'accelerate()'.

    • Inheritance: Mechanism to create a new class from an existing class. Example: 'ElectricCar' inherits from 'Car'.

    • Polymorphism: Ability to process objec...

  • Answered by AI
  • Q4. Asked about dbms

Interview Preparation Tips

Interview preparation tips for other job seekers - It was on campus drive, first round was resume shortlisting. Then I was selected and second round was technical interview round. They asked medium DSA questions, some basic cs fundamentals and brief about projects.

I applied via Company Website and was interviewed in May 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 - Aptitude Test 

Find tha Right career for you

Interview Preparation Tips

Interview preparation tips for other job seekers - Define you communication "stack".....
Determine transparency.....
Interview experience
5
Excellent
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Naukri.com and was interviewed before Dec 2023. There were 2 interview rounds.

Round 1 - Technical 

(2 Questions)

  • Q1. What is the concept of virtual inheritance in relation to vtables and vptrs in object-oriented programming?
  • Ans. 

    Virtual inheritance allows a derived class to inherit from a base class without creating duplicate base class subobjects.

    • Virtual inheritance is used to resolve the Diamond Problem in C++ where a class inherits from two classes that have a common base class.

    • It ensures that only one copy of the base class is inherited by the derived class.

    • Virtual inheritance introduces a virtual base class subobject to the derived class,...

  • Answered by AI
  • Q2. Explained about vtptr and vtable initialisation and structure
  • Ans. 

    vtptr and vtable are key components of C++'s dynamic polymorphism, enabling method resolution at runtime.

    • vtable (virtual table) is a static table created for each class with virtual functions, containing pointers to the virtual functions.

    • vtptr (virtual table pointer) is a pointer in each object of a class that points to the vtable of its class.

    • When an object is created, its vtptr is initialized to point to the vtable o...

  • Answered by AI
Round 2 - Technical 

(1 Question)

  • Q1. What is the implementation of a class for string operations?
  • Ans. 

    A class for string operations can include methods for concatenation, substring extraction, length calculation, etc.

    • Create a class with methods like concatenateStrings, extractSubstring, calculateLength, etc.

    • Use string manipulation functions like substring, concat, length, etc. within the class methods.

    • Ensure error handling for edge cases like empty strings or out-of-bounds indices.

    • Example: class StringOperations { conc...

  • Answered by AI
Interview experience
3
Average
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Approached by Company and was interviewed before Sep 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 

(5 Questions)

  • Q1. What is copy constructor?
  • Ans. 

    Copy constructor is a special type of constructor which creates a new object as a copy of an existing object.

    • Copy constructor is used to initialize a new object as a copy of an existing object.

    • It takes an object of the same class as a parameter.

    • It is called automatically when a new object is created from an existing object.

    • Example: class MyClass { public: MyClass(const MyClass& obj) { // copy constructor logic } };

  • Answered by AI
  • Q2. Difference between copy constructor and assignment operator
  • Ans. 

    Copy constructor is used to create a new object as a copy of an existing object, while assignment operator is used to assign values from one object to another.

    • Copy constructor is called when a new object is created from an existing object, while assignment operator is called when an existing object is assigned values from another object.

    • Copy constructor creates a new object with its own memory space, while assignment o...

  • Answered by AI
  • Q3. What is static function
  • Ans. 

    A static function is a function that is associated with a class rather than an instance of the class.

    • Static functions can be called without creating an instance of the class.

    • Static functions are commonly used for utility functions that do not require access to instance-specific data.

    • Static functions are declared using the 'static' keyword in many programming languages.

    • Example: 'Math.max()' in JavaScript is a static fun...

  • Answered by AI
  • Q4. Write Fibonacci series
  • Ans. 

    Fibonacci series is a sequence of numbers where each number is the sum of the two preceding ones.

    • Start with 0 and 1 as the first two numbers in the series

    • Add the previous two numbers to get the next number in the series

    • Repeat this process to generate the Fibonacci series

  • Answered by AI
  • Q5. What is single ton design pattern
  • Ans. 

    Singleton design pattern ensures a class has only one instance and provides a global point of access to it.

    • Ensures a class has only one instance

    • Provides a global point of access to that instance

    • Commonly used in scenarios where only one instance of a class is needed, such as database connections or logging

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - If ur c++ developer go through the c++ 11/14 concept

Skills evaluated in this interview

I applied via Naukri.com and was interviewed in Jan 2022. There were 4 interview rounds.

Round 1 - Technical 

(1 Question)

  • Q1. OOPs concepts and program on linked list reversal and c pointer concepts
Round 2 - Technical 

(1 Question)

  • Q1. OOPs concepts,C basis, IPC and signals
Round 3 - Technical 

(1 Question)

  • Q1. OOPs concepts, c basics, data structures
Round 4 - HR 

(5 Questions)

  • Q1. Share details of your previous job.
  • Q2. What are your salary expectations?
  • Q3. What is your family background?
  • Ans. 

    I come from a close-knit family that values education and support, fostering my passion for technology and problem-solving.

    • My parents are both educators, which instilled a love for learning in me from a young age.

    • I have two siblings; my older brother is an engineer, and my younger sister is studying computer science.

    • Family gatherings often involve discussions about technology and innovation, inspiring my career choice.

    • ...

  • Answered by AI
  • Q4. Why are you looking for a change?
  • Q5. Tell me about yourself.

Interview Preparation Tips

Interview preparation tips for other job seekers - Have gone though 3 levels of technical interviews followed by manageral discussion and HR discussion
Are these interview questions helpful?

I applied via Company Website and was interviewed in Jan 2021. There was 1 interview round.

Interview Questionnaire 

6 Questions

  • Q1. What about yourself
  • Q2. Java developer
  • Q3. About java
  • Q4. Working experience
  • Q5. About hobby
  • Q6. Communication way

Interview Preparation Tips

Interview preparation tips for other job seekers - Good
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(2 Questions)

  • Q1. Good URI design
  • Q2. Accessing id parameter in URL
  • Ans. 

    Accessing id parameter in URL involves parsing the URL and extracting the id value.

    • Use the window.location object to access the URL of the current page.

    • Parse the URL using methods like split() or URLSearchParams to extract the id parameter.

    • Example: If the URL is 'http://example.com/page?id=123', you can access the id value by parsing the URL.

  • Answered by AI
Round 2 - One-on-one 

(2 Questions)

  • Q1. Salary expectations
  • Q2. Plan of growing up technically

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare in algorithms, Java 8 / 11

Skills evaluated in this interview

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

I appeared for an interview in Feb 2025, where I was asked the following questions.

  • Q1. Why do you want to join this company?
  • Ans. 

    I admire your company's innovative approach and commitment to quality, which aligns with my career goals and values as a developer.

    • Your company's focus on cutting-edge technology, like AI and machine learning, excites me as I want to work on impactful projects.

    • I appreciate your commitment to professional development, such as mentorship programs, which will help me grow my skills.

    • The collaborative culture here fosters c...

  • Answered by AI
  • Q2. What are the sql constraints?
  • Ans. 

    SQL constraints are rules applied to table columns to enforce data integrity and validity.

    • PRIMARY KEY: Uniquely identifies each record in a table. Example: `CREATE TABLE Users (UserID INT PRIMARY KEY);`

    • FOREIGN KEY: Ensures referential integrity between two tables. Example: `FOREIGN KEY (UserID) REFERENCES Users(UserID)`.

    • UNIQUE: Ensures all values in a column are different. Example: `CREATE TABLE Users (Email VARCHAR(25...

  • Answered by AI

Siemens Interview FAQs

How to prepare for Siemens Front end 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 Front End, HTML, Javascript, Siemens and Agile.

Tell us how to improve this page.

Join Siemens #TransformTheEverydayWithUs

Interview Questions from Similar Companies

Johnson Controls Interview Questions
3.6
 • 274 Interviews
Wipro PARI Interview Questions
3.3
 • 50 Interviews
Falcon Autotech Interview Questions
3.9
 • 47 Interviews
MNC AUTOMATION Interview Questions
4.3
 • 36 Interviews
View all
Siemens Front end Developer Salary
based on 29 salaries
₹5.5 L/yr - ₹20.8 L/yr
104% more than the average Front end Developer Salary in India
View more details

Siemens Front end Developer Reviews and Ratings

based on 2 reviews

5.0/5

Rating in categories

4.7

Skill development

5.0

Work-life balance

4.0

Salary

4.4

Job security

5.0

Company culture

3.3

Promotions

4.7

Work satisfaction

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

₹3.8 L/yr - ₹26.9 L/yr

Senior Software Engineer
1.8k salaries
unlock blur

₹9.4 L/yr - ₹35 L/yr

Software Engineer
1.5k salaries
unlock blur

₹6 L/yr - ₹24.8 L/yr

Manager
585 salaries
unlock blur

₹8.2 L/yr - ₹30 L/yr

Senior Process Associate
455 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.8
Compare
write
Share an Interview