Upload Button Icon Add office photos

Filter interviews by

3DPLM Software Solutions Software Developer Interview Questions, Process, and Tips

Updated 23 Dec 2021

Top 3DPLM Software Solutions Software Developer Interview Questions and Answers

  • Q1. Given 9 identical coins what number of minimum comparisons between them will be required to determine one of the heavier coin
  • Q2. if i am having sorted array and then i am inserting a new element into the array so which algorithm should be used to minimize time complexity
  • Q3. make a program for this where input was no. of coins and output is no. of comparisons required.
View all 8 questions

3DPLM Software Solutions Software Developer Interview Experiences

4 interviews found

Software Developer Interview Questions & Answers

user image vaibhav walekar

posted on 18 Sep 2015

Interview Questionnaire 

3 Questions

  • Q1. Given 9 identical coins what number of minimum comparisons between them will be required to determine one of the heavier coin
  • Q2. Make a program for this where input was no. of coins and output is no. of comparisons required.
  • Ans. 

    Program to calculate no. of comparisons required based on no. of coins input.

    • Create a function that takes the input of no. of coins

    • Use a loop to compare each coin with every other coin

    • Increment the comparison count for each comparison made

    • Return the total comparison count

  • Answered by AI
  • Q3. If i am having sorted array and then i am inserting a new element into the array so which algorithm should be used to minimize time complexity
  • Ans. 

    Binary search algorithm should be used to minimize time complexity.

    • Binary search algorithm has a time complexity of O(log n).

    • It is efficient for searching in a sorted array.

    • The algorithm works by repeatedly dividing the search interval in half.

    • Example: If the array is [1, 3, 5, 7, 9] and we want to insert 6, we can use binary search to find the index where 6 should be inserted.

    • Once we find the index, we can shift the e...

  • Answered by AI

Interview Preparation Tips

Round: Test
Experience: It was basic aptitude test with two parts
part i) General test: 40 questions, 20 minutes
part ii) Technical test: 30 questions, 20 minutes
both of the test were easy.
Tips: practice for time and work, time speed and distance, some what geometry and mensuration, and mainly search for 3dplm and geometric previous year questions
Duration: 40 minutes

Round: Technical Interview
Experience: It was interview of 32 candidates --> 2 day process
My interview took around 60-70 minutes. Initially I was little nervous, so interviewer told me to be relax and calm (this process is ice breaking process so that candidate can give answers in his normal way). then he started with introduce yourself, for all interviews this is the first question.
my introduction was not completed as my actual interview began with my achievements. First question was about codevita what is codevita, what types of problem were asked and all that (Codevita is competition organised by TCS every year and it was mentioned in my resume), so after listening to problem statement he changed the problem in his way and asked me to make a program. he asked me one question on java but I am unable to recall it right now. Next was puzzle -> Given 9 identical coins what number of minimum comparisons between them will be required to determine one of the heavier coin.
I solved this puzzle and i think i was the first one to answer it correctly, so interviewer played the next move.. and that was to make a program for this where input was no. of coins and output is no. of comparisons required. (this was the important question of my interview due to which i got selected).
he asked about my family, my future plan specially post graduation (he tried to asked me 2-3 times about my post graduation plans)
Tips: Be confident,
always be ready for data structure, C, puzzles.

Round: Group Activity
Experience: this was unique round took around 2hr.
it was group discussion on puzzle and one program between all candidates and HR also.
Puzzle: there are 25 horses and you have to find top 3, but problem is track has a size of 5 horses so what is minimum no. of races requiered to find top 3.
Program: Date validation (this took around 1 and half hour)
overall motto behind this round was checking candidate's thinking capability, and how he behaves in a group.
Tips: Be confident and share your thoughts, as i think every company basically focuses on how good your thought process is.

Skills: Data Structure, logical reasoning, programming
College Name: Government College Of Engineering, Aurangabad
Funny Moments: in my second round, for program of date validation
every one was talking about creating a program, but i am bit lazy, so i gave my answer that create a reference of Date class and insert the details using that reference if error occured then that date is not valid

on this HR replied me "anyways you are selected "

and after the end of session everyone came to me to shake hand but i was thinking that was joke and i did not shook hand with anyone.

Skills evaluated in this interview

I applied via Walk-in and was interviewed in Jun 2020. There were 3 interview rounds.

Interview Questionnaire 

2 Questions

  • Q1. Explain SDLC?
  • Ans. 

    SDLC stands for Software Development Life Cycle. It is a process used to design, develop, and test software applications.

    • SDLC is a structured approach to software development.

    • It consists of several phases including requirements gathering, design, coding, testing, and maintenance.

    • Each phase has specific deliverables and activities.

    • SDLC models include Waterfall, Agile, and DevOps.

    • Example: In the requirements gathering ph...

  • Answered by AI
  • Q2. Tell different type is SQL joins?
  • Ans. 

    SQL joins are used to combine data from two or more tables based on a related column between them.

    • Inner join: returns only the matching rows from both tables

    • Left join: returns all the rows from the left table and matching rows from the right table

    • Right join: returns all the rows from the right table and matching rows from the left table

    • Full outer join: returns all the rows from both tables, with NULL values in the colu...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Be prepare for aptitude question because first round is of that only.

Skills evaluated in this interview

Software Developer Interview Questions Asked at Other Companies

asked in Amazon
Q1. Maximum Subarray SumGiven an array of numbers, find the maximum s ... read more
asked in Cognizant
Q2. Nth Fibonacci NumberNth term of Fibonacci series F(n), where F(n) ... read more
asked in Rakuten
Q3. Merge two sorted arraysNinja has been given two sorted integer ar ... read more
asked in GlobalLogic
Q4. Terms Of APAyush is given a number ‘X’. He has been told that he ... read more
asked in Amazon
Q5. Minimum Number of Platform NeededYou are given the arrival and de ... read more

I applied via Walk-in and was interviewed before Apr 2020. There were 3 interview rounds.

Interview Questionnaire 

2 Questions

  • Q1. Explain oops concept.
  • Ans. 

    OOPs is a programming paradigm based on the concept of objects that interact with each other.

    • OOPs stands for Object-Oriented Programming.

    • It focuses on creating objects that have properties and methods.

    • Encapsulation, Inheritance, and Polymorphism are the three main pillars of OOPs.

    • Encapsulation is the process of hiding the implementation details of an object.

    • Inheritance allows a new class to be based on an existing clas...

  • Answered by AI
  • Q2. Explain SDLC
  • Ans. 

    SDLC stands for Software Development Life Cycle, which is a process used to design, develop, and test software.

    • SDLC is a structured approach to software development.

    • It consists of several phases such as planning, analysis, design, implementation, testing, and maintenance.

    • Each phase has its own set of activities and deliverables.

    • The goal of SDLC is to produce high-quality software that meets the customer's requirements.

    • ...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare with apptitude questions

Skills evaluated in this interview

Software Developer Interview Questions & Answers

user image Sonali Nanda

posted on 18 Mar 2015

Interview Questionnaire 

10 Questions

  • Q1. Describe yourself
  • Ans. 

    I am a detail-oriented software developer with a passion for problem-solving and learning new technologies.

    • Proficient in multiple programming languages including Java, Python, and C++

    • Experience with web development frameworks such as React and Angular

    • Strong understanding of data structures and algorithms

    • Excellent communication and teamwork skills

    • Constantly seeking to improve and expand my skillset

  • Answered by AI
  • Q2. Why 3DPLM?
  • Ans. 

    3DPLM is a leading software development company with a strong focus on innovation and growth.

    • 3DPLM offers exciting opportunities to work on cutting-edge technologies and projects.

    • The company has a great work culture and provides ample learning and development opportunities.

    • 3DPLM has a strong reputation in the industry and is known for delivering high-quality software solutions.

    • Working at 3DPLM provides exposure to a di...

  • Answered by AI
  • Q3. WHY not your core branch?
  • Ans. 

    I wanted to explore new technologies and gain diverse experience.

    • I believe in continuous learning and growth.

    • I wanted to broaden my skill set and gain exposure to different areas of development.

    • I saw an opportunity to work on exciting projects and learn from experienced developers.

    • I wanted to challenge myself and step out of my comfort zone.

    • I saw potential for career advancement and personal development in this role.

  • Answered by AI
  • Q4. What are your long term and short term goals?
  • Ans. 

    My short term goal is to learn new technologies and improve my coding skills. My long term goal is to become a lead developer and contribute to the growth of the company.

    • Short term goal: Learn new technologies

    • Short term goal: Improve coding skills

    • Long term goal: Become a lead developer

    • Long term goal: Contribute to company growth

  • Answered by AI
  • Q5. What according to you is growth?
  • Ans. 

    Growth is the process of developing and improving oneself or something over time.

    • Growth involves continuous learning and development

    • It can be personal, professional, or organizational

    • It requires setting goals and working towards them

    • Examples include learning new skills, expanding one's network, and increasing revenue

    • Growth is essential for success and fulfillment

  • Answered by AI
  • Q6. How would your friends describe you in one word?
  • Ans. 

    My friends would describe me as dependable.

    • Reliable

    • Trustworthy

    • Consistent

    • Responsible

  • Answered by AI
  • Q7. Programming related question
  • Q8. Maths derivation questions
  • Q9. Branch related questions
  • Q10. Puzzle questions

Interview Preparation Tips

Round: Test
Experience: general wareness consists of one liner questions that are easy but the time provided would be less... say 20 mins for 40-50 questions..this section basically checks your speed
aptitude consists of general aptitude questions basically maths , geometry and reasoning which are also easy and time provided is sufficient
Tips: dont loose your calm and avoid any silly mistakes...... try to improve your speed by regular practice coz the questions provided are easy and rest assured that you are capable enough to solve then right but all that you need to go ahead in this cut throat competition is you speed ,your confidence and your calm mind
P.S - this tip applies to almost all aptitude tests for any campus recruitment

Round: HR Interview
Experience: Hr questions are basically those questions to which you could answer easily coz they are questions about you.its as if you are introducing yourself to a stranger but then try to be a bit witty in your answers ..thats what catches the attention of the interviewer the most
Tips: do not go to an interview with the same old conventional mugged up answers....IT should be like you are meeting a person for the first time and you need to impress him/her with your answers

Round: Technical Interview
Experience: the technical interview was a bit of everything infact.. YOU need to know your branch basics...you need to know the maths studied in 9th and 10th standard....you need to know a bit of programming (not compulsory)....and ya try to go through some google puzzles before going for the interview...or at least try to use a bit of your logical sense for such questions
Tips: I know it becomes hard to be able to be a master in all fields....but at least dnt try to look dumb or arrogant by just saying i dont know....show them the attitude that you are atleast trying to solve the question even if you dont know how to ..beforehand,,,,,,and a huge tip is that you are the one who actually decides which way your interview turns to...the way you answer,,the terms you use ...etc is what helps the interviewer to frame the next question from your answer itself..so always try to bring up those points about which you want your interviewer to ask questions to you

Skills: puzzle solving skills, programming skills, maths(basics)
College Name: NIT RAIPUR
Motivation: self motivation is the best policy ever

3DPLM Software Solutions interview questions for designations

 Software Engineer

 (2)

 UI Developer

 (1)

 QA Engineer

 (1)

 R&D Engineer

 (1)

 IT Engineer

 (1)

Interview questions from similar companies

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

I applied via Campus Placement

Round 1 - Aptitude Test 

Question related to operating system and computer network

Round 2 - Technical 

(1 Question)

  • Q1. Traverse all child nodes in tree
  • Ans. 

    Traverse all child nodes in a tree data structure

    • Use depth-first or breadth-first traversal algorithms

    • Recursively visit each child node starting from the root node

    • Consider using a stack or queue data structure for traversal

    • Example: Traverse all nodes in a binary tree

  • Answered by AI
Round 3 - Technical 

(1 Question)

  • Q1. Question related to cloud and oops
Round 4 - Technical 

(1 Question)

  • Q1. Question related to my background and how web site work
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via Walk-in and was interviewed in Nov 2024. There were 2 interview rounds.

Round 1 - Aptitude Test 

1st round is aptitude and pesudocode

Round 2 - Technical 

(2 Questions)

  • Q1. Mostly python questions
  • Q2. List questions and basic to mediumprogram

Interview Preparation Tips

Interview preparation tips for other job seekers - Moderate interview
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via Campus Placement and was interviewed in Oct 2024. There were 3 interview rounds.

Round 1 - Coding Test 

In first round 4 coding question like 1 dsa 2 database and one is api and question is very simple . coding round was conducted in hackerrank

Round 2 - Technical 

(2 Questions)

  • Q1. DSA QUESTION LIKE TREE AND GRAPH
  • Q2. DP AND SORTING APPROACH
Round 3 - Coding Test 

Again same but dsa question and oops concept in deep level

Interview Preparation Tips

Interview preparation tips for other job seekers - good knowledge in dsa , database , programming thats it
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
Selected Selected

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

Round 1 - One-on-one 

(1 Question)

  • Q1. Rest Apis questions
Round 2 - One-on-one 

(1 Question)

  • Q1. Core java and OOPS and LLD

Interview Preparation Tips

Interview preparation tips for other job seekers - Good understanding of Core language and its framework

Software Developer Interview Questions & Answers

Amadeus user image Aswini Ramachandran

posted on 2 Oct 2024

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

(2 Questions)

  • Q1. Something based on hashet
  • Q2. Same with this too
Round 2 - Aptitude Test 

Basic questions were given..bar graphs,pie charts

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

(1 Question)

  • Q1. What is Oops concept?
  • Ans. 

    Oops concept stands for Object-Oriented Programming concepts which include principles like inheritance, encapsulation, polymorphism, and abstraction.

    • Oops concept is a programming paradigm that focuses on objects and classes.

    • It includes principles like inheritance, where a class can inherit properties and behaviors from another class.

    • Encapsulation is another principle where data is wrapped within a class and can only be...

  • Answered by AI

3DPLM Software Solutions Interview FAQs

How to prepare for 3DPLM Software Solutions 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 3DPLM Software Solutions. The most common topics and skills that interviewers at 3DPLM Software Solutions expect are C++, Software Development, Algorithms, Programming and CAD.
What are the top questions asked in 3DPLM Software Solutions Software Developer interview?

Some of the top questions asked at the 3DPLM Software Solutions Software Developer interview -

  1. Given 9 identical coins what number of minimum comparisons between them will be...read more
  2. if i am having sorted array and then i am inserting a new element into the arra...read more
  3. make a program for this where input was no. of coins and output is no. of compa...read more

Tell us how to improve this page.

3DPLM Software Solutions Software Developer Salary
based on 26 salaries
₹5.2 L/yr - ₹12 L/yr
5% more than the average Software Developer Salary in India
View more details

3DPLM Software Solutions Software Developer Reviews and Ratings

based on 5 reviews

4.4/5

Rating in categories

4.3

Skill development

4.4

Work-life balance

4.3

Salary

4.4

Job security

4.4

Company culture

4.4

Promotions

4.3

Work satisfaction

Explore 5 Reviews and Ratings
Senior Software Engineer
30 salaries
unlock blur

₹5.8 L/yr - ₹12 L/yr

Software Developer
26 salaries
unlock blur

₹5.2 L/yr - ₹12 L/yr

Software Engineer
13 salaries
unlock blur

₹5.1 L/yr - ₹16.5 L/yr

R&D Engineer
10 salaries
unlock blur

₹7.7 L/yr - ₹13.2 L/yr

QA Engineer
8 salaries
unlock blur

₹4.3 L/yr - ₹8.2 L/yr

Explore more salaries
Compare 3DPLM Software Solutions with

TCS

3.7
Compare

Infosys

3.7
Compare

Wipro

3.7
Compare

HCLTech

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