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

Clear (1)

Siemens Front end Developer Interview Questions, Process, and Tips

Updated 11 Mar 2022

Siemens Front end Developer Interview Experiences

1 interview found

I was interviewed 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

Front end Developer Jobs at Siemens

View all

Interview questions from similar companies

I was interviewed before Dec 2020.

Round 1 - Coding Test 

(1 Question)

Round duration - 360 minutes
Round difficulty - Medium

Basically TCS conduct its flagship event named as CODEVITA . And it offers Internship to prefinal (3rd )year students .

  • Q1. 

    Allocate Books Problem Statement

    Given an array of integers arr, where arr[i] represents the number of pages in the i-th book, and an integer m representing the number of students, allocate all the books ...

  • Ans. 

    Allocate books to students in a way that minimizes the maximum number of pages assigned to a student.

    • Iterate through possible allocations and calculate the maximum pages assigned to a student.

    • Find the minimum of these maximums to get the optimal allocation.

    • Return the minimum pages allocated in each test case, or -1 if not possible.

  • Answered by AI

Interview Preparation Tips

Eligibility criteriaMust be doing B.TECHTata Consultancy Services (TCS) interview preparation:Topics to prepare for the interview - Data Structure , Algorithms ,DBMS , OOPs ,OSTime required to prepare for the interview - 2 MonthsInterview preparation tips for other job seekers

Tip 1 : Good understanding of Data Structure and Algorithms 
Tip 2 : Be clear in your Core Subjects.
Tip 3 : Do at least 1 good Project .
Tip 4 : Be humble and speak truth .

Application resume tips for other job seekers

Tip 1 : Simple and Crisp .
Tip 2 : Do host your project and mention the link in the resume .
Tip 3 : Single Page

Final outcome of the interviewSelected

Skills evaluated in this interview

Interview experience
2
Poor
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
No response

I applied via Naukri.com and was interviewed in Jan 2024. There was 1 interview round.

Round 1 - Technical 

(3 Questions)

  • Q1. Pheduo class and element, grid and flex
  • Q2. About my previous projject
  • Q3. Responsive web design

Interview Preparation Tips

Interview preparation tips for other job seekers - prepare the basics of HTML, CSS, JS questions

Interview Questionnaire 

3 Questions

  • Q1. 1. Basic html schemantics
  • Q2. 2. Pure JS
  • Q3. 3. Angular advance

Interview Preparation Tips

Interview preparation tips for other job seekers - Hard Interview process

I applied via Recruitment Consulltant and was interviewed in Jan 2022. There were 5 interview rounds.

Round 1 - Resume Shortlist 
Pro Tip by AmbitionBox:
Keep your resume crisp and to the point. A recruiter looks at your resume for an average of 6 seconds, make sure to leave the best impression.
View all Resume tips
Round 2 - Aptitude Test 
Round 3 - Coding Test 
Round 4 - Assignment 
Round 5 - HR 

(9 Questions)

  • Q1. What are your salary expectations?
  • Q2. What is your family background?
  • Q3. Share details of your previous job.
  • Q4. Why should we hire you?
  • Q5. Why are you looking for a change?
  • Q6. Where do you see yourself in 5 years?
  • Q7. What are your strengths and weaknesses?
  • Q8. Tell me about yourself.
  • Q9. Tell me about your questions

Interview Preparation Tips

Interview preparation tips for other job seekers - Yes i can intresting in this company
Interview experience
3
Average
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via Company Website and was interviewed before Jan 2022. There were 3 interview rounds.

Round 1 - Resume Shortlist 
Pro Tip by AmbitionBox:
Don’t add your photo or details such as gender, age, and address in your resume. These details do not add any value.
View all Resume tips
Round 2 - Technical 

(3 Questions)

  • Q1. What is Event Loop ? How it works?
  • Ans. 

    Event Loop is a mechanism in JavaScript that manages the execution of code and handles asynchronous operations.

    • Event Loop continuously checks the call stack and the message queue.

    • If the call stack is empty, it takes the first message from the queue and pushes it onto the call stack.

    • If the message is a callback function, it is executed and removed from the call stack.

    • If the message is not a callback function, it is pass...

  • Answered by AI
  • Q2. Make a set of 6 boxes Responsive in CSS
  • Ans. 

    Use CSS to make a set of 6 boxes responsive

    • Use percentage or viewport units for width and height

    • Use media queries to adjust styles for different screen sizes

    • Consider using flexbox or grid for layout

    • Avoid using fixed pixel values

    • Test on different devices and browsers

    • Use CSS frameworks like Bootstrap or Foundation for easier implementation

  • Answered by AI
  • Q3. Hoisting & Closures Questions
Round 3 - HR 

(1 Question)

  • Q1. What's your Salary expectations ?

Interview Preparation Tips

Interview preparation tips for other job seekers - Dev. Aditya's YouTube videos are enough to crack these interviews

Skills evaluated in this interview

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

(1 Question)

  • Q1. All react Questions and one coding question like fetch data and display on to Ui

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare well o projects,React concepts

I applied via Naukri.com and was interviewed in Oct 2022. There were 4 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 Resume tips
Round 2 - Coding Test 

How revere the string without using reverse method

Round 3 - Coding Test 

Split duplication from the array

Round 4 - HR 

(2 Questions)

  • Q1. Salary negotiation, asked about my previous employer
  • Q2. Speak bold at time of salary negotiation

Interview Preparation Tips

Interview preparation tips for other job seekers - Well prepared, have a hand experience in your technical

I applied via Naukri.com and was interviewed in Nov 2021. There were 4 interview rounds.

Round 1 - Aptitude Test 

1hr

Round 2 - Technical 

(1 Question)

  • Q1. About the ReactJS, Javascrirp,HTML5,CSS3 Questions
Round 3 - Coding Test 
Round 4 - HR 

(1 Question)

  • Q1. Salary Discussion only

Interview Preparation Tips

Interview preparation tips for other job seekers - Be prepare well for yourself be strong and stick on your words in interview.
Interview experience
3
Average
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Naukri.com and was interviewed in Apr 2024. There were 2 interview rounds.

Round 1 - Technical 

(2 Questions)

  • Q1. Angular lifecycle hooks
  • Q2. JS interview questions
Round 2 - Coding Test 

Recurrsion tree implementation with angular

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare your basics well
Contribute & help others!
anonymous
You can choose to be anonymous

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, Siemens, Javascript and Agile.

Recently Viewed

PHOTOS

InsuranceDekho

3 office photos

LIST OF COMPANIES

Credit Bajaar

Overview

INTERVIEWS

Siemens

No Interviews

INTERVIEWS

Firstsource Solutions

No Interviews

INTERVIEWS

Firstsource Solutions

No Interviews

SALARIES

Firstsource Solutions

INTERVIEWS

Firstsource Solutions

No Interviews

INTERVIEWS

Firstsource Solutions

No Interviews

INTERVIEWS

Firstsource Solutions

No Interviews

INTERVIEWS

Citicorp

200 top interview questions

Tell us how to improve this page.

Join Siemens #TransformTheEverydayWithUS
Siemens Front end Developer Salary
based on 26 salaries
₹5.5 L/yr - ₹17.7 L/yr
99% 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.6

Skill development

5.0

Work-life balance

4.0

Salary

4.4

Job security

5.0

Company culture

3.3

Promotions

4.6

Work satisfaction

Explore 2 Reviews and Ratings
Junior Front-end Developer

Bangalore / Bengaluru

2-5 Yrs

₹ 3.6-23.3 LPA

Explore more jobs
Senior Software Engineer
1.6k salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Software Developer
1.6k salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Software Engineer
1.5k salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Manager
604 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Senior Executive
481 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Explore more salaries
Compare Siemens with

Schneider Electric

4.1
Compare

Siemens Energy

4.1
Compare

ABB

4.1
Compare

BHEL

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