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 Engineer Intern Interview Questions and Answers

Updated 16 Oct 2023

Ansys Software Private Limited Software Engineer Intern Interview Experiences

1 interview found

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

I applied via campus placement at RV College Of Engineering (RVCE) and was interviewed before Oct 2022. There were 2 interview rounds.

Round 1 - Aptitude Test 

Coding on oops multiple choice questions

Round 2 - Technical 

(3 Questions)

  • Q1. Find leaf node of binary tree
  • Ans. 

    To find leaf node of binary tree, traverse the tree and check if node has no children.

    • Traverse the binary tree using depth-first search or breadth-first search

    • Check if a node has no left or right child, then it is a leaf node

    • Repeat the process for all nodes until all leaf nodes are found

  • Answered by AI
  • Q2. How to get left view right view top view of binary tree
  • Ans. 

    To get left view, right view, and top view of a binary tree, perform level order traversal and keep track of the first node encountered at each level.

    • Perform level order traversal of the binary tree

    • Keep track of the first node encountered at each level for left view

    • Keep track of the last node encountered at each level for right view

    • For top view, use a map to store horizontal distance and node pairs

  • Answered by AI
  • Q3. Some of the puzzle questions

Interview Preparation Tips

Interview preparation tips for other job seekers - Be thorough in OOPS and concepts related to OS and memory.

Skills evaluated in this interview

Interview questions from similar companies

Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-

I applied via Campus Placement

Round 1 - Coding Test 

90 min MCQ +coding test on hackerrank.

Round 2 - Technical 

(2 Questions)

  • Q1. Sort colors DSA question
  • Q2. Detect cycle in a linked list
  • Ans. 

    Use Floyd's Tortoise and Hare algorithm to detect cycle in a linked list.

    • Initialize two pointers, slow and fast, at the head of the linked list.

    • Move slow pointer by one step and fast pointer by two steps.

    • If they meet at some point, there is a cycle in the linked list.

  • Answered by AI
Round 3 - HR 

(1 Question)

  • Q1. Was asked about why you want to join the company,my experience etc.
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
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I was interviewed in Sep 2024.

Round 1 - Coding Test 

I was given a test which was not that difficult

Round 2 - Behavioral 

(2 Questions)

  • Q1. Why are you leaving the current job
  • Ans. 

    Seeking new challenges and growth opportunities in a more innovative environment.

    • Looking for new challenges and opportunities for growth

    • Interested in working in a more innovative environment

    • Seeking a change in company culture or work-life balance

  • Answered by AI
  • Q2. What's the driving factor for you to join Altair
  • Ans. 

    The innovative projects and collaborative work environment at Altair are the driving factors for me to join.

    • Innovative projects: I am excited about the opportunity to work on cutting-edge projects that push the boundaries of technology.

    • Collaborative work environment: I value teamwork and believe that working with talented individuals at Altair will help me grow professionally.

    • Company culture: I have heard great things ...

  • Answered by AI
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
Not Selected

I was interviewed in Nov 2024.

Round 1 - Aptitude Test 

Ge general attitude and HTML CSS JavaScript Java questions

Interview Preparation Tips

Interview preparation tips for other job seekers - Am site for experience is needed
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-

I applied via Campus Placement

Round 1 - Aptitude Test 

Normal apti reasoning test checking normal intelligence with some basic technical questions.

Round 2 - Group Discussion 

Topic was physical cash V/s Digital cash.

Round 3 - Technical 

(1 Question)

  • Q1. About project in detail
Round 4 - Technical 

(1 Question)

  • Q1. About project in detail
Round 5 - HR 

(1 Question)

  • Q1. Intro,family background,ready to locate
Interview experience
4
Good
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via campus placement at Adesh Institute of Engineering and Technology, Faridkot and was interviewed in Sep 2024. There were 2 interview rounds.

Round 1 - Aptitude Test 

Apti , html , linux ,sql, java

Round 2 - Group Discussion 

They give topics and we have to speak for 30 sec

Interview experience
1
Bad
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via Approached by Company and was interviewed in Apr 2024. There were 2 interview rounds.

Round 1 - Aptitude Test 

Basic aptitude and reasoning questions. But have to complete 40 questions in 20 mins.

Round 2 - Technical 

(1 Question)

  • Q1. 1. Introduce yourself 2. Coding question on simple string manipulation. 3. Question regarding the code i wrote. Like why I used certain datastructure. If I have used different datastructure then what err...

Interview Preparation Tips

Interview preparation tips for other job seekers - After completing aptitude and behavioural test I was called for technical round. Interview went for around 1 hour and everything was going well. I answered most of the questions and he sounded satisfied with my answers. But at the end he said- "I like your confidence and you speak with such confidence; it shows you have knowledge on these concepts but unfortunately we can't move further with your profile because you have never worked on live projects, and we strictly need someone who has previously worked on live projects."
Funny part was that I had already informed this to the recruiter when he called for the job offer. I mentioned the same on my resume and even informed it to the interviewer at the start of interview. If that was the mandatory criteria, then why they wasted so much of time.
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
-
Result
-
Round 1 - One-on-one 

(2 Questions)

  • Q1. How pagination work in jpa
  • Ans. 

    Pagination in JPA allows for retrieving a subset of results from a query by specifying a limit and offset.

    • Use the setFirstResult() method to specify the starting index of the results to retrieve

    • Use the setMaxResults() method to specify the maximum number of results to retrieve

    • Combine setFirstResult() and setMaxResults() to implement pagination in JPA queries

  • Answered by AI
  • Q2. How to create restful api
  • Ans. 

    To create a RESTful API, define endpoints, use HTTP methods, handle requests and responses, and follow REST principles.

    • Define endpoints for different resources (e.g. /users, /products)

    • Use HTTP methods like GET, POST, PUT, DELETE for CRUD operations

    • Handle requests and responses in JSON format

    • Follow REST principles like statelessness, uniform interface, and client-server architecture

  • Answered by AI

Skills evaluated in this interview

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

Ansys Software Private Limited Interview FAQs

How many rounds are there in Ansys Software Private Limited Software Engineer Intern interview?
Ansys Software Private Limited interview process usually has 3 rounds. The most common rounds in the Ansys Software Private Limited interview process are Resume Shortlist, Aptitude Test and Technical.
What are the top questions asked in Ansys Software Private Limited Software Engineer Intern interview?

Some of the top questions asked at the Ansys Software Private Limited Software Engineer Intern interview -

  1. How to get left view right view top view of binary t...read more
  2. find leaf node of binary t...read more
  3. Some of the puzzle questi...read more

Tell us how to improve this page.

Ansys Software Private Limited Software Engineer Intern Interview Process

based on 1 interview

Interview experience

5
  
Excellent
View more

Interview Questions from Similar Companies

Siemens Interview Questions
4.1
 • 429 Interviews
Dassault Systemes Interview Questions
4.0
 • 159 Interviews
Synopsys Interview Questions
3.9
 • 88 Interviews
Apisero Interview Questions
4.3
 • 72 Interviews
PTC Interview Questions
4.2
 • 62 Interviews
TestingXperts Interview Questions
4.1
 • 40 Interviews
Autodesk Interview Questions
4.3
 • 39 Interviews
Credera Interview Questions
3.9
 • 39 Interviews
View all
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