Upload Button Icon Add office photos

Filter interviews by

Siemens Building Technologies Software Developer Interview Questions and Answers

Updated 26 May 2023

Siemens Building Technologies Software Developer Interview Experiences

2 interviews found

Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Referral and was interviewed before May 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 - Coding Test 

Not available to enter here today twice

Round 3 - Technical 

(3 Questions)

  • Q1. Not available to add the data
  • Q2. Not available to add
  • Q3. Not available to again add

Interview Preparation Tips

Interview preparation tips for other job seekers - not available to enter here today again

I applied via campus placement at Madras Institute of Technology, Chennai and was interviewed before Oct 2021. There were 4 interview rounds.

Round 1 - Aptitude Test 

Test timed for each question (General Aptitude, MCQ's)

Round 2 - Aptitude Test 

Test timed for every question (Non-verbal/charts/MCQ's)

Round 3 - Coding Test 

MCQ's based on C/C++ concepts.

Round 4 - Technical 

(2 Questions)

  • Q1. Resume & projects. OOPS concepts. Write a program to connect to a database and list all the tables present in it. Reverse a string without using any inbuilt string functions in C. STL, Hash table in C+...
  • Q2. Write a program to print a right-angled triangle of stars. Difference between abstract class & interface.
  • Ans. 

    Program to print a right-angled triangle of stars & difference between abstract class & interface.

    • Use nested loops to print the triangle of stars

    • The outer loop controls the number of rows and the inner loop controls the number of stars in each row

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

    • A class can implement multiple interfaces but can only inherit fro

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Have thorough knowledge on OOPS concepts, standard programs and area (technology, project) of work experience.

Software Developer Interview Questions Asked at Other Companies

asked in Amazon
Q1. Maximum Subarray Sum Problem Statement Given an array of integers ... read more
asked in Amazon
Q2. Minimum Number of Platforms Needed Problem Statement You are give ... read more
asked in Rakuten
Q3. Merge Two Sorted Arrays Problem Statement Given two sorted intege ... read more
asked in Nagarro
Q4. Crazy Numbers Pattern Challenge Ninja enjoys arranging numbers in ... read more
asked in PhonePe
Q5. Form a Triangle Problem Statement You are given an array of integ ... read more

Interview questions from similar companies

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
  • 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.
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
No response

I applied via LinkedIn and was interviewed in Nov 2024. There was 1 interview round.

Round 1 - Coding Test 

Medium to hard dsa problem

Interview Preparation Tips

Interview preparation tips for other job seekers - do leetcode medium problem
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
5
Excellent
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
Selected Selected

I applied via campus placement at Ramaiah Institute of Technology, Bengaluru and was interviewed in Apr 2024. There were 2 interview rounds.

Round 1 - Aptitude Test 

30 min 30 ques and gaming ques

Round 2 - Technical 

(2 Questions)

  • Q1. What is ML and AI in your project?
  • Ans. 

    ML and AI are used in our project to analyze user behavior and provide personalized recommendations.

    • ML algorithms are used to analyze user data and predict user preferences.

    • AI is used to provide personalized recommendations based on the analysis of user behavior.

    • Examples include recommendation systems for e-commerce websites and personalized content suggestions on streaming platforms.

  • Answered by AI
  • Q2. What is lagging concept and more?
  • Ans. 

    Lagging concept refers to a concept or idea that is behind or not up to date compared to current standards or practices.

    • Refers to outdated technology or methods in software development

    • Can lead to inefficiencies, bugs, or security vulnerabilities

    • Examples include using deprecated libraries or not following best practices for coding

  • Answered by AI

Interview Preparation Tips

Topics to prepare for Schneider Electric Software Developer interview:
  • HTML
Interview preparation tips for other job seekers - you can acheive if u want to . Just keep trying

Skills evaluated in this interview

Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I was interviewed in Feb 2024.

Round 1 - Technical 

(1 Question)

  • Q1. Swift interview questions
Interview experience
4
Good
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
-

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

Round 1 - Technical 

(2 Questions)

  • Q1. 1. Basic OOP Concepts 2. Difference between structure and class in terms of constructor 3. Can members of structure be defined as private 4. What's lambda function and it's real life use case 5. Difference...
  • Q2. 6. What's O(n) in time and space complexity
  • Ans. 

    O(n) refers to linear time and space complexity.

    • O(n) means that the time or space required by an algorithm grows linearly with the size of the input.

    • It implies that the algorithm's performance is directly proportional to the input size.

    • For example, if an algorithm takes 10 seconds to process 100 elements, it would take 20 seconds to process 200 elements.

    • O(n) complexity is considered efficient and desirable in most case

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Keep your basic clear and talk as much as possible

Skills evaluated in this interview

Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Company Website and was interviewed in Dec 2022. There were 4 interview rounds.

Round 1 - Aptitude Test 

Normal questions , maths, English, reasoning

Round 2 - Coding Test 

Do easy medium problem solving

Round 3 - Technical 

(1 Question)

  • Q1. Questions on dp, recursion, dbms
Round 4 - HR 

(1 Question)

  • Q1. Salary discussions, relocation, other
Interview experience
3
Average
Difficulty level
Moderate
Process Duration
4-6 weeks
Result
Selected Selected

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

Round 1 - Coding Test 

Basic coding, duration 1hr

Round 2 - Group Discussion 

General experience discussion

Siemens Building Technologies Interview FAQs

How many rounds are there in Siemens Building Technologies Software Developer interview?
Siemens Building Technologies interview process usually has 4 rounds. The most common rounds in the Siemens Building Technologies interview process are Resume Shortlist, Aptitude Test and Coding Test.
What are the top questions asked in Siemens Building Technologies Software Developer interview?

Some of the top questions asked at the Siemens Building Technologies Software Developer interview -

  1. Write a program to print a right-angled triangle of stars. Difference between ...read more
  2. Resume & projects. OOPS concepts. Write a program to connect to a database an...read more
  3. Not available to add the d...read more

Tell us how to improve this page.

Siemens Building Technologies Software Developer Interview Process

based on 1 interview

Interview experience

4
  
Good
View more
Siemens Building Technologies Software Developer Salary
based on 33 salaries
₹5.5 L/yr - ₹18.6 L/yr
33% more than the average Software Developer Salary in India
View more details

Siemens Building Technologies Software Developer Reviews and Ratings

based on 5 reviews

4.4/5

Rating in categories

4.1

Skill development

3.9

Work-life balance

4.3

Salary

4.4

Job security

4.2

Company culture

3.9

Promotions

3.9

Work satisfaction

Explore 5 Reviews and Ratings
Service Engineer
45 salaries
unlock blur

₹2.4 L/yr - ₹6 L/yr

Project Engineer
44 salaries
unlock blur

₹1.9 L/yr - ₹6 L/yr

Software Developer
33 salaries
unlock blur

₹5.5 L/yr - ₹18.6 L/yr

Senior Software Engineer
27 salaries
unlock blur

₹10 L/yr - ₹25 L/yr

Design Engineer
20 salaries
unlock blur

₹2.4 L/yr - ₹7 L/yr

Explore more salaries
Compare Siemens Building Technologies with

Johnson Controls

3.6
Compare

Honeywell Building Solutions

3.7
Compare

Schneider Electric

4.2
Compare

ABB

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