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 Business Development Interview Questions and Answers

Updated 30 Jun 2017

Siemens Business Development Interview Experiences

1 interview found

I appeared for an interview before Jun 2016.

Interview Preparation Tips

Round: Test
Experience: The test was easy what they really wanted to check is that if i really have the ability to pursue cold leads and cold calls
Duration: 1 hour
Total Questions: 30

Interview questions from similar companies

I appeared for an interview in Aug 2017.

Interview Questionnaire 

4 Questions

  • Q1. Difference between c and java?
  • Ans. 

    C is a procedural programming language while Java is an object-oriented programming language.

    • C is a low-level language while Java is a high-level language.

    • C requires manual memory management while Java has automatic memory management.

    • C is platform-dependent while Java is platform-independent.

    • C supports pointers while Java does not.

    • C has a simpler syntax compared to Java.

  • Answered by AI
  • Q2. Difference between final, finally and finalize
  • Ans. 

    final, finally, and finalize are keywords in Java with different meanings.

    • final is a keyword used to declare a constant value, a variable that cannot be modified.

    • finally is a block used in exception handling to ensure a piece of code is always executed, whether an exception is thrown or not.

    • finalize is a method in the Object class that is called by the garbage collector before an object is destroyed.

    • final and finally a...

  • Answered by AI
  • Q3. About yourself
  • Q4. Why Johnson
  • Ans. 

    Johnson is a reputable company known for its innovative software solutions and collaborative work environment.

    • Johnson has a strong reputation in the industry for delivering high-quality software solutions.

    • The company values collaboration and teamwork, which aligns with my own work style.

    • I admire Johnson's commitment to innovation and staying ahead of technological advancements.

  • Answered by AI

Interview Preparation Tips

Round: Apptitude Test
Experience: Questions was unpredictable as it was from reasoning,verbal , and from general knowledge also.Technical questions was also there.
Tips: Technical question was not that hard. Just have good basic knowledge of programming and DBMS

Round: Technical Interview
Experience: It was from basic concepts only.

Round: HR Interview
Experience: There were 12 HRs to take my interview but asked mainly from CV only.

Tips: Be calm and confident and learn the basic of subjects

College Name: BPPIMT

Skills evaluated in this interview

I applied via Campus Placement and was interviewed before May 2020. There were 3 interview rounds.

Interview Questionnaire 

2 Questions

  • Q1. Design fan.What is bm? What is nozzle?
  • Ans. 

    BM stands for Blade Material. Nozzle is a device that directs or controls the flow of a fluid.

    • BM refers to the material used to make the blades of a fan. It can be plastic, metal, or wood.

    • Nozzle is a component that is used to control the flow of a fluid, such as air or water. It can be found in various devices, such as a garden hose or a spray bottle.

    • In a fan, the nozzle is the part that directs the air flow in a speci...

  • Answered by AI
  • Q2. Design blower for industry
  • Ans. 

    Designing a blower for industrial use requires consideration of factors such as air flow rate, pressure, power consumption, and noise level.

    • Determine the required air flow rate and pressure for the specific application

    • Select an appropriate blower type (centrifugal, axial, etc.) based on the requirements

    • Calculate the power consumption and efficiency of the blower

    • Consider noise level and implement noise reduction measure...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Stay calm and confident

I applied via Recruitment Consultant and was interviewed in Apr 2021. There were 8 interview rounds.

Interview Questionnaire 

1 Question

  • Q1. A lot of technical questions on WPF and C#.Net

Interview Preparation Tips

Interview preparation tips for other job seekers - To get a good package clear the interview with at least answering 85 - 90% of the questions. The package range is good, but it'll depend totally on your interview performance.

Interview Questionnaire 

1 Question

  • Q1. Prepare python data structures and python basics
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 Questionnaire 

2 Questions

  • Q1. C programming
  • Q2. Prepare basics thoroughly

Interview Preparation Tips

Interview preparation tips for other job seekers - Better be prepared with basic knowledge

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

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

Siemens Interview FAQs

How to prepare for Siemens Business Development 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 Automation, Siemens, Sales, Instrumentation and Techno - commercial.

Tell us how to improve this page.

Join Siemens #TransformTheEverydayWithUs

Interview Questions from Similar Companies

Johnson Controls Interview Questions
3.6
 • 262 Interviews
Falcon Autotech Interview Questions
3.9
 • 45 Interviews
Wipro PARI Interview Questions
3.3
 • 44 Interviews
MNC AUTOMATION Interview Questions
4.2
 • 34 Interviews
View all
Siemens Business Development Salary
based on 5 salaries
₹12 L/yr - ₹14 L/yr
79% more than the average Business Development Salary in India
View more details
Senior Software Engineer
1.6k salaries
unlock blur

₹9.5 L/yr - ₹34.5 L/yr

Software Developer
1.6k salaries
unlock blur

₹4.9 L/yr - ₹23 L/yr

Software Engineer
1.5k salaries
unlock blur

₹6 L/yr - ₹23.5 L/yr

Manager
601 salaries
unlock blur

₹9 L/yr - ₹32 L/yr

Senior Process Associate
462 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

Honeywell Automation

3.8
Compare

Rockwell Automation

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