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 Software Developer Interview Questions, Process, and Tips

Updated 28 Jun 2024

Top Ansys Software Private Limited Software Developer Interview Questions and Answers

  • Q1. 0/1 Knapsack Problem Statement A thief is planning to rob a store and can carry a maximum weight of 'W' in his knapsack. The store contains 'N' items where the ith item ...read more
  • Q2. Binary Tree Right View Problem Statement Given a binary tree of integers, your task is to print the right view of it. The right view represents a set of nodes visible wh ...read more
  • Q3. Maximum Path Sum Problem Statement You are given an n-ary tree consisting of 'N' nodes. Your task is to determine the maximum sum of the path from the root to any leaf n ...read more
View all 6 questions

Ansys Software Private Limited Software Developer Interview Experiences

2 interviews found

Software Developer Interview Questions & Answers

user image Shubhodeep Bhattacharya

posted on 28 Jun 2024

Interview experience
5
Excellent
Difficulty level
-
Process Duration
Less than 2 weeks
Result
No response

I applied via Job Portal and was interviewed before Jun 2023. There was 1 interview round.

Round 1 - One-on-one 

(1 Question)

  • Q1. Write down the recursion tree for this code:
  • Ans. 

    Recursion tree for a given code

    • Identify the base case of the recursion

    • Draw a tree structure with each recursive call as a node

    • Label each node with the input parameters and return values

  • Answered by AI

Skills evaluated in this interview

I was interviewed before May 2021.

Round 1 - Coding Test 

(2 Questions)

Round duration - 90 minutes
Round difficulty - Easy

Timing - 10AM-11:30AM
Online proctored test

  • Q1. 

    Binary Tree Right View Problem Statement

    Given a binary tree of integers, your task is to print the right view of it. The right view represents a set of nodes visible when the tree is viewed from the righ...

  • Ans. 

    The task is to print the right view of a binary tree, representing nodes visible from the right side in top-to-bottom order.

    • Traverse the tree level by level and keep track of the rightmost node at each level

    • Print the rightmost node of each level to get the right view of the tree

    • Use a queue for level order traversal and a map to store the rightmost nodes

  • Answered by AI
  • Q2. 

    0/1 Knapsack Problem Statement

    A thief is planning to rob a store and can carry a maximum weight of 'W' in his knapsack. The store contains 'N' items where the ith item has a weight of 'wi' and a value of...

  • Ans. 

    Yes, the 0/1 Knapsack problem can be solved using dynamic programming with a space complexity of not more than O(W).

    • Use a 1D array to store the maximum value that can be stolen for each weight from 0 to W.

    • Iterate through each item and update the array based on whether including the item would increase the total value.

    • The final value in the array at index W will be the maximum value that can be stolen.

  • Answered by AI
Round 2 - Video Call 

(2 Questions)

Round duration - 45 minutes
Round difficulty - Medium

Timing : 4PM-5PM
Environment - Online

There was a panel of 3 interviewers

  • Q1. How can you find the size of an array in C or C++ without using sizeof or any standard function?
  • Ans. 

    You can find the size of an array in C or C++ by dividing the total size of the array by the size of one element.

    • Calculate the total size of the array by multiplying the number of elements by the size of each element.

    • Divide the total size by the size of one element to get the size of the array.

    • For example, if you have an array of strings arr[] = {'hello', 'world', 'example'}, you can find the size by dividing the total

  • Answered by AI
  • Q2. Explain how indexing in a database works using B+ trees.
  • Ans. 

    B+ trees are used for indexing in databases to efficiently search and retrieve data.

    • B+ trees are balanced trees where each node can have multiple keys and child pointers.

    • Data is stored in leaf nodes, while non-leaf nodes are used for navigation.

    • B+ trees are commonly used in databases because of their ability to efficiently search and retrieve data.

    • Example: In a database table with an index on a specific column, B+ tree...

  • Answered by AI
Round 3 - Video Call 

(1 Question)

Round duration - 45 mintues
Round difficulty - Easy

Timing - 11AM-12:15PM
Environment - online video call

Again there was a panel of 2 senior engineers

  • Q1. 

    Maximum Path Sum Problem Statement

    You are given an n-ary tree consisting of 'N' nodes. Your task is to determine the maximum sum of the path from the root to any leaf node.

    Example:

    Input:
    For the giv...
  • Ans. 

    Find the maximum sum of the path from the root to any leaf node in an n-ary tree.

    • Traverse the tree from root to leaf nodes while keeping track of the sum of each path.

    • At each node, calculate the sum of the path from the root to that node and update the maximum sum found so far.

    • Consider using depth-first search (DFS) or breadth-first search (BFS) for tree traversal.

    • Handle cases where nodes have negative values or where

  • Answered by AI

Interview Preparation Tips

Professional and academic backgroundI completed Computer Science Engineering from Netaji Subhas University Of Technology. I applied for the job as SDE - 1 in NoidaEligibility criteria7.5 CGPAANSYS, Inc. interview preparation:Topics to prepare for the interview - System Design, core C++, Algorithms, Data Structures, DBMSTime required to prepare for the interview - 3 monthsInterview preparation tips for other job seekers

Tip 1 : Brush Up on Computer Science Fundamentals
Tip 2 : Prepare a Brief Self-Introduction

Application resume tips for other job seekers

Tip 1 : Do not put fake resume
Tip 2 : Writing internship project helps.

Final outcome of the interviewSelected

Skills evaluated in this interview

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 Cognizant
Q4. Nth Fibonacci Number Problem Statement Calculate the Nth term in ... read more
Q5. Find Duplicate in Array Problem Statement You are provided with a ... read more

Interview questions from similar companies

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 experience
3
Average
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Coding Test 

It was like 5 MCQ and two coding questions with difficult level of moderate

Round 2 - Technical 

(2 Questions)

  • Q1. They asked questions from DSA,sql and some web technology which I mentioned in my resume
  • Q2. What is the life cycle of react components?
  • Ans. 

    React components go through various stages in their life cycle, from initialization to destruction.

    • Initialization: Component is created and initialized with default props and state.

    • Mounting: Component is rendered on the DOM for the first time.

    • Updating: Component re-renders when props or state change.

    • Unmounting: Component is removed from the DOM.

    • Examples: componentDidMount() for mounting, componentDidUpdate() for updati

  • Answered by AI
Round 3 - Technical 

(1 Question)

  • Q1. Asked about my project and some behavioural questions

Skills evaluated in this interview

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 2023. There were 4 interview rounds.

Round 1 - Coding Test 

Topics: maps, sorting and simple DSA question

Round 2 - Technical 

(3 Questions)

  • Q1. What is linked list? How it is stored in memory? Give real examples of linked-list.
  • Ans. 

    A linked list is a data structure where each element points to the next element in the sequence.

    • Linked list is stored in memory as nodes, where each node contains data and a reference to the next node.

    • Examples of linked-list include a singly linked list, doubly linked list, and circular linked list.

    • In a singly linked list, each node points to the next node. In a doubly linked list, each node points to both the next and

  • Answered by AI
  • Q2. How does ML models are built?
  • Ans. 

    ML models are built by collecting and preparing data, selecting a model, training the model on the data, and evaluating its performance.

    • Collect and prepare data by cleaning, transforming, and encoding it

    • Select a model based on the problem at hand (e.g. regression, classification, clustering)

    • Train the model using algorithms like linear regression, decision trees, or neural networks

    • Evaluate the model's performance using ...

  • Answered by AI
  • Q3. Difference between array and linked list.
  • Ans. 

    Arrays store elements in contiguous memory locations, while linked lists store elements in nodes with pointers to the next node.

    • Arrays have fixed size, while linked lists can dynamically grow or shrink.

    • Accessing elements in arrays is faster (O(1)), while accessing elements in linked lists is slower (O(n)).

    • Inserting or deleting elements in arrays can be inefficient, as it may require shifting elements, while in linked l...

  • Answered by AI
Round 3 - Technical 

(2 Questions)

  • Q1. Given string s, return string y which stores first occurrence of characters of s .
  • Ans. 

    Return a string containing the first occurrence of characters in the input string.

    • Create an empty string to store the result.

    • Iterate through each character in the input string.

    • If the character is not already in the result string, add it to the result string.

    • Return the result string.

  • Answered by AI
  • Q2. Describe the hardest DSA questions you have ever done.
  • Ans. 

    One of the hardest DSA questions I have done involved implementing a complex graph traversal algorithm.

    • The question required understanding of graph data structures and algorithms.

    • I had to implement a depth-first search or breadth-first search algorithm.

    • The question may have involved finding the shortest path in a weighted graph.

    • I had to consider edge cases and optimize the algorithm for efficiency.

  • Answered by AI
Round 4 - HR 

(1 Question)

  • Q1. What are your hobbies, plans for future after 5 years?

Interview Preparation Tips

Topics to prepare for Autodesk Software Developer interview:
  • OS
  • OOPS
Interview preparation tips for other job seekers - When you know the answer, be very concise with your answer, try to explain without rambling with minimum word count.
When you don't know the answer try repeating the question back to interviewer to be super clear about the question and then say that currently you don't hold that much clarity about the topic but you will learn it soon.

Skills evaluated in this interview

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

2 hours of duration and medium level leetcode questions

Round 2 - Technical 

(2 Questions)

  • Q1. What do you mean by os?
  • Ans. 

    OS stands for Operating System. It is a software that manages computer hardware and provides services for computer programs.

    • OS is the software that acts as an intermediary between computer hardware and user applications.

    • It manages computer resources such as memory, processors, devices, and file systems.

    • Examples of popular operating systems include Windows, macOS, Linux, and Android.

  • Answered by AI
  • Q2. How can deadlock be avoided?
  • Ans. 

    Deadlock can be avoided by implementing proper resource allocation strategies and using techniques like deadlock prevention, avoidance, detection, and recovery.

    • Implement proper resource allocation strategies such as resource ordering, wait-die, wound-wait, etc.

    • Use techniques like deadlock prevention by ensuring that the system never enters a deadlock state, avoidance by ensuring that the system does not enter an unsafe...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Be confident while answering.

Skills evaluated in this interview

Interview Questionnaire 

9 Questions

  • Q1. Tree questions related like traversal?
  • Q2. Locate the sum of 2 numbers in a linear array (Unsorted and sorted) and their complexities
  • Ans. 

    Locate sum of 2 numbers in a linear array (unsorted and sorted) and their complexities

    • For unsorted array, use nested loops to compare each element with every other element until the sum is found

    • For sorted array, use two pointers approach starting from the beginning and end of the array and move them towards each other until the sum is found

    • Complexity for unsorted array is O(n^2) and for sorted array is O(n)

  • Answered by AI
  • Q3. Pointers with increment/decrement, address of and value at operators (++,–,*,&)
  • Ans. 

    Pointers are used to manipulate memory addresses and values in C++. Increment/decrement, address of and value at operators are commonly used.

    • Incrementing a pointer moves it to the next memory location of the same data type

    • Decrementing a pointer moves it to the previous memory location of the same data type

    • The address of operator (&) returns the memory address of a variable

    • The value at operator (*) returns the value sto

  • Answered by AI
  • Q4. A point and a rectangle is present with the given coordinates. How will you determine whether the point is inside or outside the rectangle?
  • Ans. 

    To determine if a point is inside or outside a rectangle, we check if the point's coordinates fall within the rectangle's boundaries.

    • Check if the point's x-coordinate is greater than the left edge of the rectangle

    • Check if the point's x-coordinate is less than the right edge of the rectangle

    • Check if the point's y-coordinate is greater than the top edge of the rectangle

    • Check if the point's y-coordinate is less than the b...

  • Answered by AI
  • Q5. There is a point inside the rectangle. How will you determine the line that passes through the point and divides the rectangle into 2 equal halves?
  • Ans. 

    To find line that divides rectangle into 2 equal halves through a point inside it.

    • Find the center of the rectangle

    • Draw a line from the center to the given point

    • Extend the line to the opposite side of the rectangle

    • The extended line will divide the rectangle into 2 equal halves

  • Answered by AI
  • Q6. There is a scheme which contains 8-bit and 16-bit signed numbers. How many such combinations are possible?
  • Ans. 

    There are multiple combinations of 8-bit and 16-bit signed numbers. How many such combinations are possible?

    • There are 2^8 (256) possible combinations of 8-bit signed numbers.

    • There are 2^16 (65,536) possible combinations of 16-bit signed numbers.

    • To find the total number of combinations, we can add the number of combinations of 8-bit and 16-bit signed numbers.

    • Therefore, the total number of possible combinations is 256 +

  • Answered by AI
  • Q7. You are given an array of elements. Some/all of them are duplicates. Find them in 0(n) time and 0(1) space. Property of inputs – Number are in the range of 1..n where n is the limit of the array
  • Ans. 

    Find duplicates in an array of elements in 0(n) time and 0(1) space.

    • Use the property of inputs to your advantage

    • Iterate through the array and mark elements as negative

    • If an element is already negative, it is a duplicate

    • Return all the negative elements as duplicates

  • Answered by AI
  • Q8. Given a array of digits. print all combination of of these i.e all no formed by these. repetition allowed. and then repetition not allowed example: i/p: arr={1,2,3} o/p: (without repetition) 123, 132, 213,...
  • Q9. Questions on project

Interview Preparation Tips

Round: Test
Duration: 90 minutes
Total Questions: 3

Round: HR Interview
Experience: HR interview was all about my projects, my background and a few more typical HR questions. It was pretty easy to answer them.

Skills: Algorithm, Data structure, C++
College Name: IIT ROORKEE

Skills evaluated in this interview

Interview experience
2
Poor
Difficulty level
Easy
Process Duration
-
Result
Not Selected

I was interviewed in Sep 2023.

Round 1 - Aptitude Test 

It was a on campus derive, it was 1 hr test normal question about english, reasoning, core concepts

Round 2 - Technical 

(1 Question)

  • Q1. I am from mechanical engineering students so they started with mechanical and started asking from oops, some puzzles, some anlatical mathematical question

Interview Preparation Tips

Interview preparation tips for other job seekers - if you from core branch then they ask why you want to come to it field
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
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 

Basics like arrays, bit manipulation, strings

Round 3 - Technical 

(1 Question)

  • Q1. Basic data structures, optimise code, puzzles
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(1 Question)

  • Q1. Oops concepts , collection frameworks basic questions on core Java .
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 Software Developer interview?
Ansys Software Private Limited interview process usually has 1 rounds. The most common rounds in the Ansys Software Private Limited interview process are One-on-one Round.
How to prepare for Ansys Software Private Limited Software 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 Ansys Software Private Limited. The most common topics and skills that interviewers at Ansys Software Private Limited expect are Python, C++, Software Development, Docker and Javascript.

Recently Viewed

DESIGNATION

SALARIES

Dell EMC

INTERVIEWS

BNP Paribas

No Interviews

INTERVIEWS

AIRBUS

No Interviews

DESIGNATION

DESIGNATION

DESIGNATION

SALARIES

Ansys Software Private Limited

INTERVIEWS

BNP Paribas

No Interviews

INTERVIEWS

BNP Paribas

No Interviews

Tell us how to improve this page.

Ansys Software Private Limited Software Developer Interview Process

based on 1 interview

Interview experience

5
  
Excellent
View more
Ansys Software Private Limited Software Developer Salary
based on 18 salaries
₹10 L/yr - ₹25 L/yr
157% more than the average Software Developer Salary in India
View more details

Ansys Software Private Limited Software Developer Reviews and Ratings

based on 2 reviews

4.0/5

Rating in categories

4.8

Skill development

5.0

Work-life balance

4.9

Salary

4.9

Job security

4.9

Company culture

4.9

Promotions

2.9

Work satisfaction

Explore 2 Reviews and Ratings
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