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 18 Feb 2025

Top Dassault Systemes Interview Questions and Answers

View all 128 questions

Dassault Systemes Interview Experiences

Popular Designations

160 interviews found

QA Engineer Interview Questions & Answers

user image Anonymous

posted on 11 May 2024

Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(8 Questions)

  • Q1. Java and oops concepts- this, super keyword, regression testing ,manual testing questions
  • Q2. Oops concepts used in framework
  • Ans. 

    Object-oriented programming concepts used in framework design

    • Inheritance: Allows classes to inherit attributes and methods from other classes

    • Encapsulation: Bundling data and methods that operate on the data into a single unit

    • Polymorphism: Ability to present the same interface for different data types

    • Abstraction: Hiding the complex implementation details and showing only the necessary features

  • Answered by AI
  • Q3. How much you rate yourself in java write java programs 1-Interchange array elements 2- occurance of character's in string 3- remove duplicates from given string 4- Find square root
  • Q4. Scenarios based questions 1- questions were based on manual testing, automatio challenges, raising bugs
  • Q5. Will defenitly ask to find xpath Difference between rel and abs xpath
  • Q6. How to select dropdown in selenium
  • Ans. 

    To select a dropdown in Selenium, use the Select class and its methods like selectByVisibleText, selectByValue, or selectByIndex.

    • Use the Select class from org.openqa.selenium.support.ui package

    • Identify the dropdown element using findElement method

    • Create a new Select object by passing the dropdown element as a parameter

    • Use selectByVisibleText, selectByValue, or selectByIndex methods to choose an option

  • Answered by AI
  • Q7. Diff between findelement vs findelements
  • Ans. 

    findelement is used to locate a single element on a webpage, while findelements is used to locate multiple elements on a webpage.

    • findelement returns the first matching element found on the webpage

    • findelements returns a list of all matching elements found on the webpage

    • findelement is used when only one element needs to be located, like a unique identifier

    • findelements is used when multiple elements need to be located, li

  • Answered by AI
  • Q8. Main method in java ,whether it can be overloaded , overrided? why it cannot be overrided?
  • Ans. 

    The main method in Java can be overloaded but not overridden.

    • Main method can be overloaded by defining multiple main methods with different parameters.

    • Overloading allows multiple methods with the same name but different parameters.

    • Main method cannot be overridden because it is a static method and static methods cannot be overridden.

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare python/java (whatever your comfortable) questions, with oops concepts
Manual testing FAQ
selenium FAQ
will defenitly ask to write code- prepare mainly on strings and arrays simple programs[ reverse, palindrome, array elements interchange, remove duplicates of string, char occurance in string]

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 (7)
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(2 Questions)

  • Q1. Tell me something about Oops concepts
  • Ans. 

    Oops concepts refer to Object-Oriented Programming principles such as Inheritance, Encapsulation, Polymorphism, and Abstraction.

    • Inheritance: Allows a class to inherit properties and behavior from another class.

    • Encapsulation: Bundling data and methods that operate on the data into a single unit.

    • Polymorphism: Ability to present the same interface for different data types.

    • Abstraction: Hiding the complex implementation det

  • Answered by AI
  • Q2. What is the difference between Abstract class and Interface
  • Ans. 

    Abstract class can have both abstract and non-abstract methods, while Interface can only have abstract methods.

    • Abstract class can have constructors, fields, and methods, while Interface cannot have any implementation.

    • A class can implement multiple interfaces but can only inherit from one abstract class.

    • Abstract classes are used to provide a common base for multiple classes, while Interfaces are used to define a contrac...

  • Answered by AI

Skills evaluated in this interview

Automation Test Specialist Interview Questions asked at other Companies

Q1. What is the difference between Abstract class and Interface
View answer (1)
Interview experience
3
Average
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via Naukri.com and was interviewed in Aug 2024. There were 2 interview rounds.

Round 1 - Aptitude Test 

Aptitude round consisted of 60 questions in 60 minutes

Round 2 - Technical 

(2 Questions)

  • Q1. Interview duration was 1 hour 10 minutes
  • Q2. General testing process

Test Engineer Interview Questions asked at other Companies

Q1. 1. What is the frame work u have worked and explain the framework with folder structure? 2. purely based on testing, different testing types like functional and non functional tests 3. real time scenarios like last min bugs before release? ... read more
View answer (4)

Quality Specialist Interview Questions & Answers

user image Amey Pramod Joshi

posted on 15 Jan 2025

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

(1 Question)

  • Q1. Explain your current project

Quality Specialist Interview Questions asked at other Companies

Q1. Do you know about excel? What is Vlookup and how to use it
View answer (1)

Dassault Systemes interview questions for popular designations

 R&D Engineer

 (22)

 Software Developer

 (18)

 Software Engineer

 (17)

 QA Engineer

 (7)

 Software Engineering Specialist

 (5)

 Java Developer

 (4)

 Senior Software Engineer

 (4)

 Research and Development

 (3)

Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
Selected Selected
Round 1 - Technical 

(2 Questions)

  • Q1. Star pattern questions
  • Q2. Hashing implementation

Senior Sdet Engineer Interview Questions asked at other Companies

Q1. Optimize an existing system. The system currently makes an API call and stores data in its memory. When it tries to serve a request from another component it refers to the memory location by searching the entire memory.
View answer (1)

Get interview-ready with Top Dassault Systemes Interview Questions

Software Developer Interview Questions & Answers

user image Nisha Sankapal

posted on 16 Dec 2024

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

I applied via Naukri.com and was interviewed in Nov 2024. There was 1 interview round.

Round 1 - Technical 

(1 Question)

  • Q1. Angular all Basic

Top Dassault Systemes Software Developer Interview Questions and Answers

Q1. 1. Implement 4x4 matrix multiplication with operator overloading in cpp. 2. Bitwise XOR operation of two numbers
View answer (1)

Software Developer Interview Questions asked at other Companies

Q1. Maximum Subarray SumGiven an array of numbers, find the maximum sum of any contiguous subarray of the array. For example, given the array [34, -50, 42, 14, -5, 86], the maximum sum would be 137, since we would take elements 42, 14, -5, and ... read more
View answer (39)

Jobs at Dassault Systemes

View all
Interview experience
3
Average
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
No response

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

Round 1 - Technical 

(2 Questions)

  • Q1. Write a program to increase the version of a file
  • Ans. 

    Program to increase the version of a file

    • Read the current version of the file

    • Increment the version number

    • Write the updated version back to the file

  • Answered by AI
  • Q2. Write a program to check the highest value in an array.
  • Ans. 

    Program to find the highest value in an array of strings.

    • Iterate through the array and compare each element to find the highest value.

    • Use a variable to keep track of the highest value found so far.

    • Return the highest value at the end of the iteration.

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Keep learning.

Build and Release Engineer Interview Questions asked at other Companies

Q1. Write a program based on function calling method in shell scripting
View answer (1)

Trainee Interview Questions & Answers

user image Anonymous

posted on 21 Aug 2024

Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Aptitude Test 

Drawings lines according to given instructions

Round 2 - One-on-one 

(2 Questions)

  • Q1. Which airfoil in a380
  • Ans. 

    The airfoil used in the A380 is the supercritical airfoil.

    • The supercritical airfoil is designed to delay the onset of wave drag at transonic speeds.

    • It is commonly used in modern commercial aircraft like the A380 for improved aerodynamic performance.

    • The supercritical airfoil features a flattened upper surface to reduce drag and increase lift.

    • It allows the A380 to achieve high cruising speeds efficiently and smoothly.

  • Answered by AI
  • Q2. Code for fibinocci series
  • Ans. 

    Fibonacci series code generates a sequence where each number is the sum of the two preceding ones.

    • Start with two initial numbers, usually 0 and 1

    • Use a loop to calculate the next number by adding the previous two numbers

    • Continue the loop until reaching the desired length of the series

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Patience

Skills evaluated in this interview

Trainee Interview Questions asked at other Companies

Q1. Ques1: There is a big file of words which is dynamically changing. We are continuously adding some words into it. How would you keep track of top 10 trending words at each moment? Ques2:Write a function that returns the length of the longes... read more
View answer (2)
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(1 Question)

  • Q1. Questions on C++ & CAA were asked
Round 2 - HR 

(1 Question)

  • Q1. Managerial round, Puzzle questions were asked

Software Engineering Specialist Interview Questions asked at other Companies

Q1. Explain Python Data Structures and advantages and some differences in each
View answer (2)
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
6-8 weeks
Result
No response

I was interviewed in Jun 2024.

Round 1 - Coding Test 

Java Coding Questions based on ArrayList, HashMap, etc.

Round 2 - Coding Test 

Count distinct elements in given String.

Round 3 - Behavioral 

(2 Questions)

  • Q1. Current Project architecture.
  • Ans. 

    Our current project architecture follows a microservices design pattern with separate services for different functionalities.

    • Microservices architecture with separate services for different functionalities

    • Use of RESTful APIs for communication between services

    • Containerization using Docker for easy deployment and scalability

    • Implementation of service discovery and load balancing with tools like Kubernetes

    • Use of message bro

  • Answered by AI
  • Q2. My role in project
  • Ans. 

    My role in the project was to develop and maintain Java applications to meet the project requirements.

    • Developing Java applications based on project requirements

    • Maintaining and updating existing Java code

    • Collaborating with team members to ensure project success

  • Answered by AI

Java Developer Interview Questions asked at other Companies

Q1. Sort 0 1You have been given an integer array/list(ARR) of size N that contains only integers, 0 and 1. Write a function to sort this array/list. Think of a solution which scans the array/list only once and don't require use of an extra arra... read more
View answer (4)

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.

Tell us how to improve this page.

Dassault Systemes Interview Process

based on 125 interviews

Interview experience

4
  
Good
View more

Interview Questions from Similar Companies

IBM Interview Questions
4.0
 • 2.4k Interviews
Oracle Interview Questions
3.7
 • 902 Interviews
Siemens Interview Questions
4.1
 • 429 Interviews
SAP Interview Questions
4.2
 • 308 Interviews
PTC Interview Questions
4.2
 • 62 Interviews
Autodesk Interview Questions
4.3
 • 39 Interviews
Trimble Interview Questions
4.2
 • 26 Interviews
Bentley Systems Interview Questions
4.3
 • 20 Interviews
View all

Dassault Systemes Reviews and Ratings

based on 938 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 938 Reviews and Ratings
Sap Bods Developer

Pune

2-4 Yrs

₹ 10-15 LPA

Explore more jobs
R&D Engineer
606 salaries
unlock blur

₹6.8 L/yr - ₹24.5 L/yr

Software Engineering Specialist
358 salaries
unlock blur

₹7 L/yr - ₹18.8 L/yr

Software Developer
351 salaries
unlock blur

₹5.5 L/yr - ₹20 L/yr

Software Engineer
284 salaries
unlock blur

₹5.5 L/yr - ₹18 L/yr

QA Engineer
135 salaries
unlock blur

₹4 L/yr - ₹13.5 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