Upload Button Icon Add office photos

Filter interviews by

Neilsoft Interview Questions, Process, and Tips

Updated 3 Mar 2025

Top Neilsoft Interview Questions and Answers

View all 40 questions

Neilsoft Interview Experiences

Popular Designations

40 interviews found

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

(1 Question)

  • Q1. Basics of Android

Android Developer Interview Questions asked at other Companies

Q1. Cube Sum PairsYou are given a positive integer N, and you have to find the number of ways to represent N as a sum of cubes of two integers(let’s say A and B), such that: N = A^3 + B^3. Note: 1. A should be greater than or equal to one (A&g... read more
View answer (3)
Interview experience
3
Average
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 

(2 Questions)

  • Q1. What is pressure temperature rating
  • Ans. 

    Pressure temperature rating refers to the maximum allowable pressure and temperature for a piping system or component.

    • Pressure temperature rating determines the safe operating limits of a piping system.

    • It is typically specified by industry standards such as ASME B31.3.

    • The rating is expressed as a combination of pressure and temperature, such as Class 150, Class 300, etc.

    • Higher pressure and temperature ratings indicate ...

  • Answered by AI
  • Q2. What is support
  • Ans. 

    Support refers to the structural elements that hold or carry the weight of a piping system.

    • Supports are used to prevent excessive movement, vibration, or stress on the piping system.

    • They can be in the form of hangers, clamps, brackets, or anchors.

    • Supports are designed based on the weight, size, and material of the piping system.

    • They are typically made of steel or other strong materials.

    • Examples of supports include pipe

  • Answered by AI

Skills evaluated in this interview

Junior Piping Engineer Interview Questions asked at other Companies

Q1. Types of pipe use in process piping & code of process piping.types of drawing use in process piping.
View answer (1)
Interview experience
3
Average
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via Campus Placement and was interviewed in Jan 2024. There was 1 interview round.

Round 1 - Coding Test 

It was quiet easy test.

Interview Preparation Tips

Interview preparation tips for other job seekers - The last round was technical and HR interview in which role was for full time data Science based. They ask questions on python programming and machine learning.

Data Science Intern Interview Questions asked at other Companies

Q1. Puzzle QuestionIn a bank, suppose there are 5 counters. Which approach mentioned below is better?1) The new customer goes to whichever counter has a smaller queue2) Each counter has a specific purpose (e.g., cash withdrawal, cash deposit, c... read more
View answer (1)
Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
-
Round 1 - HR 

(1 Question)

  • Q1. Previous experience
Round 2 - Technical 

(1 Question)

  • Q1. Previous experience
Round 3 - Design Test 

(1 Question)

  • Q1. Cad test on software

Senior Mechanical Design Engineer Interview Questions asked at other Companies

Q1. How do you select heatsink and fan
View answer (1)

Neilsoft interview questions for popular designations

 Junior Engineer

 (3)

 Junior Engineer Electrical

 (2)

 React Developer

 (2)

 Software Engineer

 (2)

 Android Developer

 (1)

 Applications Engineer

 (1)

 Architect

 (1)

 Associate Engineer

 (1)

Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via Company Website and was interviewed in Jan 2023. There were 2 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 tips
Round 2 - Technical 

(7 Questions)

  • Q1. Explain Basics OOP Pillars
  • Ans. 

    The basics of OOP (Object-Oriented Programming) pillars are encapsulation, inheritance, and polymorphism.

    • Encapsulation: Bundling data and methods together in a class to hide implementation details.

    • Inheritance: Creating new classes from existing ones, inheriting their properties and behaviors.

    • Polymorphism: Objects of different classes can be treated as objects of a common superclass, allowing flexibility and extensibili

  • Answered by AI
  • Q2. What's copy constructor. Why it's passed by reference Why copy constructor can not be void
  • Ans. 

    A copy constructor is a special constructor that creates a new object by copying the values of another object.

    • Copy constructor is used to create a new object with the same values as an existing object.

    • It is passed by reference to avoid unnecessary object copying, which can be expensive.

    • Copy constructor cannot be void because it needs to return the newly created object.

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

    Array is a contiguous block of memory, while linked list is a collection of nodes connected by pointers.

    • Array has constant time access to elements, while linked list requires traversing the list.

    • Array has fixed size, while linked list can dynamically grow or shrink.

    • Insertion and deletion in array is expensive, while linked list can easily insert or delete nodes.

    • Array is suitable for random access, while linked list is

  • Answered by AI
  • Q4. Given three points how to check if they are colinear
  • Ans. 

    To check if three points are colinear, calculate the slope between each pair of points and compare them.

    • Calculate the slope between the first two points using the formula: slope = (y2 - y1) / (x2 - x1)

    • Calculate the slope between the second and third points using the same formula

    • If the slopes between all pairs of points are equal, then the points are colinear

  • Answered by AI
  • Q5. Given point and circle how to find if point is inside circle or outside circle
  • Ans. 

    To determine if a point is inside or outside a circle, calculate the distance between the point and the center of the circle.

    • Calculate the distance between the point and the center of the circle using the distance formula: sqrt((x2 - x1)^2 + (y2 - y1)^2)

    • If the distance is less than the radius of the circle, the point is inside the circle. If it is equal to the radius, the point is on the circle. Otherwise, it is outsid

  • Answered by AI
  • Q6. How to find resultant of two vectors in terms of magnitude and direction
  • Ans. 

    The resultant of two vectors can be found by adding the magnitudes and finding the direction using trigonometry.

    • To find the magnitude of the resultant, use the Pythagorean theorem: magnitude = sqrt(a^2 + b^2)

    • To find the direction of the resultant, use trigonometry: direction = atan(b/a)

    • If the vectors are given in terms of their components, add the corresponding components to find the resultant

  • Answered by AI
  • Q7. Can child class point points to base class?
  • Ans. 

    Yes, a child class can point to a base class.

    • In object-oriented programming, a child class can inherit from a base class and use its methods and properties.

    • A child class can also override the methods of the base class to provide its own implementation.

    • Polymorphism allows a child class object to be treated as a base class object, enabling it to point to the base class.

    • This is useful for code reusability and creating a h

  • Answered by AI

Interview Preparation Tips

Topics to prepare for Neilsoft Software Engineer interview:
  • C++
Interview preparation tips for other job seekers - Check for which profile interview is. This Company works in CAD so good to have basic math and geometry knowledge

Skills evaluated in this interview

Top Neilsoft Software Engineer Interview Questions and Answers

Q1. Given point and circle how to find if point is inside circle or outside circle
View answer (1)

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 (180)

Get interview-ready with Top Neilsoft Interview Questions

Interview experience
2
Poor
Difficulty level
Moderate
Process Duration
More than 8 weeks
Result
No response

I applied via Company Website and was interviewed in Apr 2023. There were 3 interview rounds.

Round 1 - Resume Shortlist 
Pro Tip by AmbitionBox:
Don’t add your photo or details such as gender, age, and address in your resume. These details do not add any value.
View all tips
Round 2 - Aptitude Test 

They ask question on SFD AND BMD

Round 3 - Technical 

(2 Questions)

  • Q1. They ask question on SFD & BMD
  • Q2. And they also ask question on orthographic

Interview Preparation Tips

Interview preparation tips for other job seekers - Interviewer was very chill and calm

Civil Engineer Interview Questions asked at other Companies

Q1. What is the curing formalities for our precast segment???
View answer (20)

Jobs at Neilsoft

View all

Front end Developer Interview Questions & Answers

user image Vivek Bokoliya

posted on 19 Apr 2023

Interview experience
4
Good
Difficulty level
-
Process Duration
Less than 2 weeks
Result
No response

I applied via Referral and was interviewed in Mar 2023. There were 3 interview rounds.

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 tips
Round 2 - Technical 

(2 Questions)

  • Q1. QUESTIONS ON JAVASCRIPT, REST API's, REACT, REDUX
  • Q2. MORE ASKED IN REACT,REDUX & REST API's
Round 3 - Behavioral 

(1 Question)

  • Q1. All technical, analytical questions asked in REACT

Front end Developer Interview Questions asked at other Companies

Q1. Non-Decreasing Array Problem Statement Given an integer array ARR of size N, determine if it can be transformed into a non-decreasing array by modifying at most one element. An array is defined as non-decreasing if ARR[i] <= ARR[i + 1] f... read more
View answer (3)
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
Selected Selected

I applied via Company Website and was interviewed in Feb 2023. There were 2 interview rounds.

Round 1 - Resume Shortlist 
Pro Tip by AmbitionBox:
Double-check your resume for any spelling mistakes. The recruiter may consider spelling mistakes as careless behavior or poor communication skills.
View all tips
Round 2 - One-on-one 

(2 Questions)

  • Q1. Regarding Revit and BIM?
  • Q2. Regarding your experience and project?

Interview Preparation Tips

Interview preparation tips for other job seekers - Good work culture and working environment over there

Associate Engineer Interview Questions asked at other Companies

Q1. Count Ways To Reach The N-th Stair Problem Statement You are given a number of stairs, N. Starting at the 0th stair, you need to reach the Nth stair. Each time you can either climb one step or two steps. You have to return the number of dis... read more
Add answer

Unit Head Interview Questions & Answers

user image Anonymous

posted on 20 Jun 2023

Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
Selected Selected

I applied via Naukri.com and was interviewed in Dec 2022. There were 3 interview rounds.

Round 1 - Resume Shortlist 
Pro Tip by AmbitionBox:
Do not use an unprofessional email address such as cool_boy@email.com. It shows a lack of professionalism by the candidate.
View all tips
Round 2 - Technical 

(1 Question)

  • Q1. Related to team management
Round 3 - Technical 

(2 Questions)

  • Q1. Man hour calculation
  • Q2. Be prepared for what you have written in your cv

Interview Preparation Tips

Interview preparation tips for other job seekers - This good time to switch

Unit Head Interview Questions asked at other Companies

Q1. which is your favourite brand? how to sell other brand.
View answer (1)
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
Selected Selected

I applied via Naukri.com and was interviewed in Apr 2023. There were 3 interview rounds.

Round 1 - Resume Shortlist 
Pro Tip by AmbitionBox:
Be truthful in your resume. It is very easy to catch false or lies during the interview by asking basic questions.
View all tips
Round 2 - Aptitude Test 

Piping MCQ - stress, material, layout

Round 3 - Technical 

(1 Question)

  • Q1. Pressure temperature rating, codes & standards

Piping Engineer Interview Questions asked at other Companies

Q1. What is the basic difference between Pipe specification A106 Gr.A / Gr.B/ Gr.C.?
View answer (4)

Neilsoft Interview FAQs

How many rounds are there in Neilsoft interview?
Neilsoft interview process usually has 2-3 rounds. The most common rounds in the Neilsoft interview process are Technical, Resume Shortlist and Aptitude Test.
How to prepare for Neilsoft 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 Neilsoft. The most common topics and skills that interviewers at Neilsoft expect are Data Collection, AutoCAD, C++, REVIT and Python.
What are the top questions asked in Neilsoft interview?

Some of the top questions asked at the Neilsoft interview -

  1. Given point and circle how to find if point is inside circle or outside cir...read more
  2. Difference between shared and global parameters, instance and type paramete...read more
  3. How to find resultant of two vectors in terms of magnitude and direct...read more
How long is the Neilsoft interview process?

The duration of Neilsoft interview process can vary, but typically it takes about less than 2 weeks to complete.

Tell us how to improve this page.

Neilsoft Interview Process

based on 35 interviews

Interview experience

3.8
  
Good
View more

Interview Questions from Similar Companies

TCS Interview Questions
3.7
 • 10.5k Interviews
Infosys Interview Questions
3.6
 • 7.6k Interviews
Wipro Interview Questions
3.7
 • 5.7k Interviews
Tech Mahindra Interview Questions
3.5
 • 3.9k Interviews
HCLTech Interview Questions
3.5
 • 3.8k Interviews
LTIMindtree Interview Questions
3.8
 • 3k Interviews
Mphasis Interview Questions
3.4
 • 810 Interviews
L&T Construction Interview Questions
4.0
 • 737 Interviews
Cyient Interview Questions
3.7
 • 284 Interviews
View all

Neilsoft Reviews and Ratings

based on 338 reviews

3.6/5

Rating in categories

3.2

Skill development

3.5

Work-life balance

3.0

Salary

3.9

Job security

3.3

Company culture

2.9

Promotions

3.2

Work satisfaction

Explore 338 Reviews and Ratings
Process Draughtsman

Pune

2-7 Yrs

Not Disclosed

Civil Designer

Pune

2-7 Yrs

Not Disclosed

CAD Developer

Pune,

Chennai

+1

2-6 Yrs

Not Disclosed

Explore more jobs
Junior Engineer
181 salaries
unlock blur

₹2.5 L/yr - ₹5.2 L/yr

BIM Engineer
90 salaries
unlock blur

₹3 L/yr - ₹10 L/yr

Engineer
73 salaries
unlock blur

₹3 L/yr - ₹9.9 L/yr

Design Engineer
70 salaries
unlock blur

₹2.8 L/yr - ₹8.4 L/yr

Software Engineer
62 salaries
unlock blur

₹3.2 L/yr - ₹9.8 L/yr

Explore more salaries
Compare Neilsoft with

TCS

3.7
Compare

Infosys

3.6
Compare

Wipro

3.7
Compare

Tech Mahindra

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