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

Updated 9 Jun 2021

11 Interview questions

A Web Developer was asked
Q. How can two components interact in Angular?
Ans. 

Components can interact in Angular through input and output bindings.

  • Input bindings allow a parent component to pass data to a child component.

  • Output bindings allow a child component to emit events to a parent component.

  • Components can also communicate through a shared service or using @ViewChild and @ContentChild decorators.

A Web Developer was asked
Q. How does an Angular app bootstrap?
Ans. 

Angular app bootstraps the root module of the application

  • Angular app bootstraps the AppModule by default

  • The bootstrap process initializes the application and loads the root component

  • The root component is usually AppComponent

Web Developer Interview Questions Asked at Other Companies

Q1. Last Index of Element The task is to determine the index of the l ... read more
Q2. Check Indices With Given Difference Problem Statement You are pro ... read more
asked in Evalueserve
Q3. Reverse Linked List Problem Statement Given a singly linked list ... read more
asked in Internshala
Q4. Clone a Linked List with Random Pointers Given a linked list wher ... read more
asked in Internshala
Q5. Loot Houses Problem Statement A thief is planning to steal from s ... read more
A Web Developer was asked
Q. What is a closure?
Ans. 

Closure is a function that has access to its outer function's variables, even after the outer function has returned.

  • A closure is created when a function returns another function that references variables from the parent function.

  • Closures can be used to create private variables and methods in JavaScript.

  • Closures can also be used to create functions with pre-set arguments.

A Web Developer was asked
Q. What is a pseudo-element/pseudo-child?
Ans. 

Pseudo elements/children are CSS selectors that target specific parts of an element.

  • Pseudo elements are denoted by a double colon (::) and are used to style a specific part of an element, such as the first letter or line of text.

  • Pseudo children are denoted by a single colon (:), and are used to select a specific state of an element, such as when it is being hovered over or clicked.

  • Examples of pseudo elements inclu...

A Web Developer was asked
Q. What is Hoisting?
Ans. 

Hoisting is a JavaScript mechanism where variables and function declarations are moved to the top of their scope.

  • Hoisting applies to variable and function declarations, but not to variable assignments

  • Function declarations are hoisted before variable declarations

  • Hoisting can lead to unexpected behavior and should be avoided

A Web Developer was asked
Q. What is the difference between JavaScript and Angular?
Ans. 

JavaScript is a programming language used for web development, while Angular is a JavaScript framework for building web applications.

  • JavaScript is a programming language that allows developers to add interactivity and dynamic features to websites.

  • Angular is a JavaScript framework that provides a structure for building web applications.

  • JavaScript can be used independently to create web functionality, while Angular ...

A Web Developer was asked
Q. What is the difference between var and let?
Ans. 

var is function-scoped and let is block-scoped.

  • var declarations are hoisted to the top of their scope, while let declarations are not.

  • var can be redeclared in the same scope, while let cannot.

  • let variables are not accessible before they are declared, while var variables are.

  • let variables have a temporal dead zone, while var variables do not.

  • let is recommended for use in modern JavaScript.

Are these interview questions helpful?
A Web Developer was asked
Q. What is optional chaining?
Ans. 

Optional chaining is a feature in JavaScript that allows you to access properties of an object without worrying about whether the object is null or undefined.

  • It uses the question mark (?) operator to check if a property exists before accessing it.

  • It can be used with both object properties and function calls.

  • It can be chained multiple times to access nested properties.

  • It was introduced in ECMAScript 2020.

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

A service in Angular is a singleton object that can be injected into components and other services.

  • Services are used to share data and functionality across multiple components

  • Services can be used to make HTTP requests, handle authentication, and perform other tasks

  • Services are typically defined using the @Injectable decorator

  • Services can be injected into components and other services using the constructor

A Web Developer was asked
Q. Lifecycle hooks in Angular
Ans. 

Lifecycle hooks are functions that allow you to tap into the lifecycle of a component or directive.

  • ngOnInit() - called after the first ngOnChanges()

  • ngOnChanges() - called when an input property changes

  • ngDoCheck() - called during every change detection run

  • ngAfterContentInit() - called after content is projected into component

  • ngAfterContentChecked() - called after every check of projected content

  • ngAfterViewInit() - ...

Siemens Web Developer Interview Experiences

1 interview found

I applied via Job Portal and was interviewed in May 2021. There were 4 interview rounds.

Interview Questionnaire 

14 Questions

  • Q1. 1) Introduce yourself.
  • Q2. 2) Technologies you have worked
  • Ans. 

    I have experience with various web technologies, including HTML, CSS, JavaScript, and frameworks like React and Node.js.

    • Proficient in HTML5 and CSS3 for structuring and styling web pages.

    • Experienced in JavaScript for dynamic content and interactivity.

    • Worked with React for building user interfaces and single-page applications.

    • Utilized Node.js for server-side development and RESTful APIs.

    • Familiar with version control sys...

  • Answered by AI
  • Q3. 3) What is Hoisting
  • Ans. 

    Hoisting is a JavaScript mechanism where variables and function declarations are moved to the top of their scope.

    • Hoisting applies to variable and function declarations, but not to variable assignments

    • Function declarations are hoisted before variable declarations

    • Hoisting can lead to unexpected behavior and should be avoided

  • Answered by AI
  • Q4. What is difference between var and let
  • Ans. 

    var is function-scoped and let is block-scoped.

    • var declarations are hoisted to the top of their scope, while let declarations are not.

    • var can be redeclared in the same scope, while let cannot.

    • let variables are not accessible before they are declared, while var variables are.

    • let variables have a temporal dead zone, while var variables do not.

    • let is recommended for use in modern JavaScript.

  • Answered by AI
  • Q5. What is optional chaining?
  • Ans. 

    Optional chaining is a feature in JavaScript that allows you to access properties of an object without worrying about whether the object is null or undefined.

    • It uses the question mark (?) operator to check if a property exists before accessing it.

    • It can be used with both object properties and function calls.

    • It can be chained multiple times to access nested properties.

    • It was introduced in ECMAScript 2020.

  • Answered by AI
  • Q6. What is pseudo element/pseudo child
  • Ans. 

    Pseudo elements/children are CSS selectors that target specific parts of an element.

    • Pseudo elements are denoted by a double colon (::) and are used to style a specific part of an element, such as the first letter or line of text.

    • Pseudo children are denoted by a single colon (:), and are used to select a specific state of an element, such as when it is being hovered over or clicked.

    • Examples of pseudo elements include ::...

  • Answered by AI
  • Q7. What is closure
  • Ans. 

    Closure is a function that has access to its outer function's variables, even after the outer function has returned.

    • A closure is created when a function returns another function that references variables from the parent function.

    • Closures can be used to create private variables and methods in JavaScript.

    • Closures can also be used to create functions with pre-set arguments.

  • Answered by AI
  • Q8. What is difference between JavaScript and Angular
  • Ans. 

    JavaScript is a programming language used for web development, while Angular is a JavaScript framework for building web applications.

    • JavaScript is a programming language that allows developers to add interactivity and dynamic features to websites.

    • Angular is a JavaScript framework that provides a structure for building web applications.

    • JavaScript can be used independently to create web functionality, while Angular is bu...

  • Answered by AI
  • Q9. Why Angular?
  • Q10. JavaScript vs TypeScript
  • Ans. 

    TypeScript is a superset of JavaScript that adds static typing and other features.

    • TypeScript catches errors at compile time, while JavaScript only catches them at runtime.

    • TypeScript supports interfaces and classes, making it easier to write and maintain large codebases.

    • JavaScript is more flexible and easier to learn, but TypeScript offers better scalability and maintainability.

    • TypeScript can be transpiled into JavaScri...

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

    A service in Angular is a singleton object that can be injected into components and other services.

    • Services are used to share data and functionality across multiple components

    • Services can be used to make HTTP requests, handle authentication, and perform other tasks

    • Services are typically defined using the @Injectable decorator

    • Services can be injected into components and other services using the constructor

  • Answered by AI
  • Q12. What Angular app bootstraps
  • Ans. 

    Angular app bootstraps the root module of the application

    • Angular app bootstraps the AppModule by default

    • The bootstrap process initializes the application and loads the root component

    • The root component is usually AppComponent

  • Answered by AI
  • Q13. How two components can interact in Angular
  • Ans. 

    Components can interact in Angular through input and output bindings.

    • Input bindings allow a parent component to pass data to a child component.

    • Output bindings allow a child component to emit events to a parent component.

    • Components can also communicate through a shared service or using @ViewChild and @ContentChild decorators.

  • Answered by AI
  • Q14. Lifecycle hooks in Angular
  • Ans. 

    Lifecycle hooks are functions that allow you to tap into the lifecycle of a component or directive.

    • ngOnInit() - called after the first ngOnChanges()

    • ngOnChanges() - called when an input property changes

    • ngDoCheck() - called during every change detection run

    • ngAfterContentInit() - called after content is projected into component

    • ngAfterContentChecked() - called after every check of projected content

    • ngAfterViewInit() - calle...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Please work on introduction to include your work experience as much as possible.
Speak loud and clear.
Study Above question as these are commonly asked

Skills evaluated in this interview

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

I applied via Recruitment Consulltant and was interviewed before Apr 2021. There was 1 interview round.

Round 1 - Technical 

(1 Question)

  • Q1. 1. Scenario-based questions. ex: how you will differentiate two different login 2. Remove duplicates from the array.

Interview Preparation Tips

Interview preparation tips for other job seekers - Interviews are simple if you are fresher and average/difficult for experienced.
3 to 4 rounds of interviews can take place.

Web Developer Interview Questions Asked at Other Companies

Q1. Last Index of Element The task is to determine the index of the l ... read more
Q2. Check Indices With Given Difference Problem Statement You are pro ... read more
asked in Evalueserve
Q3. Reverse Linked List Problem Statement Given a singly linked list ... read more
asked in Internshala
Q4. Clone a Linked List with Random Pointers Given a linked list wher ... read more
asked in Internshala
Q5. Loot Houses Problem Statement A thief is planning to steal from s ... read more

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

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
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 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.....
Are these interview questions helpful?
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
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
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.

Siemens Interview FAQs

How to prepare for Siemens Web 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 Web Development, Coding, CSS3, Scrum and Windows.
What are the top questions asked in Siemens Web Developer interview?

Some of the top questions asked at the Siemens Web Developer interview -

  1. what is difference between JavaScript and Angu...read more
  2. How two components can interact in Angu...read more
  3. What is difference between var and ...read more

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
 • 51 Interviews
Falcon Autotech Interview Questions
3.9
 • 47 Interviews
MNC AUTOMATION Interview Questions
4.3
 • 36 Interviews
View all
Siemens Web Developer Salary
based on 4 salaries
₹4 L/yr - ₹16 L/yr
117% more than the average Web Developer Salary in India
View more details

Siemens Web Developer Reviews and Ratings

based on 6 reviews

4.8/5

Rating in categories

4.1

Skill development

4.8

Work-life balance

4.1

Salary

4.2

Job security

4.9

Company culture

4.8

Promotions

4.0

Work satisfaction

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