Upload Button Icon Add office photos
Engaged Employer

i

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

CADFEM India Private Limited Verified Tick

Compare button icon Compare button icon Compare

Filter interviews by

CADFEM India Private Limited Interview Questions and Answers

Updated 12 Feb 2024

CADFEM India Private Limited Interview Experiences

Popular Designations

2 interviews found

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

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

Round 1 - Technical 

(1 Question)

  • Q1. Regarding CFD and thesis

Applications Engineer Interview Questions asked at other Companies

Q1. Minimum Special Sum Problem You are given an array ARR of length N. There are two operations defined for each index i in the array: FIRST_SUM(i): Calculates the sum of the first i numbers. LAST_SUM(i): Calculates the sum of the last N-i+1 ... read more
View answer (1)
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Campus Placement and was interviewed before Feb 2023. There were 2 interview rounds.

Round 1 - Aptitude Test 

It is gamification based test

Round 2 - Technical 

(1 Question)

  • Q1. Oops and sql related basics should be clear

Software Engineer Interview Questions asked at other Companies

Q1. Bridge and torch problem : Four people come to a river in the night. There is a narrow bridge, but it can only hold two people at a time. They have one torch and, because it's night, the torch has to be used when crossing the bridge. Person... read more
View answer (196)

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

I applied via Recruitment Consultant and was interviewed in Dec 2020. There were 4 interview rounds.

Interview Questionnaire 

1 Question

  • Q1. First round was coding round : 1. One string rotaion of other 2. Nearest largest and smallest prime value of given input. interview questions:What is difference between reference variable and pointer ?

Interview Preparation Tips

Interview preparation tips for other job seekers - Study on cpp , python basic if specified , data structure , oop.

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

Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Coding Test 

Commands of docker, git

Round 2 - Technical 

(1 Question)

  • Q1. Commands of Git

Intern Interview Questions & Answers

PTC user image Anonymous

posted on 20 May 2024

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

Mcq questions , c++ java basic aptitube

Round 2 - Technical 

(2 Questions)

  • Q1. Oops in depth| java | projects | sitution questions
  • Q2. Piller of oops, java , array easy question

Interview Preparation Tips

Interview preparation tips for other job seekers - EASY process focus on OOP they will ask you in depth. no need of dbms and all core subjects
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I was interviewed before Mar 2024.

Round 1 - Aptitude Test 

Not much harder mostly focus on basic coding Questions

Round 2 - Technical 

(2 Questions)

  • Q1. Java Questions, codes,Puzzle
  • Q2. My previous work experience related Questions
Round 3 - Technical 

(2 Questions)

  • Q1. Its was kind of techno Manager Interview. Focus is mostly on java basic concepts (with actual implementation process)
  • Q2. Some puzzles were asked by the interviewer and then some comman discussion topics.

Interview Preparation Tips

Interview preparation tips for other job seekers - Ensure that you have thoroughly studied the fundamental concepts of Java instead of concentrating solely on advanced topics, as interviewers often focus on these basic concepts in detail. You may be asked to solve coding problems during the interview, such as reversing a string, counting the occurrences of words in a statement, and counting the characters in a word. Additionally, expect to encounter one or two puzzles.
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
Not Selected

I applied via Campus Placement and was interviewed in Dec 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 - Aptitude Test 

First 20 question for apti and then coding round of 20 questions each from c/c++ , java and SQL

Round 3 - Technical 

(5 Questions)

  • Q1. OOPS questions Data structure like linked list Binary search SQL
  • Q2. Is multiple inheritance allowed in java?
  • Ans. 

    No, multiple inheritance is not allowed in Java.

    • Java does not support multiple inheritance for classes to avoid the diamond problem.

    • However, multiple inheritance is allowed for interfaces in Java.

    • Example: class A extends B, C is not allowed, but interface A extends B, C is allowed.

  • Answered by AI
  • Q3. What is inheritance
  • Ans. 

    Inheritance is a concept in object-oriented programming where a class inherits properties and behaviors from another class.

    • Allows a class to inherit attributes and methods from another class

    • Promotes code reusability and reduces redundancy

    • Creates a parent-child relationship between classes

    • Example: Class 'Car' can inherit properties and methods from class 'Vehicle'

  • Answered by AI
  • Q4. What is real time example of polymorphism
  • Ans. 

    Polymorphism in software development is like a person driving different vehicles using the same driving skills.

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

    • For example, a superclass 'Shape' can have subclasses like 'Circle' and 'Rectangle' which can be treated as 'Shape' objects.

    • Calling a method like 'draw()' on a 'Shape' object will execute the specific implementatio...

  • Answered by AI
  • Q5. What is your project based on?

Interview Preparation Tips

Interview preparation tips for other job seekers - It was average

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.
Contribute & help others!
anonymous
You can choose to be anonymous

CADFEM India Private Limited Interview FAQs

How many rounds are there in CADFEM India Private Limited interview?
CADFEM India Private Limited interview process usually has 1-2 rounds. The most common rounds in the CADFEM India Private Limited interview process are Technical and Aptitude Test.
What are the top questions asked in CADFEM India Private Limited interview?

Some of the top questions asked at the CADFEM India Private Limited interview -

  1. Oops and sql related basics should be cl...read more
  2. Regarding CFD and the...read more

Recently Viewed

PHOTOS

InsuranceDekho

3 office photos

LIST OF COMPANIES

Credit Bajaar

Overview

INTERVIEWS

Torrent Gas

No Interviews

INTERVIEWS

Freshworks

No Interviews

INTERVIEWS

Cult.fit

No Interviews

INTERVIEWS

Spark Minda

No Interviews

INTERVIEWS

CADFEM India Private Limited

No Interviews

INTERVIEWS

BugsMirror

No Interviews

INTERVIEWS

Cult.fit

No Interviews

INTERVIEWS

Spark Minda

No Interviews

Tell us how to improve this page.

CADFEM India Private Limited Interview Process

based on 6 interviews

Interview experience

4.7
  
Excellent
View more

Interview Questions from Similar Companies

Dassault Systemes Interview Questions
4.0
 • 160 Interviews
PTC Interview Questions
4.2
 • 62 Interviews
MathWorks Interview Questions
3.9
 • 41 Interviews
Autodesk Interview Questions
4.3
 • 39 Interviews
Bentley Systems Interview Questions
4.3
 • 20 Interviews
MSC Software Interview Questions
4.0
 • 3 Interviews
View all

CADFEM India Private Limited Reviews and Ratings

based on 23 reviews

4.0/5

Rating in categories

4.1

Skill development

4.1

Work-life balance

4.0

Salary

4.2

Job security

4.0

Company culture

3.6

Promotions

4.0

Work satisfaction

Explore 23 Reviews and Ratings
Territory Sales Manager
14 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Applications Engineer
14 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Simulator Engineer
12 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Senior Application Engineer
4 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Inside Sales Associate
4 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Explore more salaries
Compare CADFEM India Private Limited with

Ansys Software Private Limited

3.9
Compare

Siemens PLM Software

4.2
Compare

Altair Engineering

4.1
Compare

Dassault Systemes

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