Upload Button Icon Add office photos

Siemens PLM Software

Compare button icon Compare button icon Compare

Filter interviews by

Clear (1)

Siemens PLM Software Design Engineer Interview Questions and Answers

Updated 8 Nov 2022

Siemens PLM Software Design Engineer Interview Experiences

1 interview found

I applied via LinkedIn and was interviewed in Oct 2022. There were 2 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 - One-on-one 

(2 Questions)

  • Q1. The interview went on with the basics of mechanical design and project stuff. They focused more on cad
  • Q2. What are the different pros and cons of isometric view and parametric view?
  • Ans. 

    Isometric view and parametric view have different advantages and disadvantages.

    • Isometric view provides a 3D representation of an object, making it easier to visualize and understand.

    • Parametric view allows for easy modification of dimensions and parameters, saving time and effort.

    • Isometric view can be misleading in terms of proportions and distances.

    • Parametric view can be complex and difficult to set up initially.

    • Isomet...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Please be strong in basics of enginnering drawing and engineering design subjects.

Skills evaluated in this interview

Interview questions from similar companies

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

I applied via Campus Placement and was interviewed in Jul 2024. There were 2 interview rounds.

Round 1 - Aptitude Test 

Asked Basic Aptitude Questions

Round 2 - Technical 

(5 Questions)

  • Q1. Nmos Cross Section drawing
  • Q2. Asic design flow
  • Q3. Asic vs fpga difference
  • Ans. 

    ASICs are custom-designed for specific applications, while FPGAs are reprogrammable and more flexible.

    • ASICs are Application-Specific Integrated Circuits designed for a specific purpose or application.

    • FPGAs are Field-Programmable Gate Arrays that can be reconfigured for different tasks.

    • ASICs are more efficient and faster than FPGAs for specific tasks.

    • FPGAs are more flexible and can be reprogrammed for different function...

  • Answered by AI
  • Q4. Static Timing Analysis
  • Q5. Projects related (verilog)

Interview Preparation Tips

Interview preparation tips for other job seekers - Focus on fundamentals

Skills evaluated in this interview

Interview experience
2
Poor
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
Not Selected

I was interviewed in Nov 2023.

Round 1 - Coding Test 

F2F coding test which was pretty simple based on basic c++ concepts and few logical questions.

Round 2 - Technical 

(1 Question)

  • Q1. Project and design level with mid level difficulty.
Round 3 - Culture fit 

(2 Questions)

  • Q1. Oops.here the magic happened. Prior to each stage HR was giving clue about the next round and the rounds were more or less same. But in this round,no was expecting managerial question and was not prepared ...
  • Q2. Array multiple logical questions, design pattern writing, other class relates coding..

Interview Questionnaire 

4 Questions

  • Q1. Programming
  • Q2. Technical on your domain
  • Q3. Manager technical on your domain
  • Q4. HR
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
No response

I applied via Referral and was interviewed in Sep 2024. There were 3 interview rounds.

Round 1 - Coding Test 

Three DSA questions one on likedlist one on BST and one on maps

Round 2 - Technical 

(2 Questions)

  • Q1. Cpp pointers explain smart pointers
  • Ans. 

    Smart pointers in C++ provide automatic memory management and help prevent memory leaks.

    • Smart pointers are objects that manage the memory of a pointer automatically.

    • They ensure that memory is deallocated when it is no longer needed.

    • Examples include unique_ptr, shared_ptr, and weak_ptr.

  • Answered by AI
  • Q2. Cpp question based on OOPs concepts
Round 3 - Coding Test 

DSA questions on graph and lots of puzzles

Interview Preparation Tips

Topics to prepare for Ansys Software Private Limited Senior Engineer interview:
  • C++
  • DSA
  • OOPS
  • Puzzles
Interview preparation tips for other job seekers - Overall good experience, but the HR hasn't replied yet.

Skills evaluated in this interview

I was interviewed before Jun 2016.

Interview Preparation Tips

Round: Test
Experience: Preference to CFD and Fluid Mechanic courses. Simulation profile(basic programming), asked pseudo code related to simple Fluid Mechanics problems. Subjective test based on HMT, Fluid Mechanic, MOS, CFD, mostly formula based for technical profile. Both tests were 45 minutes long, and applicants had an option of giving either one or both the tests.

Duration: 45 minutes

Round: Technical Interview
Experience: Related to written test. Detail about project and intern as related to work in CFD, HMT. Stressed on the question of whether higher education or job and why? Stressing on practical knowledge however asked about favourite topic and asked indepth questions in it.

Round: HR Interview
Experience: 40-50 minutes, taken only of people already selected. Family background, educational background, current events .Location:- offshore location also possible in future based on performance. Higher Education:- Company sponsors masters and doctorates but only for projects linked to company profile .
Tips: Company looking for good technical people, not HR skills; however package is a little less. Choose this profile to apply for as not a lot of people were applying for it.

College Name: IIT Kanpur

Interview Questionnaire 

11 Questions

  • Q1. Difference between single and doubly linked list?Why do we prefer doubly over single linked list?
  • Ans. 

    Single linked list has one pointer while doubly linked list has two. Doubly linked list is preferred for easier traversal in both directions.

    • Single linked list has only one pointer which points to the next node while doubly linked list has two pointers which point to the next and previous nodes.

    • Doubly linked list allows for easier traversal in both directions, while single linked list only allows for traversal in one d...

  • Answered by AI
  • Q2. What is the purpose of cloud other than storage?The answer is processing
  • Q3. Difference between LINUX/UNIX and WINDOWS
  • Ans. 

    LINUX/UNIX are open-source, command-line based OS while WINDOWS is a proprietary, GUI-based OS.

    • LINUX/UNIX have a steep learning curve due to command-line interface

    • WINDOWS is more user-friendly with a graphical user interface (GUI)

    • LINUX/UNIX are more stable and secure than WINDOWS

    • LINUX/UNIX are free and open-source while WINDOWS is proprietary and requires a license

    • LINUX/UNIX are preferred for servers and development wh...

  • Answered by AI
  • Q4. Program for sorting an array
  • Ans. 

    Program to sort an array of strings

    • Use a sorting algorithm like bubble sort, insertion sort, or quicksort

    • Compare adjacent elements and swap if necessary

    • Repeat until the array is sorted

  • Answered by AI
  • Q5. Time complexity of different types of sorting technique?Which one is most efficient one?
  • Ans. 

    Sorting techniques and their time complexity

    • Bubble sort - O(n^2)

    • Selection sort - O(n^2)

    • Insertion sort - O(n^2)

    • Merge sort - O(n log n)

    • Quick sort - O(n log n)

    • Heap sort - O(n log n)

    • Radix sort - O(nk)

    • Most efficient: Quick sort or Merge sort

    • Efficiency depends on the size of the array and the data distribution

  • Answered by AI
  • Q6. What do you mean by big data?
  • Ans. 

    Big data refers to large and complex data sets that cannot be processed using traditional data processing methods.

    • Big data is characterized by the 3Vs - volume, velocity, and variety.

    • It requires specialized tools and techniques for processing and analysis.

    • Examples of big data include social media data, sensor data, and financial market data.

  • Answered by AI
  • Q7. Advantage of ASP.net over JAVA
  • Ans. 

    ASP.net is better for enterprise-level applications due to its integration with Windows and Microsoft technologies.

    • ASP.net has better integration with Windows and Microsoft technologies

    • ASP.net has better performance and scalability for enterprise-level applications

    • ASP.net has a larger developer community and more resources available

    • Java is better for cross-platform development and open-source projects

  • Answered by AI
  • Q8. Tell me about yourself?
  • Ans. 

    I am a software engineer with experience in developing web applications and a passion for problem-solving.

    • Experienced in developing web applications using technologies such as HTML, CSS, JavaScript, and React

    • Proficient in programming languages such as Java and Python

    • Strong problem-solving skills and ability to work in a team environment

    • Passionate about learning new technologies and staying up-to-date with industry tren

  • Answered by AI
  • Q9. Why do you want to join our company?
  • Ans. 

    I am impressed with the company's innovative approach and would love to be a part of the team.

    • I have researched the company and am impressed with its achievements

    • I am excited about the company's focus on innovation and cutting-edge technology

    • I believe that the company's values align with my own and I would be proud to work here

  • Answered by AI
  • Q10. Any question regarding the company?
  • Ans. 

    Yes, can you tell me about the company culture?

    • Our company values collaboration and innovation

    • We prioritize work-life balance for our employees

    • We have a diverse and inclusive workplace culture

  • Answered by AI
  • Q11. Do you have any questions for me?

Interview Preparation Tips

Round: Test
Experience: In the analytical section questions were mostly asked from percentage,speed distance and time,match the pattern,boats and streams and There were many number of questions like If '+' stands for '*', '-' stands for '/' , '*' stands for '-' and '/' stands for '+' then what is the value of 7*45-9/4+2?

In the Logical section questions were asked from topics like blood relation, venn diagram,direction sense .

In the Verbal section we were asked to fill the sentences with proper preposition,few synonyms and antonyms.

In the computer fundamental section the questions were related to the versions of the operating system,few programming fundamentals.There were also few basic questions from electrical subjects like symbol of capacitor,resistor,transformer etc.
Tips: The paper was very easy and only basic questions were asked but you need to score good. The cutoff was 30 out of 60 but it may vary.R S Agarwal text book for quantitative apitude and verbal non verbal reasoning is enough.
Duration: 65 minutes
Total Questions: 60

Round: Group Discussion
Experience: They gave some time like 1 min to recollect the points and then start.Start the discussion only if u know the topic well otherwise listen to others and try to add few additional points to support there statements.Examples are best thing to support your statement.Never Add new points while concluding at last.
Tips: Stay updated to the most frequently asked topics in GD before attending one.This will make you more confident during the GD.
Duration: 10 minutes

Round: Technical Interview
Experience: The questions were asked from the subjects, I have mentioned in my resume.Explaining with a diagram is always a good thing.
Tips: Prepare the subjects well which you have mentioned in your resume.Only the basic questions are asked.Prepare The mini project or summer internship project well.

Round: HR Interview
Experience: The interviewer was really good and friendly.I Heard about the company in the Pre placement talk and found it the best company to work for and moreover its a product based company i always desired to work with. Out of around 300 students who wrote the test 200 were select for GD then 45 students were selected for the interview and finally 10 got selected in the company.
Tips: Be confident and honest in whatever you speak out about yourself.Research well about the company by going through the website.

General Tips: Be confident and prepare well.If you are not aware about the topic asked don't beat around the bush answer straight to the point.
Skill Tips: Prepare your resume well.
Skills: Knowledge Of Your Resume Points, Ability To Express Your Ideas, How Much You Are Interested In The Company?, Core Courses Concepts, Clarity Of Concepts, Technical Skill And Speaking Skill, Verbal Communication Skills, Good Knowledge Of Basics
College Name: GITAM University, Visakhapatnam
Motivation: The company is different form other software companies which are product based.
" -----/" I went through this website and got the detailed info about the company which made my desire to work for the company grow more stronger.
Funny Moments: Interviews unfortunately are never funny :( but yes my face certainly looked funny coz it turned into a red hot tomato :D

Skills evaluated in this interview

Software Developer Interview Questions & Answers

PTC user image Snehal Jaipurker

posted on 18 Sep 2017

I was interviewed in Jul 2017.

Interview Questionnaire 

6 Questions

  • Q1. Code to print * in five consecutive lines
  • Ans. 

    Code to print * in five consecutive lines

    • Use a loop to iterate five times

    • Inside the loop, print a string containing a single * character

  • Answered by AI
  • Q2. A ball is left from a height of 10 meters. After bouncing first time it looses 10% of its previous height the next time it bounces. Write a code to calculate the number of bounces the ball goes through unt...
  • Ans. 

    Code to calculate number of bounces a ball goes through until it comes to rest.

    • Use a loop to simulate the bounces until the ball stops bouncing

    • Calculate the height of each bounce using the given formula

    • Keep track of the number of bounces in a counter variable

  • Answered by AI
  • Q3. Which is the best and less time consuming way to calculate factorial of a number?
  • Ans. 

    The best and less time consuming way to calculate factorial of a number is using iterative approach.

    • Iteratively multiply the number with all the numbers from 1 to the given number

    • Start with a result variable initialized to 1

    • Multiply the result with each number in the range

    • Return the final result

  • Answered by AI
  • Q4. Write the code to find factorial using function recursion.
  • Ans. 

    Code to find factorial using function recursion

    • Define a function that takes an integer as input

    • Check if the input is 0 or 1, return 1 in that case

    • Otherwise, call the function recursively with input-1 and multiply it with the input

  • Answered by AI
  • Q5. They asked for my introduction.
  • Q6. They asked about my family members.

Interview Preparation Tips

Round: Test
Experience: Aptitude test was moderately tough. The coding test was on basics of c language of all the topics.
Tips: Solving R. S. Agrawal for Aptitude and videos on YouTube on C language are sufficient to score well.
Duration: 1 hour
Total Questions: 60

Round: Technical Interview
Experience: I wrote the first code correctly. I wrote the second code 75% correct and they explained me my mistakes and I could understand where I was going wrong then I corrected my code and then they were satisfied. They asked me whether I could write the factorial code by function recursion method. I replied that I can write the factorial code but not by function recursion method. They were satisfied.
Tips: Build your coding skills by more practice.

Round: HR Interview
Experience: In this round they just asked me my introduction and said that you are shortlisted for now but we will give you final confirmation after a week.
Tips: Don't lie. Be genuine.

College Name: SCOE, PUNE

Skills evaluated in this interview

Interview Questionnaire 

6 Questions

  • Q1. Tell something about yourself
  • Ans. 

    I am a software engineer with 5 years of experience in developing web applications using Java and JavaScript.

    • I have a Bachelor's degree in Computer Science.

    • I am proficient in Spring Framework and AngularJS.

    • I have worked on projects involving RESTful APIs and microservices architecture.

    • I am a quick learner and enjoy working in a team environment.

  • Answered by AI
  • Q2. Why do you want to join this company?
  • Ans. 

    I am impressed with the company's innovative approach and commitment to excellence.

    • I have researched the company and its products extensively and am excited about the potential for growth and development.

    • I am impressed with the company's reputation for innovation and cutting-edge technology.

    • I believe that the company's commitment to excellence aligns with my own values and goals.

    • I am excited about the opportunity to wo...

  • Answered by AI
  • Q3. What are your future plans?
  • Ans. 

    My future plans include continuous learning, honing my skills, and contributing to the growth of the company.

    • I plan to attend relevant conferences and workshops to stay updated with the latest technologies.

    • I want to work on challenging projects that will help me improve my skills.

    • I aim to become a valuable asset to the company by contributing to its growth and success.

    • I plan to mentor and guide junior developers to hel

  • Answered by AI
  • Q4. Mathematics
  • Q5. Programming
  • Q6. Logic

Interview Preparation Tips

Round: Test
Experience: It was a bit lengthy and I wasn't able to solve all the questions, but the rest was accurately completed by me.
Tips: One needs to know basic programming and logic. The rest is doable. Pay attention to time and the accuracy of your answers.
Duration: 120 minutes
Total Questions: 50

Round: Group Discussion
Experience: A few points were given to us and we had to proceed from there. I gave new ideas as well as new points of view on the already presented ideas. I also encouraged others to participate.
Tips: Don't be too quiet/passive or too loud/active. Let others also talk and don't talk about the same points again & again.
Duration: 15 minutes

Round: HR Interview
Experience: It was a good interview. I felt at ease and myself while talking about me. The CTO of the company was conducting it.
Tips: See the direction in which the interview is going and frame your answers accordingly. Tell them what they want to hear, but don't lie.

Round: Technical Interview
Experience: It was a telephonic interview, and the HR team present there was guiding me through it. The questions were easy.
Tips: Be confident while answering the questions. Don't think too much on it, and answer appropriately. Be clear and concise.

General Tips: As I said earlier as well, be yourself and be confident.
Skill Tips: Be adequately prepared on what you prepare for; know the ins and outs of the company you are sitting in for; be confident and clear on what you speak.
Skills: Programming, Logic Building, Common Aptitude, Personality
College Name: IIT Bombay
Motivation: I wanted to do programming which was also in the engineering domain. Hence Altair came as the perfect fit for me.
Funny Moments: I was not able to listen properly to the telephonic interview, but the CTO was impressed with me in the HR interview so he happily guided me through. I also found out that one of the seniors interviewing me was from the same place as that of mine, so we had a small discussion there as well. I felt at ease hence.

Interview Preparation Tips

Round: Resume Shortlist
Experience: My experience with IITB racing for more than 2 years helped me with this process. Additionally, my work as an electronic differential engineer which required development of a detailed vehicle model was more closer to the

College Name: IIT BOMBAY
Contribute & help others!
anonymous
You can choose to be anonymous

Siemens PLM Software Interview FAQs

How many rounds are there in Siemens PLM Software Design Engineer interview?
Siemens PLM Software interview process usually has 2 rounds. The most common rounds in the Siemens PLM Software interview process are Resume Shortlist and One-on-one Round.
What are the top questions asked in Siemens PLM Software Design Engineer interview?

Some of the top questions asked at the Siemens PLM Software Design Engineer interview -

  1. What are the different pros and cons of isometric view and parametric vi...read more
  2. The interview went on with the basics of mechanical design and project stuff. T...read more

Recently Viewed

SALARIES

Altair Engineering

JOBS

BP Incorporate International

No Jobs

SALARIES

Siemens PLM Software

INTERVIEWS

DEEJOS Architects & Constructions

No Interviews

INTERVIEWS

Thriveni Earthmovers

No Interviews

INTERVIEWS

Thriveni Earthmovers

No Interviews

SALARIES

Siemens PLM Software

SALARIES

Egis India Consulting Engineers

INTERVIEWS

Thriveni Earthmovers

40 top interview questions

INTERVIEWS

Siemens PLM Software

5.6k top interview questions

Tell us how to improve this page.

Siemens PLM Software Design Engineer Reviews and Ratings

based on 1 review

5.0/5

Rating in categories

-

Skill development

-

Work-life balance

-

Salary

-

Job security

-

Company culture

-

Promotions

-

Work satisfaction

Explore 1 Review and Rating
Software Engineer
236 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Advanced Software Engineer
99 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Senior Software Engineer
79 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Software Developer
64 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Associate Software Engineer
48 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Explore more salaries
Compare Siemens PLM Software with

Dassault Systemes

4.0
Compare

Autodesk

4.2
Compare

PTC

4.2
Compare

Bentley Systems

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