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

Compare button icon Compare button icon Compare

Filter interviews by

Siemens Web Developer Interview Questions, Process, and Tips

Updated 9 Jun 2021

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

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.

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

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

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

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

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.5
 • 263 Interviews
Falcon Autotech Interview Questions
3.9
 • 46 Interviews
Wipro PARI Interview Questions
3.3
 • 44 Interviews
MNC AUTOMATION Interview Questions
4.2
 • 35 Interviews
View all
Siemens Web Developer Salary
based on 4 salaries
₹4 L/yr - ₹16 L/yr
123% more than the average Web Developer Salary in India
View more details

Siemens Web Developer Reviews and Ratings

based on 5 reviews

4.8/5

Rating in categories

4.0

Skill development

4.8

Work-life balance

4.0

Salary

4.2

Job security

4.9

Company culture

4.8

Promotions

4.0

Work satisfaction

Explore 5 Reviews and Ratings
Senior Software Engineer
1.6k salaries
unlock blur

₹9.4 L/yr - ₹34.5 L/yr

Software Developer
1.6k salaries
unlock blur

₹5.2 L/yr - ₹22.5 L/yr

Software Engineer
1.5k salaries
unlock blur

₹6 L/yr - ₹25 L/yr

Manager
605 salaries
unlock blur

₹8 L/yr - ₹33 L/yr

Senior Process Associate
464 salaries
unlock blur

₹2.2 L/yr - ₹7.2 L/yr

Explore more salaries
Compare Siemens with

Schneider Electric

4.1
Compare

Siemens Energy

4.1
Compare

Johnson Controls

3.5
Compare

Honeywell Automation

3.8
Compare
Did you find this page helpful?
Yes No
write
Share an Interview