Upload Button Icon Add office photos
Engaged Employer

i

This company page is being actively managed by Dassault Systemes Team. If you also belong to the team, you can get access from here

Dassault Systemes Verified Tick

Compare button icon Compare button icon Compare
4.0

based on 898 Reviews

Filter interviews by

Dassault Systemes Software Development Engineer Interview Questions and Answers

Updated 10 Jan 2025

Dassault Systemes Software Development Engineer Interview Experiences

1 interview found

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

I applied via Referral and was interviewed before Jan 2024. There were 4 interview rounds.

Round 1 - Coding Test 

Easy test, oops, logic.

Round 2 - Technical 

(2 Questions)

  • Q1. Java oops, static members
  • Q2. Polymorphism, overloading, inheritance in depth.
Round 3 - One-on-one 

(2 Questions)

  • Q1. Puzzles, geometry
  • Q2. Bachelors project, masters project
Round 4 - One-on-one 

(2 Questions)

  • Q1. More puzzles
  • Q2. Behavorial

Interview questions from similar companies

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

I applied via Naukri.com and was interviewed before Jun 2023. There were 3 interview rounds.

Round 1 - Technical 

(2 Questions)

  • Q1. Mostly DS and Algo based questions and oops were asked.
  • Q2. SQL questions were asked in a very detailed manner.
Round 2 - Technical 

(2 Questions)

  • Q1. Same as round 1
  • Q2. Previous project based questions.
Round 3 - HR 

(2 Questions)

  • Q1. Mostly company policy and culture
  • Q2. Salary discussion

Interview Preparation Tips

Interview preparation tips for other job seekers - Medium level interview . Anyone having good knowledge of their domain can crack.
Interview experience
4
Good
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via campus placement at KJ Somaiya Institute of Engineering and Information Technology and was interviewed before Jan 2023. There were 4 interview rounds.

Round 1 - Coding Test 

2-3 coding questions based on DSA

Round 2 - Aptitude Test 

It was a basic SHL test

Round 3 - Technical 

(1 Question)

  • Q1. Easy DSA and java related questions
Round 4 - HR 

(1 Question)

  • Q1. Typical HR round questions about career prospects

I applied via Campus Placement and was interviewed in Aug 2021. There were 4 interview rounds.

Interview Questionnaire 

6 Questions

  • Q1. What is pointer ?
  • Ans. 

    A pointer is a variable that stores the memory address of another variable.

    • Pointers are used to manipulate memory directly.

    • They can be used to pass large data structures to functions without copying them.

    • Pointers can be used to create dynamic data structures like linked lists and trees.

    • They can also be used to access hardware directly.

    • Examples of pointer types include int*, char*, and void*.

  • Answered by AI
  • Q2. Swap 2 numbers without using 3rd variable
  • Ans. 

    Swap 2 numbers without using 3rd variable

    • Use addition and subtraction

    • Use multiplication and division

    • Use bitwise XOR operation

  • Answered by AI
  • Q3. Fibonacci series with and without recursion
  • Ans. 

    Answering Fibonacci series with and without recursion

    • Fibonacci series is a sequence of numbers where each number is the sum of the two preceding ones

    • Recursion method involves calling the function within itself

    • Non-recursive method involves using a loop to calculate the series

    • Recursive method is slower and can cause stack overflow for large inputs

    • Non-recursive method is faster and more efficient for large inputs

  • Answered by AI
  • Q4. Print series of prime numbers
  • Ans. 

    Print series of prime numbers

    • Start with 2 as the first prime number

    • Check if each number greater than 2 is divisible by any number less than it

    • If not, add it to the list of prime numbers

    • Continue until desired number of primes are found

  • Answered by AI
  • Q5. Basic Electronics questions because my branch was Electronics and Communication
  • Q6. SQL Query to outer join

Interview Preparation Tips

Interview preparation tips for other job seekers - Basic understanding of programming. Good knowledge of Data Structure and SQL will increase your chance in getting placed. Know what you write in your resume. Questions were asked mainly on this. Don't try to overexaggerate things. Keep it nice and simple and you will be good

Skills evaluated in this interview

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

Round 1 - Aptitude Test 

Communication skills

Round 2 - Technical 

(2 Questions)

  • Q1. Explain about college project.
  • Q2. And coding of python.

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare well and technology improve your skills
By learning coding properly.

I applied via Referral and was interviewed in Mar 2020. There were 4 interview rounds.

Interview Questionnaire 

3 Questions

  • Q1. What is Data Integrity?
  • Ans. 

    Data Integrity refers to the accuracy and consistency of data throughout its lifecycle.

    • Ensuring data is not corrupted or modified without authorization

    • Maintaining data accuracy and consistency through proper storage and retrieval

    • Preventing data loss or unauthorized access

    • Examples: checksums, encryption, access controls

  • Answered by AI
  • Q2. Gave an example and asked to produce that output with a query.
  • Q3. Questions like difference between union and union all. The function of cursor. Basic query tuning questions. Index, triggers etc

Interview Preparation Tips

Interview preparation tips for other job seekers - The interview happened during the lockdown period, so it was virtual Teams meeting. I had 2 technical rounds and one Managerial round. The interviewers were quite friendly and explained everything crystal clear. Since this was a SQL post, I would suggest you to get the basics intact and try practicing few queries.
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Referral and was interviewed in Dec 2024. There were 3 interview rounds.

Round 1 - Aptitude Test 

Topics on electronics and C programming

Round 2 - Technical 

(4 Questions)

  • Q1. Questions on simple python programs and electronics basics
  • Q2. Question on simple linked list
  • Q3. Program for fibonacci seq
  • Ans. 

    Program to generate Fibonacci sequence

    • Start with two initial numbers, 0 and 1

    • Add the previous two numbers to get the next number in the sequence

    • Repeat this process to generate the Fibonacci sequence

    • Example: 0, 1, 1, 2, 3, 5, 8, 13, ...

  • Answered by AI
  • Q4. Questions on mosfets
Round 3 - HR 

(1 Question)

  • Q1. Why you would like to join the company, and other questions

Interview Preparation Tips

Interview preparation tips for other job seekers - Good experience in the interview
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
5
Excellent
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
-

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

Round 1 - Technical 

(4 Questions)

  • Q1. Find longest palindromic substring in a given string.
  • Ans. 

    Use dynamic programming to find the longest palindromic substring in a given string.

    • Iterate through the string and expand around each character to find palindromes.

    • Store the length of the longest palindrome found so far.

    • Return the substring based on the start and end indices of the longest palindrome.

  • Answered by AI
  • Q2. How to serialize and deserialise a tree
  • Ans. 

    To serialize and deserialize a tree, use a recursive approach to traverse the tree and store the data in a suitable format.

    • Use pre-order traversal to serialize the tree by storing the node values in a list or string.

    • For deserialization, reconstruct the tree by recursively building nodes from the serialized data.

    • Consider using JSON or XML format for serialization to easily store and retrieve tree structure.

  • Answered by AI
  • Q3. Find if a given regex (containing ., * and lower case english chars) matches a given string.
  • Ans. 

    Use regex library to match given regex with string.

    • Use a regex library like re in Python to match the given regex with the string.

    • Check if the regex matches the string using the library functions.

    • Handle cases where the regex contains special characters like . and * appropriately.

  • Answered by AI
  • Q4. Explain about throttling and implement throttle function.
  • Ans. 

    Throttling is a technique used to control the rate of requests sent to a server.

    • Throttling helps prevent server overload by limiting the number of requests processed at a time.

    • Implementing a throttle function involves setting a maximum request rate and delaying excess requests.

    • Example: Implementing a throttle function in a web application to limit the number of API calls made to a third-party service.

    • Example: Throttlin...

  • Answered by AI
Round 2 - Technical 

(4 Questions)

  • Q1. Find squares of elements in a sorted array and return the sorted response.
  • Ans. 

    Sort the squares of elements in a sorted array and return the sorted response.

    • Iterate through the array and square each element.

    • Store the squared values in a new array.

    • Sort the new array and return it.

  • Answered by AI
  • Q2. Write a short promise example and implement your own promise
  • Ans. 

    A promise is a commitment to do something in the future, typically used for asynchronous operations in JavaScript.

    • Promises are used to handle asynchronous operations in JavaScript.

    • They represent a value that may be available now, in the future, or never.

    • Promises have three states: pending, fulfilled, or rejected.

    • Example: new Promise((resolve, reject) => { setTimeout(() => resolve('Done!'), 1000); });

  • Answered by AI
  • Q3. Explain event loop, what are different types of queues in event loop
  • Ans. 

    Event loop is a mechanism that allows for asynchronous execution of code by managing the order of events in a single thread.

    • Event loop continuously checks the call stack for any functions that need to be executed, and processes them in a non-blocking manner.

    • Different types of queues in event loop include microtask queue (Promise callbacks), macrotask queue (setTimeout, setInterval callbacks), and animation frame queue

  • Answered by AI
  • Q4. What is virtual DOM and why its faster
  • Ans. 

    Virtual DOM is a lightweight copy of the actual DOM, used to improve performance by minimizing direct manipulation of the real DOM.

    • Virtual DOM is a concept used in frameworks like React to optimize rendering performance.

    • Changes are first made to the virtual DOM, which is then compared to the real DOM to identify the minimal updates needed.

    • This approach reduces the number of actual DOM manipulations, resulting in faster...

  • Answered by AI

Interview Preparation Tips

Topics to prepare for ServiceNow Senior Software Engineer interview:
  • React.Js
  • Javascript
  • DSA

Skills evaluated in this interview

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

(2 Questions)

  • Q1. Basic java fundamentals
  • Q2. Spring boot,sql
Round 2 - Technical 

(2 Questions)

  • Q1. Some technical questions from manager
  • Q2. Some challenges or scenario based questions
Round 3 - HR 

(2 Questions)

  • Q1. Salary discussion mostly
  • Q2. Benifts that they offer with TR

Dassault Systemes Interview FAQs

How many rounds are there in Dassault Systemes Software Development Engineer interview?
Dassault Systemes interview process usually has 4 rounds. The most common rounds in the Dassault Systemes interview process are One-on-one Round, Coding Test and Technical.
How to prepare for Dassault Systemes Software Development Engineer 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 Dassault Systemes. The most common topics and skills that interviewers at Dassault Systemes expect are Algorithms, Analytical, Communication Skills, Computer science and Concepts.
What are the top questions asked in Dassault Systemes Software Development Engineer interview?

Some of the top questions asked at the Dassault Systemes Software Development Engineer interview -

  1. polymorphism, overloading, inheritance in dep...read more
  2. java oops, static memb...read more
  3. puzzles, geome...read more

Tell us how to improve this page.

Dassault Systemes Software Development Engineer Salary
based on 61 salaries
₹6.8 L/yr - ₹18 L/yr
17% less than the average Software Development Engineer Salary in India
View more details

Dassault Systemes Software Development Engineer Reviews and Ratings

based on 14 reviews

3.7/5

Rating in categories

3.3

Skill development

4.0

Work-life balance

2.7

Salary

4.5

Job security

4.1

Company culture

2.9

Promotions

3.2

Work satisfaction

Explore 14 Reviews and Ratings
R&D Engineer
613 salaries
unlock blur

₹6 L/yr - ₹23 L/yr

Software Developer
347 salaries
unlock blur

₹5 L/yr - ₹20 L/yr

Software Engineering Specialist
332 salaries
unlock blur

₹7 L/yr - ₹18.7 L/yr

Software Engineer
283 salaries
unlock blur

₹6.1 L/yr - ₹17.3 L/yr

QA Engineer
141 salaries
unlock blur

₹4 L/yr - ₹13.5 L/yr

Explore more salaries
Compare Dassault Systemes with

Autodesk

4.3
Compare

Siemens

4.1
Compare

PTC

4.2
Compare

Ansys Software Private Limited

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