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

Clear (1)

Dassault Systemes Trainee Interview Questions and Answers

Updated 21 Aug 2024

Dassault Systemes Trainee Interview Experiences

1 interview found

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

Interview questions from similar companies

I applied via Naukri.com and was interviewed before Mar 2021. There were 2 interview rounds.

Round 1 - HR 

(4 Questions)

  • Q1. Share details of your previous job.
  • Q2. Why are you looking for a change?
  • Q3. Where do you see yourself in 5 years?
  • Q4. Tell me about yourself.
Round 2 - Coding Test 

Java program in data structure

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare core java well, data structures, oops
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 Feb 2024. There was 1 interview round.

Round 1 - Technical 

(1 Question)

  • Q1. Reverse the array basic questions like star patterns abstraction inheritance polymorphism etc
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
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 Resume tips
Round 2 - Technical 

(1 Question)

  • Q1. Java and spring boot
Round 3 - Technical 

(1 Question)

  • Q1. Agile and previous project
Round 4 - HR 

(1 Question)

  • Q1. Hr discussion and about CTC
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via Campus Placement and was interviewed before Sep 2023. There were 3 interview rounds.

Round 1 - Coding Test 

BST formation code in java

Round 2 - One-on-one 

(2 Questions)

  • Q1. Multi Threading consumer producer
  • Q2. User Defined Exceptions
Round 3 - HR 

(2 Questions)

  • Q1. Scenario based question
  • Q2. Work Life Balance

Interview Preparation Tips

Interview preparation tips for other job seekers - NA
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via LinkedIn and was interviewed in May 2024. There were 2 interview rounds.

Round 1 - Coding Test 

Asked about introduction and then few coding questions

Round 2 - Technical 

(2 Questions)

  • Q1. Given a code, what will be the output of this?
  • Ans. 

    The output of the code will be the sum of the elements in the given array.

    • The code likely involves iterating through the array and adding up the elements.

    • Make sure to handle edge cases like empty arrays or arrays with negative numbers.

    • Example: If the array is [1, 2, 3], the output will be 6.

  • Answered by AI
  • Q2. What is a hashMap and difference between HashMap and concurrentHashMap
  • Ans. 

    HashMap is a data structure in Java that stores key-value pairs. ConcurrentHashMap is a thread-safe version of HashMap.

    • HashMap is not thread-safe, while ConcurrentHashMap is thread-safe.

    • ConcurrentHashMap allows concurrent read and write operations without the need for external synchronization.

    • HashMap allows null keys and values, while ConcurrentHashMap does not allow null keys or values.

  • Answered by AI

Skills evaluated in this interview

Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - One-on-one 

(2 Questions)

  • Q1. Min stack write code with full operation
  • Ans. 

    A min stack is a stack data structure that supports the usual push and pop operations, along with an additional operation to retrieve the minimum element in constant time.

    • Create a stack to store the elements and another stack to store the minimum values encountered so far.

    • When pushing an element, check if it is smaller than the current minimum. If so, push it onto the minimum stack.

    • When popping an element, check if it ...

  • Answered by AI
  • Q2. Graph and sql ,concept problem
Round 2 - One-on-one 

(2 Questions)

  • Q1. Merge Sort based tricky ques
  • Q2. Island problem leetcode

Skills evaluated in this interview

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

I applied via Approached by Company and was interviewed before Sep 2022. There were 3 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 Resume tips
Round 2 - Technical 

(2 Questions)

  • Q1. Technical round
  • Q2. Immutable class,wrapper classes,create own immutable class,singleton and factory pattern,how to make class threadsafe,demon thread,garbage collection,difference between comparator and comparable,hashcode e...
Round 3 - HR 

(1 Question)

  • Q1. This was HR cum little technical round.
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via IBM careers and was interviewed in Nov 2024. There were 2 interview rounds.

Round 1 - Coding Test 

Hacker rank 2 Questions to solve

Round 2 - Technical 

(2 Questions)

  • Q1. Find the middle node in linked list and remove it
  • Q2. Stream API Questions
Interview experience
3
Average
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
No response

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

Round 1 - One-on-one 

(3 Questions)

  • Q1. Difference between hashmap and hash table
  • Ans. 

    HashMap is non-synchronized and allows null values, while HashTable is synchronized and does not allow null values.

    • HashMap is non-synchronized, meaning it is not thread-safe, while HashTable is synchronized and thread-safe.

    • HashMap allows null values for both keys and values, while HashTable does not allow null keys or values.

    • HashMap is generally preferred for non-thread-safe applications, while HashTable is used in mul

  • Answered by AI
  • Q2. Static block related questions
  • Q3. Arraylist and linkedlist question

Skills evaluated in this interview

Contribute & help others!
anonymous
You can choose to be anonymous

Dassault Systemes Interview FAQs

How many rounds are there in Dassault Systemes Trainee interview?
Dassault Systemes interview process usually has 2 rounds. The most common rounds in the Dassault Systemes interview process are Aptitude Test and One-on-one Round.
What are the top questions asked in Dassault Systemes Trainee interview?

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

  1. Which airfoil in a...read more
  2. Code for fibinocci ser...read more

Recently Viewed

PHOTOS

InsuranceDekho

3 office photos

LIST OF COMPANIES

Credit Bajaar

Overview

REVIEWS

Sun Pharmaceutical Industries

No Reviews

INTERVIEWS

Nagpur Metro Rail Project

No Interviews

INTERVIEWS

Onion Insights

No Interviews

SALARIES

Sun Pharmaceutical Industries

SALARIES

Sun Pharmaceutical Industries

No Salaries

INTERVIEWS

Red Hat

No Interviews

INTERVIEWS

Nyx-medical Solutions

No Interviews

DESIGNATION

Tell us how to improve this page.

Dassault Systemes Trainee Interview Process

based on 1 interview

Interview experience

3
  
Average
View more

Trainee Interview Questions from Similar Companies

IBM Trainee Interview Questions
4.0
 • 3 Interviews
Zoho Trainee Interview Questions
4.3
 • 2 Interviews
View all

Dassault Systemes Trainee Reviews and Ratings

based on 1 review

5.0/5

Rating in categories

5.0

Skill development

5.0

Work-life balance

4.0

Salary

5.0

Job security

5.0

Company culture

5.0

Promotions

5.0

Work satisfaction

Explore 1 Review and Rating
R&D Engineer
606 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Software Engineering Specialist
358 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Software Developer
350 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Software Engineer
288 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

QA Engineer
135 salaries
unlock blur

₹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
Rate your experience using AmbitionBox
Terrible
Terrible
Poor
Poor
Average
Average
Good
Good
Excellent
Excellent