Upload Button Icon Add office photos

Filter interviews by

Dassault Systemes Global Services Software Developer Trainee Interview Questions and Answers

Updated 14 Sep 2024

Dassault Systemes Global Services Software Developer Trainee Interview Experiences

1 interview found

Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
-

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

Round 1 - Aptitude Test 

Timer based questions. Each question needed to be answered in 40 s. Question were medium if you have practiced will be able to solve.
Explore Google YouTube for insights

Round 2 - Aptitude Test 

This was tat round, has negative marking of 0.5 marks and aptitude had negative of 0.25. timer based. Medium to hard level.

Round 3 - Coding Test 

4 question with timers around 5-10 mins. Easy to medium level . Easily solved if efficient in basic coding.
I got question based on list, array

Interview questions from similar companies

I applied via Company Website and was interviewed in Sep 2020. There were 5 interview rounds.

Interview Questionnaire 

1 Question

  • Q1. Coding and solution architecture

Interview Preparation Tips

Interview preparation tips for other job seekers - It’s one good interview worth to attend

Interview Preparation Tips

Round: PRE placement
Experience: Was accepted through the pre placement offer after a satisfactory internship during the summer.
There was a small test after the internship. Work done in the internship in co-ordination with mentor, employees and manager has more weight-age.

General Tips: Just brush up on your fundamentals. The questions asked will just be a direct or indirect applications of what you have learnt. Good programming practice is also needed.
Good knowledge about Operating systems, Data structures, Networking and Programming is what they generally look for while hiring.
A good internship project helped in securing the PPO.
Skills:
College Name: NIT Surathkal

I applied via Company Website and was interviewed in Jan 2022. There were 5 interview rounds.

Round 1 - Coding Test 

- 30 MCQ questions mostly related to HTML, JS & C#
- 2 easy-moderate coding questions

Round 2 - Aptitude Test 

- Aptitude test on CoCubes (12 mins)
- English Test (speaking + writing + reading + listening) on Pearson platform

Round 3 - One-on-one 

(4 Questions)

  • Q1. Print the following pattern: (was asked to complete test execution within 10 mins) ****4 ***444 **44444 *4444444 444444444
  • Q2. Find the length of longest substring composed of same digit, within a string of digits: (was asked to complete within 10 mins) E.g. 01241XXXXX901111 Output: 4 Explanation: "1111" is the longest substring
  • Ans. 

    Find the length of longest substring composed of same digit within a string of digits.

    • Iterate through the string and keep track of the current digit and its count

    • Update the maximum count whenever a new digit is encountered

    • Return the maximum count

  • Answered by AI
  • Q3. An SQL SPROC that is supposed to return tabular data is running slowly, what are the different ways you could debug it?
  • Ans. 1. Check for unnecessary columns in SELECT statement 2. Check if there's any cursor present in the SPROC 3. Check if columns have been properly indexed (specifically the columns being used in ORDER BY) 4. Check if data is being paged 5. etc.
  • Answered Anonymously
  • Q4. An API is running slow. Upon investigation it was found that SPROC running behind it is perfectly optimized. How can you debug this behavior of API? (You can neglect the resolve time & connect time of the ...
  • Ans. 

    To debug the slow behavior of the API, analyze network latency, check for database issues, monitor server performance, and review code for potential bottlenecks.

    • Analyze network latency to identify any issues with data transmission.

    • Check for database issues such as slow queries or insufficient indexing.

    • Monitor server performance to ensure it has enough resources and is not overloaded.

    • Review the code for potential bottle...

  • Answered by AI
Round 4 - One-on-one 

(3 Questions)

  • Q1. Check if two strings are anagrams of each other. Follow up question: solve it in O(N) time. (Time limit to solve question: 10 mins)
  • Q2. Given Tables: 1. Authors (AuthorId PK, Name) 2. Books (BookId PK, AuthorId FK, Name) 3. Orders (OrderId PK, BookID FK, AuthorId FK, StoreName) Write SQL query to print following information for each autho...
  • Q3. Questions about an open source distributive caching project that I implemented. Wanted to know what flaws do I see in the project and how do I plan to resolve them. Few follow up questions regarding cachin...
Round 5 - One-on-one 

(3 Questions)

  • Q1. Given an array of integers (both positive and negative) find the maximum and second maximum number without using sort and using only single loop.
  • Ans. 

    Find maximum and second maximum number in an array without using sort and single loop.

    • Initialize max and secondMax variables to the smallest possible integer value

    • Iterate through the array and update max and secondMax accordingly

    • Return max and secondMax as the result

  • Answered by AI
  • Q2. Given Table: Weather (CityName, Date, Temperature) Write an SQL query which prints the following: "CityName, Today's Temperature, Yesterday's Temprature" (if yesterday's temperature doesn't exist, then p...
  • Q3. Given Table: ExamResults (StudentName, SubjectName, Marks) Write an SQL query to print the following: 1. "Student Name, Percentage" (Marks are out of 100) 2. List of all students having percentage great...

Interview Preparation Tips

Interview preparation tips for other job seekers - 1. Basic understanding of DS/Algo is must. Focus specifically on strings and arrays.
2. They'll not be testing your coding knowledge, but rather your problem solving skills. Make sure to keep talking about whatever logic comes to your head.
3. Don't be nervous, the interviewers are friendly.

Skills evaluated in this interview

Interview experience
1
Bad
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Coding Test 

1. max of sub-array
2.snake-to-camel

Interview Preparation Tips

Interview preparation tips for other job seekers - 1. As a start you will receive an email about a coding assignment with no expiration date.
2. On the basis of that test only they can reject you irrespective of the situation.
Interview experience
5
Excellent
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
No response

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

Round 1 - Technical 

(1 Question)

  • Q1. Find Target Element in a rotating sorted Array.
  • Ans. 

    Search for target element in a rotated sorted array.

    • Use binary search to find the pivot point where rotation happens.

    • Divide the array into two subarrays and perform binary search on the appropriate subarray.

    • Handle cases where the target element is on the left or right side of the pivot.

  • Answered by AI
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Newspaper Ad and was interviewed in Feb 2024. There were 2 interview rounds.

Round 1 - Group Discussion 

Tecnology for tribal areas

Round 2 - Technical 

(1 Question)

  • Q1. What is Polymorphism
  • Ans. 

    Polymorphism is the ability of a function or method to behave differently based on the object it is acting upon.

    • Polymorphism allows objects of different classes to be treated as objects of a common superclass.

    • It enables a single interface to represent multiple data types.

    • Examples include method overloading and method overriding in object-oriented programming.

  • Answered by AI
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Naukri.com and was interviewed in Apr 2024. There were 3 interview rounds.

Round 1 - Technical 

(2 Questions)

  • Q1. Mostly c question
  • Q2. Structure padding
Round 2 - Technical 

(1 Question)

  • Q1. Ipc, mutex and semaphore
Round 3 - HR 

(1 Question)

  • Q1. Normal discussion
Interview experience
3
Average
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
Not Selected

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

Round 1 - One-on-one 

(2 Questions)

  • Q1. Reverse a string
  • Ans. 

    Reverse a given string

    • Use a loop to iterate through the characters of the string

    • Append each character to a new string in reverse order

    • Return the reversed string

  • Answered by AI
  • Q2. Basic programming questions
Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Resume Shortlist 
Pro Tip by AmbitionBox:
Don’t add your photo or details such as gender, age, and address in your resume. These details do not add any value.
View all tips
Round 2 - Coding Test 

Coding test is the first test here

Round 3 - Technical 

(2 Questions)

  • Q1. 1.Tech quetions from c, pyrhon, embedded systems?
  • Q2. 2.The next is tech hr and programming questions?

Interview Preparation Tips

Interview preparation tips for other job seekers - The worst company in the world and please dont join this organization

Dassault Systemes Global Services Interview FAQs

How many rounds are there in Dassault Systemes Global Services Software Developer Trainee interview?
Dassault Systemes Global Services interview process usually has 3 rounds. The most common rounds in the Dassault Systemes Global Services interview process are Aptitude Test and Coding Test.

Tell us how to improve this page.

Dassault Systemes Global Services Software Developer Trainee Interview Process

based on 1 interview

Interview experience

3
  
Average
View more

Interview Questions from Similar Companies

Webkul Software Interview Questions
3.9
 • 64 Interviews
Softenger Interview Questions
4.1
 • 54 Interviews
Freecharge Interview Questions
3.8
 • 53 Interviews
Aristocrat Interview Questions
3.9
 • 46 Interviews
Arista Networks Interview Questions
4.1
 • 44 Interviews
Zenoti Interview Questions
3.0
 • 43 Interviews
View all
Software Engineering Specialist
22 salaries
unlock blur

₹7.5 L/yr - ₹15.1 L/yr

Software Consultant
20 salaries
unlock blur

₹9.2 L/yr - ₹22 L/yr

Software Engineer
15 salaries
unlock blur

₹5.5 L/yr - ₹13.6 L/yr

Associate Software Engineer
12 salaries
unlock blur

₹7 L/yr - ₹10.2 L/yr

Software Developer
10 salaries
unlock blur

₹7.9 L/yr - ₹15 L/yr

Explore more salaries
Compare Dassault Systemes Global Services with

Tekwissen

4.8
Compare

Damco Solutions

3.8
Compare

Duck Creek Technologies

4.4
Compare

Capital Numbers Infotech

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