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 Software Engineering Specialist Interview Questions and Answers

Updated 24 Aug 2024

Dassault Systemes Software Engineering Specialist Interview Experiences

5 interviews found

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
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(1 Question)

  • Q1. Questions related to the core java.
Round 2 - Technical 

(1 Question)

  • Q1. Coding Round, Array and String Questions

Interview Preparation Tips

Interview preparation tips for other job seekers - Stick to the basic of core java, and logical building that is the Key.

Software Engineering Specialist Interview Questions Asked at Other Companies

asked in LTIMindtree
Q1. Explain Python Data Structures and advantages and some difference ... read more
asked in LTIMindtree
Q2. List - Stores all types of elements Array - Stores one type of el ... read more
asked in LTIMindtree
Q3. What are analytical functions, what is the difference between ran ... read more
asked in LTIMindtree
Q4. What is the word count problem, and how can it be solved using Ja ... read more
asked in BT Group
Q5. Design a system which is flowing lacs of records per day consider ... read more
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Naukri.com and was interviewed before May 2023. There were 2 interview rounds.

Round 1 - Coding Test 

Duration : 1 Hour,
Topics : JS, HTML, CSS,
Coding : 2 Questions

Round 2 - Technical 

(3 Questions)

  • Q1. JS Fundamentals
  • Q2. What is hoisting?
  • Ans. 

    Hoisting is a JavaScript behavior where variable and function declarations are moved to the top of their containing scope during the compilation phase.

    • In JavaScript, variable and function declarations are hoisted to the top of their scope.

    • This means that you can use a variable or function before it is declared in the code.

    • However, only the declarations are hoisted, not the initializations.

  • Answered by AI
  • Q3. How to center a div ?
  • Ans. 

    To center a div, use CSS properties like margin, display, and text-align.

    • Set margin to auto on left and right sides

    • Set display property to 'block' or 'inline-block'

    • Set text-align to center if div contains text

  • Answered by AI

Skills evaluated in this interview

Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I was interviewed before Jul 2023.

Round 1 - Technical 

(1 Question)

  • Q1. Write the implementation class for ArrayList
  • Ans. 

    Implementation class for ArrayList in Java

    • Create a class named ArrayList with a private array to store elements

    • Implement methods like add, remove, get, size, etc.

    • Handle resizing of the array when needed

    • Use generics to allow storing any type of objects

    • Here is a simple example: public class ArrayList { private Object[] array; ... }

Answered by AI

Skills evaluated in this interview

Dassault Systemes interview questions for designations

 Technical Specialist

 (1)

 Automation Test Specialist

 (1)

 Software Developer

 (18)

 Software Engineer

 (17)

 Quality Specialist

 (1)

 Operations Specialist

 (1)

 Credit Specialist

 (1)

 Senior Software Engineer

 (4)

Interview experience
4
Good
Difficulty level
Moderate
Process Duration
4-6 weeks
Result
Selected Selected

I applied via Referral and was interviewed before Jan 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 tips
Round 2 - Technical 

(1 Question)

  • Q1. Technical questions like years of experience, technologies you works
Round 3 - HR 

(1 Question)

  • Q1. General HR questions

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare technologies written in CV well before interview.

Interview questions from similar companies

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

I applied via Naukri.com and was interviewed before Aug 2023. There were 4 interview rounds.

Round 1 - Assignment 

Simple CRUD application design

Round 2 - One-on-one 

(1 Question)

  • Q1. Java, Spring,Spring boot, Microservices, etc
Round 3 - One-on-one 

(2 Questions)

  • Q1. Managerial qurstions
  • Q2. Behavioural questions
Round 4 - HR 

(1 Question)

  • Q1. Salary Negotioation
Interview experience
5
Excellent
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Not Selected

I was interviewed in Dec 2024.

Round 1 - Aptitude Test 

A standardized assessment that measures a person's skills, cognitive abilities, and potential to perform in a specific role.

Round 2 - Technical 

(4 Questions)

  • Q1. Technical interview questions at Automatic Data Processing (ADP) may cover topics such as programming, databases, and software development.
  • Q2. They may also ask about problem-solving and how you approach challenging tasks.
  • Q3. Emphasize a structured method that involves clearly defining the issue, gathering relevant information, brainstorming potential solutions, evaluating options carefully, implementing the chosen solution, an...
  • Q4. Data structures, algorithms, SQL querying, object-oriented programming principles, software development lifecycle, database concepts (relational vs. NoSQL), coding challenges in relevant languages (like Py...
Round 3 - HR 

(2 Questions)

  • Q1. May ask about your background, skills, and how you handle challenges
  • Q2. Background questions Tell me about yourself, What are your career goals, What are your strengths and weaknesses, What do you know about ADP, and Why do you want to work at ADP.

Interview Preparation Tips

Interview preparation tips for other job seekers - focus on tailoring your resume and cover letter to each role, thoroughly researching companies and potential interview questions, actively networking, attending career fairs, practicing your interview skills, following up after interviews, and maintaining a strong online presence on platforms like LinkedIn.
Interview experience
3
Average
Difficulty level
Moderate
Process Duration
-
Result
Selected Selected
Round 1 - Technical 

(1 Question)

  • Q1. JavaScript , coding questions
Round 2 - Technical 

(1 Question)

  • Q1. Coding problem, JavaScript and nodejs question
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
5
Excellent
Difficulty level
-
Process Duration
-
Result
Selected Selected
Round 1 - Technical 

(1 Question)

  • Q1. Reverse the linked list.
Round 2 - Technical 

(1 Question)

  • Q1. Internel working of Hashmap
Round 3 - HR 

(1 Question)

  • Q1. Salary Discussion

Dassault Systemes Interview FAQs

How many rounds are there in Dassault Systemes Software Engineering Specialist interview?
Dassault Systemes interview process usually has 2 rounds. The most common rounds in the Dassault Systemes interview process are Technical, HR and Resume Shortlist.
How to prepare for Dassault Systemes Software Engineering Specialist 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 C++, Javascript, 3D, Agile and Analytical skills.
What are the top questions asked in Dassault Systemes Software Engineering Specialist interview?

Some of the top questions asked at the Dassault Systemes Software Engineering Specialist interview -

  1. How to center a di...read more
  2. Write the implementation class for ArrayL...read more
  3. What is hoisti...read more

Tell us how to improve this page.

Dassault Systemes Software Engineering Specialist Interview Process

based on 7 interviews

2 Interview rounds

  • Technical Round - 1
  • Technical Round - 2
View more

Interview Questions from Similar Companies

IBM Interview Questions
4.0
 • 2.3k Interviews
Oracle Interview Questions
3.7
 • 846 Interviews
Amdocs Interview Questions
3.7
 • 512 Interviews
Zoho Interview Questions
4.3
 • 505 Interviews
Siemens Interview Questions
4.1
 • 416 Interviews
SAP Interview Questions
4.2
 • 283 Interviews
Adobe Interview Questions
3.9
 • 233 Interviews
Salesforce Interview Questions
4.0
 • 221 Interviews
View all
Dassault Systemes Software Engineering Specialist Salary
based on 358 salaries
₹7 L/yr - ₹18.8 L/yr
33% less than the average Software Engineering Specialist Salary in India
View more details

Dassault Systemes Software Engineering Specialist Reviews and Ratings

based on 52 reviews

4.2/5

Rating in categories

3.5

Skill development

4.6

Work-life balance

3.3

Salary

4.8

Job security

4.4

Company culture

3.3

Promotions

3.8

Work satisfaction

Explore 52 Reviews and Ratings
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