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

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

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

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?
  • Q2. Explain how indexing in a database works using B+ trees.
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...

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 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
2-4 weeks
Result
Not Selected

I applied via Recruitment Consulltant and was interviewed in Nov 2024. There were 2 interview rounds.

Round 1 - HR 

(2 Questions)

  • Q1. Tell us about your experience.
  • Q2. In english, give me a feedback you received lately.
Round 2 - Technical 

(2 Questions)

  • Q1. Brief explanation of SOLID principles
  • Q2. Ref vs out arguments
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Aptitude Test 

Aptitude,reasoning,verbal,C language,Java,C++

Round 2 - Technical 

(2 Questions)

  • Q1. What is interface in JAVA
  • Q2. Explain OOPS in JAVA

Interview Preparation Tips

Interview preparation tips for other job seekers - NA
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via Referral and was interviewed in Mar 2024. There was 1 interview round.

Round 1 - Technical 

(2 Questions)

  • Q1. Project based backend and frontend
  • Q2. How to connect to backend
  • Ans. 

    To connect to the backend, you can use APIs, database connections, or web services.

    • Use APIs to send and receive data between the frontend and backend

    • Establish database connections to retrieve and store data

    • Utilize web services for communication between different systems

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare for project

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 Dec 2023. There was 1 interview round.

Round 1 - Technical 

(5 Questions)

  • Q1. What is class what is object what is different between private protected and public and default
  • Ans. 

    A class is a blueprint for creating objects, while an object is an instance of a class. Private, protected, public, and default are access modifiers in object-oriented programming.

    • A class is a template or blueprint that defines the properties and behaviors of objects.

    • An object is an instance of a class, created using the class blueprint.

    • Private access modifier restricts access to class members within the same class.

    • Pro...

  • Answered by AI
  • Q2. What is object ?
  • Ans. 

    An object is a self-contained entity that consists of both data and behavior.

    • Objects are instances of classes in object-oriented programming.

    • They encapsulate data and provide methods to manipulate that data.

    • Objects can interact with each other through method calls and message passing.

    • Examples of objects include a car, a person, or a bank account.

  • Answered by AI
  • Q3. What is public?
  • Ans. 

    Public is a keyword in programming languages that denotes the accessibility of a class, method, or variable.

    • Public is one of the access modifiers in object-oriented programming.

    • It allows the class, method, or variable to be accessed from any other class or package.

    • Public members are part of the public API of a software component.

    • Example: public class MyClass { ... }

    • Example: public void myMethod() { ... }

    • Example: public

  • Answered by AI
  • Q4. What is private?
  • Ans. 

    In programming, private is an access modifier that restricts the visibility of a class member to within its own class.

    • Private is used to encapsulate data and prevent direct access from outside the class.

    • Private members can only be accessed through public methods or properties.

    • Private variables are often used to store internal state or implementation details.

    • Private methods are used for internal logic and are not meant

  • Answered by AI
  • Q5. What is protected
  • Ans. 

    protected is an access modifier in object-oriented programming that restricts access to members within the same package or subclasses.

    • protected is one of the four access modifiers in Java, along with public, private, and default.

    • Members declared as protected can be accessed within the same package or by subclasses.

    • Protected members are not accessible outside the package unless accessed through inheritance.

    • Example: prot...

  • Answered by AI

Interview Preparation Tips

Topics to prepare for Cyber Infrastructure Software Developer interview:
  • OOPS
  • Java
Interview preparation tips for other job seekers - Know what you have written in your resume

Skills evaluated in this interview

Interview experience
2
Poor
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Aptitude Test 

They asked from all the concepts wer have covered till now in Engineering.

Round 2 - Technical 

(2 Questions)

  • Q1. Not applicable to this
  • Q2. Not applicable to this one
Interview experience
1
Bad
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
No response

I applied via Approached by Company

Round 1 - Technical 

(2 Questions)

  • Q1. Not available, PFB
  • Q2. Please find below

Interview Preparation Tips

Topics to prepare for SpanIdea Software Developer interview:
  • C++
  • C
Interview preparation tips for other job seekers - The SO INTELLCTUAL HR lady calls me and tells me about the job role and tells that this includes 1 year bond. she asks me my current location . she then asks me which city i am from? Then she asks me which state i am from?:) I don't know at that time was she searching the last braincell she have?AND then she also wants to know that currently at which area i am residing and she goes on to ask that do i have any relatives at job location area. when i asked her why she is asking so many questions her response was that "we want to know if the candidate is really interested in job role". Highly Professional HR ,, even after going through her "intellectual questionnaire" and telling her i am interested in job role there was absolute no response from her

company should conduct some good communication skills and logical thinking classes for HRs before expecting it from any candidate
Interview experience
1
Bad
Difficulty level
Hard
Process Duration
Less than 2 weeks
Result
No response

I applied via Referral and was interviewed in Dec 2023. There was 1 interview round.

Round 1 - Technical 

(2 Questions)

  • Q1. Question are about interview
  • Q2. Answers about interview
Interview experience
5
Excellent
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 tips
Round 2 - Technical 

(3 Questions)

  • Q1. Dependency injection in c#
  • Ans. 

    Dependency injection in C# is a design pattern where dependencies are injected into a class rather than the class creating them itself.

    • Dependency injection helps in achieving loose coupling between classes.

    • It makes the code more testable and maintainable.

    • There are different ways to implement dependency injection in C#, such as constructor injection, property injection, and method injection.

  • Answered by AI
  • Q2. Opps related questions inheritance, polymorphism, abstract classes and interfaces
  • Q3. Ooops knowledge should be perfect

Skills evaluated in this interview

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.

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
48 salaries
unlock blur

₹14 L/yr - ₹26.5 L/yr

Senior R&D Engineer
34 salaries
unlock blur

₹22 L/yr - ₹43 L/yr

Applications Engineer
34 salaries
unlock blur

₹12.5 L/yr - ₹30.5 L/yr

Technical Support Engineer
23 salaries
unlock blur

₹10 L/yr - ₹16.5 L/yr

Senior Application Engineer
21 salaries
unlock blur

₹15 L/yr - ₹30 L/yr

Explore more salaries
Compare Ansys Software Private Limited with

Autodesk

4.3
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