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 UX Designer Interview Questions and Answers for Experienced

Updated 13 Apr 2024

Dassault Systemes UX Designer Interview Experiences for Experienced

1 interview found

UX Designer Interview Questions & Answers

user image Anonymous

posted on 13 Apr 2024

Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
Selected Selected
Round 1 - Technical 

(1 Question)

  • Q1. What are the 3 basic problems you solved in past company
Round 2 - One-on-one 

(1 Question)

  • Q1. How do you tackle hard situation

Interview Preparation Tips

Interview preparation tips for other job seekers - interview can go longer than you expect, in my case my both interviews ended up in 1/2 hour only but interviews are friendly enough to speak stressless & nervousness.

Interview questions from similar companies

I appeared for an interview in Oct 2016.

Interview Questionnaire 

10 Questions

  • Q1. How did you enter into Design?
  • Ans. 

    I entered into Design through my passion for problem-solving and creativity.

    • Started designing websites as a hobby

    • Took design courses in college

    • Interned at a design agency

    • Worked on various design projects to build portfolio

  • Answered by AI
  • Q2. Why did you choose UX Design over other fields?
  • Ans. 

    I chose UX Design for its blend of creativity, problem-solving, and impact on user experience.

    • Passion for understanding user behavior and creating intuitive designs

    • Enjoyment of combining creativity with analytical thinking

    • Desire to make a tangible impact on improving user experiences

    • Fascination with the intersection of technology and human psychology

  • Answered by AI
  • Q3. Choose a project out of your portfolio and explain it short about your process?
  • Ans. 

    Redesigning a mobile banking app to improve user experience

    • Conducted user research to identify pain points and user needs

    • Created wireframes and prototypes to test with users

    • Iterated design based on user feedback

    • Collaborated with developers to ensure implementation aligned with design

  • Answered by AI
  • Q4. What were the basic learnings out of the project?
  • Ans. 

    The basic learnings from the project included the importance of user research, iterative design process, and collaboration with stakeholders.

    • User research is crucial for understanding user needs and preferences.

    • Iterative design process helps in refining and improving the design based on user feedback.

    • Collaboration with stakeholders ensures alignment and buy-in for the design decisions.

    • For example, conducting usability ...

  • Answered by AI
  • Q5. Walk me through a challenge you faced during this project and elaborate on how did you overcome on it?
  • Ans. 

    Overcoming a challenge in a UX design project

    • Identified a lack of user engagement with a new feature

    • Conducted user research to understand the root cause

    • Iterated on the design based on feedback from usability testing

    • Collaborated with developers to implement changes effectively

  • Answered by AI
  • Q6. Cross questioning on UI patterns used in my product?( A test on your Reasoning, Justifications, etc.)
  • Q7. Choose a project out of the portfolio and explain about it in detail of each and everything involved in it?
  • Ans. 

    Redesigning a mobile banking app to improve user experience and accessibility

    • Conducted user research to identify pain points and user needs

    • Created wireframes and prototypes to test new design concepts

    • Implemented accessibility features such as voice commands and screen reader support

    • Collaborated with developers to ensure seamless integration of design elements

  • Answered by AI
  • Q8. What's your contribution in the project?
  • Ans. 

    I led the user research phase, conducted usability testing, and created wireframes for the project.

    • Led user research to understand user needs and pain points

    • Conducted usability testing to gather feedback and iterate on designs

    • Created wireframes to visualize the user interface and interactions

  • Answered by AI
  • Q9. Some technicalities of how product works?
  • Q10. Finally, Ask me any queries you have about the company?

Interview Preparation Tips

Round: Portfolio Shortlist
Experience: Portfolios on Behance were examined before shortlisting for Interview round
Tips: Build a strong portfolio of yours. Present it both visually well and also content rich. The art of balancing on both of them is the secret of crafting the best experience of reviewers.

Round: Other Interview
Experience: This was the first round of the interview(Skype) with a Senior UX designer of Microsoft. The video was turned off from his the side but still mine is ON. We only had AUDIO interview on skype. It was all about my projects presented on portfolio. And the Interview lasted for 40mins.
Tips: Even your expressions, actions & behavior matters in such interviews.

Round: Other Interview
Experience: It was my 2nd interview with Principle Design manager at Microsoft. This too was on skype. Both AUDIO &VIDEO. Right at the start itself he mentioned that, "You have 40mins, first 35 mins will be for you totally and last 5mins will be a Q&A on doubts you have about the company" This lasted for 45mins finally. More examining than cross questioning.
Tips: Improve your communication skills, and the power of pitching your ideas or projects, etc.

Round 1 - Case Study 
Round 2 - One-on-one 

(1 Question)

  • Q1. Review of past projects in UX

Interview Preparation Tips

Interview preparation tips for other job seekers - very professional and smooth hiring process. One of the politest recruiters. Amazing design & product management interview panelists. Though I had to decline since I was signing up newer projects in my existing org, the interview process at ADP was very comfortable.
Interview experience
4
Good
Difficulty level
Hard
Process Duration
Less than 2 weeks
Result
No response

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

Round 1 - Case Study 

Portfolio round - Show case study

Round 2 - One-on-one 

(1 Question)

  • Q1. White-boarding round
Round 3 - One-on-one 

(1 Question)

  • Q1. White-boarding round
Interview experience
3
Average
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
Not Selected

I applied via Company Website and was interviewed in Oct 2024. There were 2 interview rounds.

Round 1 - One-on-one 

(1 Question)

  • Q1. Showcase some of your best works
Round 2 - One-on-one 

(1 Question)

  • Q1. Behaviural questions

I appeared for an interview before May 2021.

Round 1 - Coding Test 

(1 Question)

Round duration - 60 Minutes
Round difficulty - Easy

  • Q1. 

    Spiral Order Traversal of a Binary Tree Problem Statement

    Given a binary tree with 'N' nodes, your task is to print the nodes in spiral order traversal.

    Example:

    Input:
    The binary tree is represented i...
  • Ans. 

    Print nodes of a binary tree in spiral order traversal.

    • Use a queue to perform level order traversal of the binary tree.

    • Alternate between printing nodes from left to right and right to left at each level.

    • Handle null nodes represented by '-1' appropriately.

    • Example: For input '1 2 3 -1 -1 4 5 -1 -1 -1 -1', the output should be '1 3 2 4 5'.

  • Answered by AI
Round 2 - Face to Face 

(1 Question)

Round duration - 60 Minutes
Round difficulty - Easy

  • Q1. 

    Word Break Problem Statement

    You are given a list of N strings called A. Your task is to determine whether you can form a given target string by combining one or more strings from A.

    The strings from A c...

  • Ans. 

    Given a list of strings, determine if a target string can be formed by combining one or more strings from the list.

    • Iterate through all possible combinations of strings from the list to form the target string.

    • Use recursion to try different combinations of strings.

    • Check if the current combination forms the target string.

    • Return true if a valid combination is found, otherwise return false.

  • Answered by AI
Round 3 - Face to Face 

(1 Question)

Round duration - 60 Minutes
Round difficulty - Easy

  • Q1. Design an elevator system.
  • Ans. 

    Design an elevator system for efficient vertical transportation.

    • Divide building into zones to optimize elevator usage.

    • Implement algorithms for efficient elevator scheduling.

    • Include safety features like emergency stop buttons and overload sensors.

    • Consider user interface for passengers to select floors and monitor elevator status.

  • Answered by AI

Interview Preparation Tips

Professional and academic backgroundI applied for the job as SDE - 1 in NoidaEligibility criteriaNoMicrosoft interview preparation:Topics to prepare for the interview - Data structures, algorithms , low level system design , high level system design, problem solvingTime required to prepare for the interview - 2 monthsInterview preparation tips for other job seekers

Tip 1 : Never give up
Tip 2 : Practice 
Tip 3 : Be positive

Application resume tips for other job seekers

Tip 1 : Keep it short
Tip 2 : Highlight skills and achievements

Final outcome of the interviewSelected

Skills evaluated in this interview

I appeared for an interview in Jul 2019.

Interview Questionnaire 

4 Questions

  • Q1. 1. Java questions basee on interfaces, Exception Handling, inheritance, Steam API;
  • Q2. 2. SQL questions related to joins, sub-queries, nth highest salary;
  • Q3.  3. Basic algorithms questions based on Arrays/Linked List.
  • Q4. 4. Puzzles based on basic aptitudes test.

Interview Preparation Tips

Interview preparation tips for other job seekers - I was interviewed for Java Developer. I had 4 rounds (all technical rounds). Each rounds comprises questions related to Java/Puzzles/Algorithms and my experience of project.

Go through your resume. Things should be relevant and one should have clear understanding of basics.

I applied via Naukri.com and was interviewed in Mar 2020. There were 4 interview rounds.

Interview Questionnaire 

1 Question

  • Q1. What is rotational shifts. What is web service flow. How will you check ports on Unix or Solaris machine.
  • Ans. 

    Rotational shifts refer to working in different shifts at different times. Web service flow is the sequence of steps involved in a web service request. Checking ports on Unix or Solaris machine involves using the netstat command.

    • Rotational shifts involve working in different shifts at different times, such as day shift, night shift, and swing shift.

    • Web service flow involves a sequence of steps, such as sending a reques...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Total pathetic experience. Have heard of negative reviews from a number of people, but didn't believed. Unfortunately had to share same pain with them. What job description is given to you, doesn't matters because you won't be asked for that. Your resume will get shortlisted and then it doesn't matter what u have covered up in your career path, because interview rounds will consist of questions out of your scope. Your resume doesn't needs to be shortlisted at first end if it doesn't suit thier needs. HR people, they are on another level. You share your resume to them, and they will never ever reply back to you. Not a single HR, but it seems everyone has same culture. You keep trying to connect them for support. But they will just keep finding smarter ways to avoid.

Skills evaluated in this interview

I applied via Campus Placement and was interviewed before Jun 2020. There were 4 interview rounds.

Interview Questionnaire 

1 Question

  • Q1. For java based profile, questions related to collections, usage of comparator, Class loading are asked.

Interview Preparation Tips

Interview preparation tips for other job seekers - Be strong in basics of computer science like data structure and algorithms. Have a detailed understanding of java basics

I appeared for an interview before Sep 2020.

Round 1 - Coding Test 

(1 Question)

Round duration - 120minutes
Round difficulty - Easy

It was an online MCQ's + coding round consisting of 20 MCQ’s and 1 coding problem.

  • Q1. Check whether there exists a loop in the linked list.
  • Ans. 

    Check for a loop in a linked list by using two pointers moving at different speeds.

    • Use two pointers, one moving at double the speed of the other.

    • If there is a loop, the two pointers will eventually meet at the same node.

    • Example: 1 -> 2 -> 3 -> 4 -> 5 -> 2 (loop back to 2), the two pointers will meet at node 2.

  • Answered by AI
Round 2 - Face to Face 

(1 Question)

Round duration - 50 minutes
Round difficulty - Easy

The interview started at 8:30 pm in cc of Delhi Technological University itself and it was quite late. There was only a single interviewer and he asked me one coding question related to overflow of integers.

  • Q1. How can you check for integer overflow when multiplying two integers and ensure the result is stored correctly within an integer type?
  • Ans. 

    To check for integer overflow when multiplying two integers, use the properties of integer overflow and check if the result is within the valid range of the integer type.

    • Check if the signs of the two integers are the same to avoid overflow in case of multiplication.

    • Use the properties of integer overflow to detect if the result exceeds the maximum or minimum value of the integer type.

    • Consider using a larger data type or...

  • Answered by AI
Round 3 - HR 

Round duration - 15 minutes
Round difficulty - Easy

It was quite late . There was only one interviewer and I was asked about my family , education and future plannings and few questions related joining locations and documents etc.

Interview Preparation Tips

Professional and academic backgroundI completed Information Technology from Delhi Technological University. I applied for the job as SDE - 1 in PuneEligibility criteria6Amdocs interview preparation:Topics to prepare for the interview - I did a lot of practice of data structures and algorithms. I covered main topics such as arrays, strings, trees, linked lists, hashmaps, and recursion. Algorithms such as sorting, searching, BFS, DFS, and greedy were also covered by me.Time required to prepare for the interview - 3 monthsInterview preparation tips for other job seekers

Focus on data structures and algorithms part more. Tell the interviewer , starting from the brute force approach to the most optimal solution as this will give a good impression to the interviewer.

Application resume tips for other job seekers

To be honest, the problem-solving ability is the only thing that most companies care about. So you can manipulate your resume according to that. Mention your competitive programming handles in your resume and also other coding ranks or achievements which you have achieved.

Final outcome of the interviewSelected

Skills evaluated in this interview

Dassault Systemes Interview FAQs

How many rounds are there in Dassault Systemes UX Designer interview for experienced candidates?
Dassault Systemes interview process for experienced candidates usually has 2 rounds. The most common rounds in the Dassault Systemes interview process for experienced candidates are Technical and One-on-one Round.
How to prepare for Dassault Systemes UX Designer interview for experienced candidates?
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 Aviation, Business Process Analysis, French, Infrastructure and Interaction Design.

Tell us how to improve this page.

Dassault Systemes UX Designer Interview Process for Experienced

based on 1 interview

Interview experience

5
  
Excellent
View more

Interview Questions from Similar Companies

Oracle Interview Questions
3.7
 • 867 Interviews
Amdocs Interview Questions
3.7
 • 519 Interviews
Zoho Interview Questions
4.3
 • 512 Interviews
SAP Interview Questions
4.2
 • 285 Interviews
Adobe Interview Questions
3.9
 • 236 Interviews
Salesforce Interview Questions
4.0
 • 230 Interviews
24/7 Customer Interview Questions
3.5
 • 176 Interviews
View all
Dassault Systemes UX Designer Salary
based on 18 salaries
₹8 L/yr - ₹13 L/yr
6% more than the average UX Designer Salary in India
View more details

Dassault Systemes UX Designer Reviews and Ratings

based on 1 review

4.0/5

Rating in categories

3.0

Skill development

5.0

Work-life balance

3.0

Salary

4.0

Job security

4.0

Company culture

3.0

Promotions

5.0

Work satisfaction

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

₹6 L/yr - ₹24.5 L/yr

Software Engineering Specialist
373 salaries
unlock blur

₹7 L/yr - ₹18.8 L/yr

Software Developer
312 salaries
unlock blur

₹6 L/yr - ₹20 L/yr

Software Engineer
300 salaries
unlock blur

₹5.4 L/yr - ₹18 L/yr

QA Engineer
130 salaries
unlock blur

₹4.9 L/yr - ₹13.5 L/yr

Explore more salaries
Compare Dassault Systemes with

Autodesk

4.1
Compare

Oracle

3.7
Compare

Amdocs

3.7
Compare

Automatic Data Processing (ADP)

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