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

Filter interviews by

Dassault Systemes Interview Questions, Process, and Tips

Updated 4 Mar 2025

Top Dassault Systemes Interview Questions and Answers

View all 128 questions

Dassault Systemes Interview Experiences

Popular Designations

161 interviews found

R&D Engineer Interview Questions & Answers

user image Anonymous

posted on 31 Mar 2023

Interview experience
3
Average
Difficulty level
Hard
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via LinkedIn and was interviewed before Mar 2022. There were 2 interview rounds.

Round 1 - Aptitude Test 

Half hour aptitude test - simple questions but 45 of them - so have to be quick

Round 2 - One-on-one 

(6 Questions)

  • Q1. Suppose a customer gets a crash in our software and that crash dump comes to you for analysis - what would be your strategy to analyze the dump?
  • Ans. 

    I would start by identifying the root cause of the crash and then work on finding a solution to fix it.

    • First, I would analyze the crash dump to identify the error message or code that caused the crash.

    • Then, I would review the software code to understand the context of the error and identify any potential bugs or issues.

    • I would also check for any known issues or bugs that have been reported by other customers.

    • Once I hav...

  • Answered by AI
  • Q2. What kind of management style do you expect?
  • Ans. 

    I expect a collaborative management style that encourages open communication and empowers team members.

    • Collaborative management style

    • Open communication

    • Empowerment of team members

  • Answered by AI
  • Q3. How do you resolve conflicts?
  • Ans. 

    I approach conflicts by actively listening, identifying the root cause, and finding a mutually beneficial solution.

    • Listen to all parties involved and understand their perspectives

    • Identify the root cause of the conflict

    • Brainstorm potential solutions with all parties involved

    • Find a mutually beneficial solution that addresses the root cause

    • Communicate the solution clearly and ensure all parties are satisfied

  • Answered by AI
  • Q4. What kind of projects would inspire you to work here?(he wanted my perspective on what I thought the job would be like)
  • Q5. Breadth first search, longest common subsequence, output of code written on paper
  • Ans. 

    Question on breadth first search, longest common subsequence, and output of code written on paper.

    • Breadth first search is a graph traversal algorithm that visits all the vertices of a graph in breadth-first order.

    • Longest common subsequence is the longest subsequence common to all sequences in a set of sequences.

    • Output of code written on paper refers to writing code on paper and then analyzing the output without actuall

  • Answered by AI
  • Q6. C++ inheritance, friend classes, virtual functions, should destructors be virtual(why/why not) etc

Interview Preparation Tips

Topics to prepare for Dassault Systemes R&D Engineer interview:
  • Data Structures
  • C++
  • OOPS
  • inheritance
Interview preparation tips for other job seekers - 2nd round was directly with director of engineering. It lasted from 10am - 4pm. Except bathroom breaks none of us stepped out of his cabin, not even for lunch.
He basically took all of my 'Janam kundli' from school life to adulthood - to guage the kind of person I was, asked about my technical interests, what interested me about the job, my experience so far, asked me hypothetical questions like -
-suppose a customer gets a crash in our software and that crash dump comes to you for analysis, what would be your strategy to analyze the bug?
-the callstack in the dump contains all other kind of info - like hardware/driver version, stacks of other threads etc -- how will you utilize this information to find root cause of crash?
-what kind of management style would you expect?
-how do you resolve conflicts? both in code and people.
-what kind of projects would inspire you to work here (he wanted my perspective on what I thought about job expectations)

I hadn't worked in such a large company before with so many moving parts so I couldn't really answer most of the above questions(the're based on experience) but it gave me much to think about. I tried to be as forthcoming as one can be during such situations, and I guess he liked that.

He also asked a bunch of technical questions - showed me a piece of code and said what would be its output, I said it won't compile. He repeated back twice 'are you sure' that made me doubt myself somewhat but I stuck by my logical conclusion. He didn't reveal whether I was right or wrong. Few questions to test understanding of inheritance in C++, virtual functions, recursion vs iteration.

I'm rating this interview experience as 3 because although I was selected, the opaque style of interviewing with virtually no feedback from him was quite frankly discouraging.

Skills evaluated in this interview

Top Dassault Systemes R&D Engineer Interview Questions and Answers

Q1. suppose a customer gets a crash in our software and that crash dump comes to you for analysis - what would be your strategy to analyze the dump?
View answer (1)

R&D Engineer Interview Questions asked at other Companies

Q1. give some ideal characteristics of opamp. what is CMRR. what is the practical significance of CMRR. why the input impedance must be large. what is impedance matching, why it has to be done. what is MPTT and its advantages. explain about D-A... read more
View answer (1)
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.

Top Dassault Systemes Software Engineer Interview Questions and Answers

Q1. C++ Program to reverse a string
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 (196)
Dassault Systemes Interview Questions and Answers for Freshers
illustration image
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(9 Questions)

  • Q1. Introduction, roles and responsibilities
  • Q2. Deep copy shallow copy
  • Q3. Method Overloading overriding
  • Q4. Constuctor and its types
  • Ans. 

    Constructors are special methods in a class used to initialize objects. There are default, parameterized, copy, and static constructors.

    • Constructors have the same name as the class and do not have a return type.

    • Default constructors are automatically created by the compiler if no constructor is defined.

    • Parameterized constructors accept parameters to initialize object properties.

    • Copy constructors create a new object as a...

  • Answered by AI
  • Q5. Varags (variable length arguments)
  • Q6. Find element find elements return types of it if no elements found
  • Ans. 

    findElements method in Selenium returns a list of WebElements or an empty list if no elements are found.

    • findElements method returns a list of WebElements

    • If no elements are found, it returns an empty list

    • Return type is List

  • Answered by AI
  • Q7. Webdriver what is it
  • Ans. 

    Webdriver is a tool used for automating web application testing.

    • Webdriver is a popular automation tool used for testing web applications.

    • It allows testers to automate interactions with a web browser.

    • Webdriver supports multiple programming languages such as Java, Python, and C#.

    • It can simulate user interactions like clicking buttons, entering text, and navigating through pages.

    • Webdriver is commonly used in QA automation...

  • Answered by AI
  • Q8. Find duplicate numbers and its count from given list explain logic
  • Ans. 

    Logic to find duplicate numbers and their count in a given list.

    • Iterate through the list and store each number in a hashmap with its count

    • If a number is already in the hashmap, increment its count

    • After iterating, check the hashmap for numbers with count greater than 1 to find duplicates

  • Answered by AI
  • Q9. Factorial using recursion
  • Ans. 

    Factorial using recursion is a mathematical function that calculates the product of all positive integers up to a given number.

    • Define a function that takes an integer parameter n

    • Base case: if n is 0, return 1

    • Recursive case: return n multiplied by the factorial of n-1

    • Example: factorial(5) = 5 * factorial(4) = 5 * 4 * factorial(3) = 5 * 4 * 3 * factorial(2) = 5 * 4 * 3 * 2 * factorial(1) = 5 * 4 * 3 * 2 * 1 = 120

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - For me Mostly 90% they asked java related questions.
Introduction, roles responsibilities.
Deep copy shallow copy
Method Overloading overriding
Constuctor
Varags
Find element & find elements difference and return types(if elements present and if not)
2 coding questions
1 repeatetive numbers/duplicates and its count from the given list eg output 4,2(4 is number and found 2 times)
2 factorial of a number using recursion.

I don't want to fil this form all that's why including all questions asked in the feedback.

This was my first round and no response till now.
Interview taken on 10 Oct.

Skills evaluated in this interview

Qa Automation Testing Engineer Interview Questions asked at other Companies

Q1. selenium: what are selenium components, what are the different locators in selenium, what is selenium web driver, write a xpath for a given element on a web page
View answer (5)
Interview experience
2
Poor
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via LinkedIn and was interviewed in Dec 2024. There was 1 interview round.

Round 1 - One-on-one 

(7 Questions)

  • Q1. What are the golden rules of accounting?
  • Ans. 

    The golden rules of accounting are basic principles that guide the process of recording financial transactions.

    • The golden rules include the principles of debit and credit, which are used to record transactions accurately.

    • Debit what comes in and credit what goes out is one of the golden rules of accounting.

    • Another golden rule is debit the receiver and credit the giver.

    • The final golden rule is debit all expenses and loss

  • Answered by AI
  • Q2. What is the general accounting entry for prepaid taxes?
  • Ans. 

    Prepaid taxes are recorded as an asset on the balance sheet until they are actually paid.

    • Prepaid taxes are initially recorded as a debit to the Prepaid Taxes account and a credit to the Cash account.

    • When the taxes are actually paid, the entry is a debit to the Taxes Expense account and a credit to the Prepaid Taxes account.

    • The balance in the Prepaid Taxes account represents taxes that have been paid in advance but not

  • Answered by AI
  • Q3. What is budgeting?
  • Ans. 

    Budgeting is the process of creating a plan for how to spend money, taking into account income and expenses.

    • Budgeting involves setting financial goals and creating a roadmap to achieve them

    • It helps in tracking expenses, identifying areas for cost savings, and ensuring financial stability

    • Examples of budgeting tools include spreadsheets, budgeting apps, and financial planning software

  • Answered by AI
  • Q4. What is the difference between budgeting and forecasting?
  • Ans. 

    Budgeting involves setting a financial plan for a specific period, while forecasting predicts future financial outcomes based on current data and trends.

    • Budgeting is a detailed financial plan for a specific period, usually a year, outlining expected revenues and expenses.

    • Forecasting involves predicting future financial outcomes based on current data and trends, helping in decision-making and planning.

    • Budgeting is more ...

  • Answered by AI
  • Q5. What is the order to cash process?
  • Ans. 

    Order to cash process is the set of business processes involved in receiving and fulfilling customer orders.

    • Customer places an order

    • Order is processed and approved

    • Product is picked, packed, and shipped

    • Invoice is generated and sent to customer

    • Payment is received and recorded

  • Answered by AI
  • Q6. What is the process of bank reconciliation?
  • Ans. 

    Bank reconciliation is the process of comparing a company's records with those of the bank to ensure they match.

    • Gather bank statements and company records

    • Compare deposits, withdrawals, and fees between the two sets of records

    • Identify and investigate any discrepancies

    • Adjust the company's records to match the bank's records

    • Prepare a bank reconciliation statement to document the process

  • Answered by AI
  • Q7. What does a real account mean?
  • Ans. 

    A real account refers to assets, liabilities, and equity accounts on a company's balance sheet.

    • Real accounts are permanent accounts that are not closed at the end of an accounting period.

    • They include assets like cash, accounts receivable, inventory, property, plant, and equipment, as well as liabilities and equity.

    • Changes in real accounts are recorded on the balance sheet and do not affect the income statement.

    • Examples...

  • Answered by AI

Top Dassault Systemes Financial Planning and Analysis Analyst Interview Questions and Answers

Q1. What is the general accounting entry for prepaid taxes?
View answer (1)

Financial Planning and Analysis Analyst Interview Questions asked at other Companies

Q1. What do you know about financial planning and analysis
View answer (1)

Dassault Systemes interview questions for popular designations

 R&D Engineer

 (22)

 Software Engineer

 (18)

 Software Developer

 (18)

 QA Engineer

 (7)

 Software Engineering Specialist

 (5)

 Senior Software Engineer

 (4)

 Java Developer

 (4)

 Research and Development

 (3)

QA Engineer Interview Questions & Answers

user image Anonymous

posted on 5 Oct 2024

Interview experience
3
Average
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via Approached by Company and was interviewed in Sep 2024. There was 1 interview round.

Round 1 - Technical 

(9 Questions)

  • Q1. Tell me about your Project? what part you tested in your project?
  • Ans. 

    I worked on a project to develop a mobile application for tracking fitness goals and workouts.

    • Tested user authentication and registration processes

    • Performed functional testing on workout tracking features

    • Conducted regression testing after each new feature implementation

  • Answered by AI
  • Q2. What is Regression testing and what is regression defects?
  • Ans. 

    Regression testing is retesting of software to ensure that recent changes have not adversely affected existing features. Regression defects are bugs that reappear after changes.

    • Regression testing is performed to make sure that new code changes have not introduced any new bugs or caused existing functionalities to break.

    • It involves re-executing test cases that cover the impacted areas of the software.

    • Regression defects ...

  • Answered by AI
  • Q3. Scenario based question in that ask about the regression defects
  • Q4. Verification vs Validation?
  • Ans. 

    Verification ensures the product is built right, while validation ensures the right product is built.

    • Verification focuses on process, validation focuses on product

    • Verification answers 'Are we building the product right?'

    • Validation answers 'Are we building the right product?'

    • Verification is done before validation

  • Answered by AI
  • Q5. How frequently do you run the Regression Test?
  • Ans. 

    Regression tests are run after every significant code change or new feature implementation.

    • Regression tests are typically run after every significant code change or new feature implementation to ensure that existing functionalities are not affected.

    • The frequency of running regression tests may vary depending on the project timeline and release cycle.

    • In Agile development, regression tests are often run as part of the co...

  • Answered by AI
  • Q6. How to select 5 th dropdown option?
  • Ans. 

    To select the 5th dropdown option, locate the dropdown element and choose the 5th option.

    • Locate the dropdown element using its unique identifier or class name

    • Use a method like 'selectByIndex' or 'selectByVisibleText' to choose the 5th option

    • Verify that the correct option has been selected

  • Answered by AI
  • Q7. Find the xpath of "Google Search tab" & "Voice search button"?
  • Ans. 

    Use xpath to locate Google Search tab and Voice search button on the webpage.

    • For Google Search tab: //input[@name='btnK']

    • For Voice search button: //div[@aria-label='Search by voice']

  • Answered by AI
  • Q8. Write a java program for reverse string without pre defined method.
  • Ans. 

    Java program to reverse a string without using predefined methods.

    • Create a char array from the input string.

    • Use two pointers, one at the start and one at the end, to swap characters.

    • Continue swapping characters until the pointers meet in the middle.

  • Answered by AI
  • Q9. Which libraries use for the verifying test cases?
  • Ans. 

    Some common libraries used for verifying test cases are JUnit, TestNG, Selenium, and RestAssured.

    • JUnit is a popular Java testing framework for unit testing.

    • TestNG is another Java testing framework that supports parameterized and data-driven testing.

    • Selenium is a widely used tool for automating web browsers for testing purposes.

    • RestAssured is a Java library for testing RESTful APIs.

  • Answered by AI

Skills evaluated in this interview

Top Dassault Systemes QA Engineer Interview Questions and Answers

Q1. 7)how do you drive your data in automation , how do you validate whether your data is accurate and precise?
View answer (1)

QA Engineer Interview Questions asked at other Companies

Q1. 80 pairs of socks in a dark room, 40 black, 40 white, how many minimum number of socks need to be taken out to get 15 pairs of socks
View answer (9)

Get interview-ready with Top Dassault Systemes Interview Questions

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

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

Round 1 - Aptitude Test 

It included aptitude, technical and coding questions

Round 2 - Technical 

(2 Questions)

  • Q1. Questions on SQL(Joins)
  • Q2. Questions on arrays, substrings
Round 3 - HR 

(2 Questions)

  • Q1. Location preferred
  • Ans. 

    Remote work preferred, open to occasional travel

    • Remote work preferred

    • Open to occasional travel

    • Flexible with location

  • Answered by AI
  • Q2. Family background

Top Dassault Systemes Software Engineer Interview Questions and Answers

Q1. C++ Program to reverse a string
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 (196)

Jobs at Dassault Systemes

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

(1 Question)

  • Q1. Most related to Basic JavaScript Question
Round 2 - Technical 

(1 Question)

  • Q1. Managerial Round with one DSA question related to bits.

Research and Development Interview Questions asked at other Companies

Q1. Explain how you will place heat and light sensors in a room with glass facade on one side
View answer (7)
Interview experience
5
Excellent
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
-

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

Round 1 - Technical 

(3 Questions)

  • Q1. Bubble sort and array was given
  • Q2. Create binary tree
  • Ans. 

    A binary tree is a data structure where each node has at most two children.

    • Start by creating a Node class with left and right child pointers.

    • Implement methods to insert, search, and delete nodes in the tree.

    • Consider different traversal methods like inorder, preorder, and postorder.

  • Answered by AI
  • Q3. HightBuilding Pattern

Interview Preparation Tips

Interview preparation tips for other job seekers - just go through strivers videos

Skills evaluated in this interview

Top Dassault Systemes Software Developer Interview Questions and Answers

Q1. Implement C string and make custom string class. Why we use reference in copy constructor
View answer (1)

Software Developer Interview Questions asked at other Companies

Q1. Maximum Subarray Sum Problem Statement Given an array of integers, determine the maximum possible sum of any contiguous subarray within the array. Example: Input: array = [34, -50, 42, 14, -5, 86] Output: 137 Explanation: The maximum sum is... read more
View answer (42)
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected
Round 1 - Aptitude Test 

Basic to intermediate Question based on Maths

Round 2 - Technical 

(2 Questions)

  • Q1. Implement Linked List using stack
  • Ans. 

    Implement a Linked List using a stack data structure

    • Create a stack to store the elements of the linked list

    • Push new elements onto the stack when adding to the linked list

    • Pop elements from the stack when removing from the linked list

  • Answered by AI
  • Q2. Geometry based questions

Interview Preparation Tips

Interview preparation tips for other job seekers - Just be clear with the basics of Maths and C++(Language in JD). Interviewer would be your manager only so try to get the best out of them based on the question spun.

Skills evaluated in this interview

Top Dassault Systemes Software Engineer Interview Questions and Answers

Q1. C++ Program to reverse a string
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 (196)
Interview experience
3
Average
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via Campus Placement and was interviewed in Jul 2024. There were 2 interview rounds.

Round 1 - Aptitude Test 

58 question, basic aptitude with topics like ratio and proportion, 3d geometry.
3 coding questions with 5 mins each to solve, easy questions like given a list with duplicate elements return the same list with unique elements.

Round 2 - One-on-one 

(3 Questions)

  • Q1. How is a python list implemented
  • Ans. 

    A Python list is implemented as a dynamic array that can resize itself as needed.

    • Python lists are implemented as dynamic arrays, allowing for efficient insertion and deletion operations.

    • Lists in Python can hold elements of different data types.

    • Lists can be accessed using index values, starting from 0.

    • Example: my_list = [1, 'hello', True]

  • Answered by AI
  • Q2. Tell me about your internship
  • Ans. 

    I interned at a tech startup where I worked on developing a new mobile app.

    • Developed new features for the mobile app

    • Collaborated with the design team to improve user experience

    • Participated in code reviews and testing

    • Attended team meetings and brainstorming sessions

  • Answered by AI
  • Q3. Where do you see yourself in 5 years?
  • Ans. 

    In 5 years, I see myself as a senior software engineer leading a team of developers on innovative projects.

    • Leading a team of developers on innovative projects

    • Advancing to a senior software engineer role

    • Continuing to learn and grow in the field of software engineering

  • Answered by AI

Top Dassault Systemes Software Engineer Interview Questions and Answers

Q1. C++ Program to reverse a string
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 (196)
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
4-6 weeks
Result
Not Selected

I applied via Campus Placement and was interviewed in Aug 2024. There were 2 interview rounds.

Round 1 - Aptitude Test 

Aptitude questions was their and it was in particular time then coding question it also was with solve in particular time frame

Round 2 - Technical 

(2 Questions)

  • Q1. Resume based questions were asked
  • Q2. Puzzle-based question logical question

Top Dassault Systemes Software Engineer Interview Questions and Answers

Q1. C++ Program to reverse a string
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 (196)
Contribute & help others!
anonymous
You can choose to be anonymous

Dassault Systemes Interview FAQs

How many rounds are there in Dassault Systemes interview?
Dassault Systemes interview process usually has 2-3 rounds. The most common rounds in the Dassault Systemes interview process are Technical, Aptitude Test and Resume Shortlist.
How to prepare for Dassault Systemes 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 Javascript, Python, Java, Analytical and Communication Skills.
What are the top questions asked in Dassault Systemes interview?

Some of the top questions asked at the Dassault Systemes interview -

  1. suppose a customer gets a crash in our software and that crash dump comes to yo...read more
  2. 7)how do you drive your data in automation , how do you validate whether your d...read more
  3. 6)What do you do when your automation script fails , debug proce...read more
How long is the Dassault Systemes interview process?

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

Recently Viewed

INTERVIEWS

Meditab Software

No Interviews

INTERVIEWS

Imeg Engineering India

No Interviews

INTERVIEWS

Transaction Solution International India

No Interviews

INTERVIEWS

Meditab Software

No Interviews

INTERVIEWS

Dassault Systemes

No Interviews

INTERVIEWS

Meditab Software

No Interviews

INTERVIEWS

Dassault Systemes

No Interviews

INTERVIEWS

Imeg Engineering India

No Interviews

INTERVIEWS

Third Bridge

No Interviews

Tell us how to improve this page.

Dassault Systemes Interview Process

based on 126 interviews

Interview experience

4
  
Good
View more

Interview Questions from Similar Companies

IBM Interview Questions
4.0
 • 2.3k Interviews
Oracle Interview Questions
3.7
 • 846 Interviews
Siemens Interview Questions
4.1
 • 417 Interviews
SAP Interview Questions
4.2
 • 283 Interviews
PTC Interview Questions
4.2
 • 62 Interviews
Autodesk Interview Questions
4.2
 • 38 Interviews
Trimble Interview Questions
4.2
 • 26 Interviews
Bentley Systems Interview Questions
4.3
 • 20 Interviews
Hexagon AB Interview Questions
4.2
 • 1 Interview
View all

Dassault Systemes Reviews and Ratings

based on 942 reviews

4.0/5

Rating in categories

3.5

Skill development

4.3

Work-life balance

3.3

Salary

4.5

Job security

4.2

Company culture

3.1

Promotions

3.6

Work satisfaction

Explore 942 Reviews and Ratings
Sap Bods Developer

Pune

2-4 Yrs

₹ 10-15 LPA

Explore more jobs
R&D Engineer
606 salaries
unlock blur Lock Unlock

₹0 L/yr - ₹0 L/yr

Software Engineering Specialist
358 salaries
unlock blur Lock Unlock

₹0 L/yr - ₹0 L/yr

Software Developer
350 salaries
unlock blur Lock Unlock

₹0 L/yr - ₹0 L/yr

Software Engineer
288 salaries
unlock blur Lock Unlock

₹0 L/yr - ₹0 L/yr

QA Engineer
135 salaries
unlock blur Lock Unlock

₹0 L/yr - ₹0 L/yr

Explore more salaries
Compare Dassault Systemes with

Autodesk

4.2
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