Upload Button Icon Add office photos
Engaged Employer

i

This company page is being actively managed by Ansys Software Private Limited Team. If you also belong to the team, you can get access from here

Ansys Software Private Limited Verified Tick

Compare button icon Compare button icon Compare

Filter interviews by

Clear (1)

Ansys Software Private Limited Engineering Student Interview Questions and Answers

Updated 17 Sep 2024

Ansys Software Private Limited Engineering Student Interview Experiences

1 interview found

Engineering Student Interview Questions & Answers

user image yogesh jadhav

posted on 17 Sep 2024

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

It written test. Do all the logical questions. Along with that prepared for machine drawing

Interview questions from similar companies

I was interviewed in Nov 2016.

Interview Questionnaire 

8 Questions

  • Q1. A random number will be given as input to system,write a program to detect its data type(int or float ) without using size of function
  • Q2. General hr questions
  • Q3. Once again general hr interview questions
  • Q4. 1.given a large rectangle
  • Ans. 

    Need more context. What needs to be done with the large rectangle?

    • What are the dimensions of the rectangle?

    • Is it a 2D or 3D object?

    • What is the context of the problem?

    • Are there any constraints or limitations?

    • What tools or programming languages can be used?

  • Answered by AI
  • Q5. You will be given dimensions of a bigger rectangle and smaller rectangle,derive a formula to get how many smaller rectangles fit into the bigger rectangle
  • Ans. 

    Derive a formula to determine how many smaller rectangles fit into a bigger rectangle given their dimensions.

    • Calculate the number of times the smaller rectangle can fit into the bigger rectangle horizontally and vertically

    • Divide the width of the bigger rectangle by the width of the smaller rectangle to get the horizontal count

    • Divide the height of the bigger rectangle by the height of the smaller rectangle to get the ve...

  • Answered by AI
  • Q6. How many points are required to draw a rectangle
  • Ans. 

    At least 4 points are required to draw a rectangle.

    • A rectangle has 4 sides and 4 corners, so at least 4 points are needed to define those corners.

    • The points must be arranged in a specific order to form a closed shape with 4 sides.

    • Additional points can be used to add details or modify the shape of the rectangle.

    • The number of points required may vary depending on the software or tool used to draw the rectangle.

  • Answered by AI
  • Q7. What will be the new coordinates of a rectangle points if rectangle length and breadth is scaled and write a program to calculate the coordinates of corner points of scaled rectangle
  • Ans. 

    Answering how to calculate new coordinates of a scaled rectangle and providing a program for it.

    • To calculate new coordinates, multiply the original coordinates by the scaling factor

    • Scaling factor can be calculated by dividing the new length/breadth by the original length/breadth

    • Program can take input of original coordinates, scaling factor, and output new coordinates

    • Example: Original coordinates: (0,0), (0,5), (5,5), (...

  • Answered by AI
  • Q8. Lastly a puzzle: i dont remember the question

Interview Preparation Tips

Round: Test
Experience: The test had three sections:
1.aptitude:It was like any other aptitude test,all it takes is a bit of practice to crack all the questions
2.C programming:Basics of c were asked,outputs of some programs,u have to be thorough with concepts of c
3.Electronics:The company hired for both profiles: 1. PDK:software
and 2.Logic library:hardware,so this electronics section was also there,questions are mostly Network analysis,cmos logic,digital logic,vlsi etc
u should have good basics to get the electronics questions of course they are not very hard,but not too easy


Tips: practice aptitude,basics of c programming and also basics of electronics
Duration: 1 hour 30 minutes
Total Questions: 60

Round: Test
Experience: after 1st round i was shortlisted to this technical round,i was asked this question, i suggested that i will convert that number into a string and check whether string has a dot or not to check if it is float or int,the interviewer was not very impressed but was ok and asked few small questions and promoted me to next round

Tips: If u crack test with top marks,the technical rounds will be very easy,because the interviewers do not ask tough questions for people who cracked written test with high marks

Round: Technical Interview
Experience: tell me about yourself,strengths,weakness,three principles u follow in life,etc
Tips: This round depends on you,dont try to bluff something,they will know if u are bluffing,take a breath and speak up ur mind,be confident u can do it

Round: HR Interview
Experience: same questions,but this time less duration,not involving lengthy discussions, i think this round was just for double check

Round: HR Interview
Experience: After the hr round,only seven were shortlist,this interview round was very much easy and they checked my approach to the given problem,they were checking how well i am thinking adding complexities to the given problem
Tips: they did not check my programming ability,but just problem solving skills,so be good at aptitude,by practicing as much as you can

Round: Group Discussion
Experience: after technical interview,4 were shortlisted,so they went for gd round,it was general topic,which checks your general knowledge
Tips: Dont be nervous,just speak what ever you know,never mind language issues
Duration: 20 minutes

Skills: for pdk profile :programming
College Name: NIT Warangal
Interview experience
3
Average
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
Not Selected

I applied via Company Website and was interviewed before Aug 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 Resume tips
Round 2 - HR 

(2 Questions)

  • Q1. Describe a time when y ou had to learn a new kill to complete a project
  • Q2. Tell me about your resume
Round 3 - Coding Test 

Reverse a given string using for loop

Interview Preparation Tips

Topics to prepare for Bentley Systems Software Engineer interview:
  • Data Structures
  • Algorithms
  • Coding
Interview preparation tips for other job seekers - Master Data Structures and Algorithms and be prepared to talk your experience written in your resume
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Campus Placement and was interviewed in Apr 2023. There were 4 interview rounds.

Round 1 - Coding Test 

Moderate level questions

Round 2 - Technical 

(1 Question)

  • Q1. OOPS,DBMS,SQL queries,Web Development essentials,GitHub
Round 3 - Behavioral 

(1 Question)

  • Q1. Questions about your interests
Round 4 - HR 

(1 Question)

  • Q1. Questions like what is your dream company,will you re-locate,..etc

Interview Preparation Tips

Interview preparation tips for other job seekers - Just be clear with basics and foundation of what you have learnt..
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
No response

I applied via Company Website and was interviewed in Jan 2024. There was 1 interview round.

Round 1 - Technical 

(3 Questions)

  • Q1. What is polymorphism?
  • Ans. 

    Polymorphism is the ability of an object to take on many forms. It allows objects of different classes to be treated as the same type.

    • Polymorphism is a fundamental concept in object-oriented programming.

    • It enables code reusability and flexibility.

    • Polymorphism can be achieved through method overriding and method overloading.

    • Example: A parent class Animal can have multiple child classes like Dog, Cat, and Bird. They can ...

  • Answered by AI
  • Q2. What is static polymorphism?
  • Ans. 

    Static polymorphism refers to the ability of a programming language to select the appropriate function or method at compile-time.

    • Static polymorphism is achieved through function overloading or operator overloading.

    • It allows different functions with the same name but different parameters to be called based on the arguments provided.

    • The selection of the appropriate function is determined at compile-time, based on the sta...

  • Answered by AI
  • Q3. What is dynamic polymorphism?
  • Ans. 

    Dynamic polymorphism is the ability of an object to take on many forms based on the context it is used.

    • It allows objects of different classes to be treated as objects of a common superclass.

    • It is achieved through method overriding and virtual functions.

    • Example: A superclass 'Animal' with subclasses 'Dog' and 'Cat'. Both can be treated as 'Animal' objects.

  • Answered by AI

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 experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Resume Shortlist 
Pro Tip by AmbitionBox:
Properly align and format text in your resume. A recruiter will have to spend more time reading poorly aligned text, leading to high chances of rejection.
View all Resume tips
Round 2 - Technical 

(2 Questions)

  • Q1. Technical questions based on profile.
  • Q2. OOPS Questions, Database Questions
Round 3 - Coding Test 

Coding test based on the profile.

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

I was interviewed in Feb 2017.

Interview Questionnaire 

7 Questions

  • Q1. What is a malloc function and where is it used and how is it different from new?
  • Ans. 

    malloc is a function in C that dynamically allocates memory on the heap. It is used to allocate memory for variables or data structures.

    • malloc is used in C programming language.

    • It is used to allocate memory on the heap.

    • malloc is different from 'new' in C++ as it does not call constructors for objects.

  • Answered by AI
  • Q2. What is the difference between C++ and Objective C and where will you use it?
  • Ans. 

    C++ is a general-purpose programming language while Objective C is a superset of C used for iOS and macOS development.

    • C++ is widely used for developing applications, games, and system software.

    • Objective C is mainly used for iOS and macOS development.

    • C++ supports both procedural and object-oriented programming paradigms.

    • Objective C is an object-oriented language with dynamic runtime features.

    • C++ has a larger community a...

  • Answered by AI
  • Q3. What is the difference between class container and class composition?
  • Ans. 

    Class container is a class that holds objects of other classes, while class composition is a way to combine multiple classes to create a new class.

    • Class container holds objects of other classes, acting as a collection or container.

    • Class composition combines multiple classes to create a new class with its own behavior and attributes.

    • In class container, the objects are typically stored in a data structure like an array o...

  • Answered by AI
  • Q4. There are fifteen horses and a racing track that can run five horses at a time. You have to figure out the top 3 horses out of those and you don't have any timer machine to measure. How will you find the t...
  • Ans. 

    Divide the horses into groups of 5 and race them. Take the top 2 from each race and race them again. Finally, race the top 2 horses to determine the top 3.

    • Divide the horses into 3 groups of 5 and race them.

    • Take the top 2 horses from each race and race them again.

    • Finally, race the top 2 horses to determine the top 3.

  • Answered by AI
  • Q5. What is the most difficult problem that you have solved (during work) till now and why you think you could do so?
  • Ans. 

    Developing a real-time data processing system for a high-traffic e-commerce website

    • Implemented a distributed system architecture to handle large volumes of data

    • Optimized algorithms for efficient data processing and storage

    • Utilized caching mechanisms to improve system performance

    • Worked closely with cross-functional teams to troubleshoot and resolve issues

    • Example: Successfully reduced data processing time by 50% by imple

  • Answered by AI
  • Q6. Why you want to change your current job?
  • Ans. 

    Seeking new challenges and opportunities for growth.

    • Looking for a more challenging role to further develop my skills

    • Interested in exploring new technologies and industries

    • Seeking better career advancement opportunities

    • Want to work in a more collaborative team environment

  • Answered by AI
  • Q7. What is the width of a tree? How will you calculate the width of the tree?
  • Ans. 

    The width of a tree is the maximum number of nodes at any level in the tree.

    • To calculate the width of a tree, we can perform a level order traversal and keep track of the maximum number of nodes at any level.

    • We can use a queue data structure to perform the level order traversal.

    • At each level, we count the number of nodes in the queue and update the maximum width if necessary.

  • Answered by AI

Interview Preparation Tips

Skills: Basic C/C++, Implementing Data Structures In C++

Skills evaluated in this interview

Contribute & help others!
anonymous
You can choose to be anonymous

Ansys Software Private Limited Interview FAQs

How many rounds are there in Ansys Software Private Limited Engineering Student interview?
Ansys Software Private Limited interview process usually has 1 rounds. The most common rounds in the Ansys Software Private Limited interview process are Aptitude Test.

Recently Viewed

INTERVIEWS

Ansys Software Private Limited

No Interviews

INTERVIEWS

AIRBUS

No Interviews

INTERVIEWS

Dell EMC

No Interviews

INTERVIEWS

Ansys Software Private Limited

No Interviews

INTERVIEWS

Ansys Software Private Limited

No Interviews

DESIGNATION

SALARIES

Dell EMC

INTERVIEWS

BNP Paribas

No Interviews

INTERVIEWS

AIRBUS

No Interviews

DESIGNATION

Tell us how to improve this page.

Ansys Software Private Limited Engineering Student Interview Process

based on 1 interview

Interview experience

4
  
Good
View more

Interview Questions from Similar Companies

Siemens Interview Questions
4.1
 • 416 Interviews
Dassault Systemes Interview Questions
4.0
 • 160 Interviews
Synopsys Interview Questions
3.9
 • 88 Interviews
Apisero Interview Questions
4.3
 • 64 Interviews
PTC Interview Questions
4.2
 • 62 Interviews
TestingXperts Interview Questions
4.0
 • 40 Interviews
Credera Interview Questions
3.8
 • 40 Interviews
Autodesk Interview Questions
4.2
 • 38 Interviews
View all
R&D Engineer
52 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Applications Engineer
36 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Senior R&D Engineer
33 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Senior Application Engineer
26 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Technical Support Engineer
24 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Explore more salaries
Compare Ansys Software Private Limited with

Autodesk

4.2
Compare

Cadence Design Systems

4.1
Compare

Synopsys

3.9
Compare

Siemens

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