Premium Employer

i

This company page is being actively managed by Persistent Systems Team. If you also belong to the team, you can get access from here

Persistent Systems Verified Tick

Compare button icon Compare button icon Compare

Filter interviews by

Persistent Systems UI/UX Designer Interview Questions and Answers

Updated 3 Jun 2022

Persistent Systems UI/UX Designer Interview Experiences

1 interview found

I applied via Naukri.com and was interviewed in May 2022. There was 1 interview round.

Round 1 - Technical 

(1 Question)

  • Q1. What is your design process
  • Ans. 

    My design process involves research, ideation, prototyping, testing, and iteration.

    • Research: Gather information about the problem, users, and competition.

    • Ideation: Brainstorm and sketch out potential solutions.

    • Prototyping: Create low-fidelity and high-fidelity prototypes.

    • Testing: Conduct user testing to gather feedback and insights.

    • Iteration: Use feedback to refine and improve the design.

  • Answered by AI

Interview Preparation Tips

Topics to prepare for Persistent Systems UI/UX Designer interview:
  • Design thinking
  • Information Architecture
Interview preparation tips for other job seekers - L1: technical round
L2: technical round
Hr round

Interview questions from similar companies

I applied via Naukri.com and was interviewed in Apr 2022. There were 2 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 - One-on-one 

(2 Questions)

  • Q1. 1) Introduce Yourself. Walkthrough your Projects.
  • Q2. 2) Design Process, Design Systems, Components, User Research Methods.

Interview Preparation Tips

Topics to prepare for DXC Technology UI/UX Designer interview:
  • UX design
  • Design process
  • Information Architecture
  • KPI Analysis
Interview preparation tips for other job seekers - Do have 2 to 3 Projects to in your Portfolio. Question from those projects will be asked.

I applied via Campus Placement and was interviewed before Oct 2021. There were 4 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 - Aptitude Test 

Aptitude test has aptitude, logical and 2 coding questions

Round 3 - Technical 

(1 Question)

  • Q1. Asked about the basics of c, data structures, aptitude questions and questions related to your major
Round 4 - HR 

(1 Question)

  • Q1. General hr discussion

Interview Preparation Tips

Interview preparation tips for other job seekers - Make sure you keep in resume what you know. Most of the questions will be from your resume

I applied via Campus Placement and was interviewed before Nov 2020. There were 6 interview rounds.

Interview Questionnaire 

1 Question

  • Q1. Java basics, College Projects

Interview Preparation Tips

Interview preparation tips for other job seekers - Interview was good. Be confident and answer. If you don't know the answer, tell that without hesitation.

I appeared for an interview before Feb 2021.

Round 1 - Coding Test 

(3 Questions)

Round duration - 150 Minutes
Round difficulty - Medium

It was an Aptitude test and Technical objective test of 60 minutes followed by a Coding test of 90 minutes.There was a 1 hour gap b/w the two tests.

  • Q1. 

    Count Derangements

    Determine the number of derangements possible for a set of 'N' elements. A derangement is a permutation where no element appears in its original position.

    Input:

    An integer 'T' repres...
  • Ans. 

    Count the number of derangements possible for a set of 'N' elements.

    • Derangement is a permutation where no element appears in its original position.

    • Use dynamic programming to calculate derangements efficiently.

    • Apply the formula: D(n) = (n-1) * (D(n-1) + D(n-2)), with base cases D(1) = 0 and D(2) = 1.

  • Answered by AI
  • Q2. 

    Prime Numbers Identification

    Given a positive integer N, your task is to identify all prime numbers less than or equal to N.

    Explanation:

    A prime number is a natural number greater than 1 that has no po...

  • Ans. 

    Identify all prime numbers less than or equal to a given positive integer N.

    • Iterate from 2 to N and check if each number is prime

    • Use the Sieve of Eratosthenes algorithm for better efficiency

    • Optimize by only checking up to the square root of N for divisors

  • Answered by AI
  • Q3. 

    Common Elements Problem Statement

    Identify and output the common strings present in both given arrays of lowercase alphabets for each test case.

    Input:

    The first line contains an integer 'T' representin...
  • Ans. 

    The problem requires identifying and outputting common strings present in two arrays of lowercase alphabets for each test case.

    • Iterate through the elements of the second array and check if they are present in the first array.

    • Use a hash set or map to efficiently check for common elements.

    • Return the common strings in the order they appear in the second array.

  • Answered by AI
Round 2 - Video Call 

(4 Questions)

Round duration - 60 Minutes
Round difficulty - Medium

This round had 1 question from DSA particulary Trees and after that some questions from OOPS were asked.

  • Q1. 

    Spiral Order Traversal of a Binary Tree

    Given a binary tree with N nodes, your task is to output the Spiral Order traversal of the binary tree.

    Input:

    The input consists of a single line containing elem...
  • Ans. 

    Implement a function to return the spiral order traversal of a binary tree.

    • Traverse the binary tree level by level, alternating the direction of traversal.

    • Use a queue to keep track of nodes at each level.

    • Append nodes to the result list based on the traversal direction.

    • Handle null nodes appropriately to maintain the spiral order.

    • Example: Input: 1 2 3 -1 -1 4 5, Output: 1 3 2 4 5

  • Answered by AI
  • Q2. What is the difference between an Abstract Class and an Interface in Java?
  • Ans. 

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

    • Abstract class can have constructor, fields, and methods, while interface can only have constants and abstract methods.

    • A class can extend only one abstract class, but can implement multiple interfaces.

    • Abstract classes are used to provide a common base for subclasses, while interfaces are used to define a contr...

  • Answered by AI
  • Q3. What is the static keyword in Java?
  • Ans. 

    The static keyword in Java is used to create class-level variables and methods that can be accessed without creating an instance of the class.

    • Static variables are shared among all instances of a class.

    • Static methods can be called without creating an object of the class.

    • Static blocks are used to initialize static variables.

    • Example: public static int count = 0;

  • Answered by AI
  • Q4. What is the difference between a constructor and a method in Object-Oriented Programming?
  • Ans. 

    Constructor is a special method used to initialize objects, while a method is a regular function that performs a specific task.

    • Constructors are called automatically when an object is created, while methods need to be called explicitly.

    • Constructors have the same name as the class, while methods have unique names.

    • Constructors do not have a return type, while methods have a return type.

    • Example: Constructor - public ClassN...

  • Answered by AI
Round 3 - Video Call 

(2 Questions)

Round duration - 60 minutes
Round difficulty - Medium

This round had 2 questions from DSA and after that some basic HR questions were asked.

  • Q1. 

    Ways To Make Coin Change

    Given an infinite supply of coins of varying denominations, determine the total number of ways to make change for a specified value using these coins. If it's not possible to make...

  • Ans. 

    The task is to find the total number of ways to make change for a specified value using given denominations.

    • Use dynamic programming to solve this problem efficiently.

    • Create a 1D array to store the number of ways to make change for each value from 0 to the target value.

    • Iterate through the denominations and update the array based on the current denomination.

    • The final answer will be the value at the target index of the ar

  • Answered by AI
  • Q2. 

    Palindrome String Validation

    Determine if a given string 'S' is a palindrome, considering only alphanumeric characters and ignoring spaces and symbols.

    Note:
    The string 'S' should be evaluated in a case...
  • Ans. 

    Check if a given string is a palindrome after removing special characters, spaces, and converting to lowercase.

    • Remove special characters and spaces from the input string

    • Convert the string to lowercase

    • Check if the modified string is a palindrome by comparing characters from start and end

  • Answered by AI

Interview Preparation Tips

Eligibility criteriaAbove 7 CGPANagarro interview preparation:Topics to prepare for the interview - Data Structures, Algorithms, System Design, Aptitude, OOPSTime required to prepare for the interview - 4 MonthsInterview preparation tips for other job seekers

Tip 1 : Must do Previously asked Interview as well as Online Test Questions.
Tip 2 : Go through all the previous interview experiences from Codestudio and Leetcode.
Tip 3 : Do at-least 2 good projects and you must know every bit of them.

Application resume tips for other job seekers

Tip 1 : Have at-least 2 good projects explained in short with all important points covered.
Tip 2 : Every skill must be mentioned.
Tip 3 : Focus on skills, projects and experiences more.

Final outcome of the interviewSelected

Skills evaluated in this interview

I applied via Campus Placement and was interviewed in Aug 2020. There were 4 interview rounds.

Interview Questionnaire 

4 Questions

  • Q1. Best sorting although and its working they asked
  • Q2. Write a program to replace the character with another character in java.
  • Ans. 

    A program to replace a character with another character in Java.

    • Create a string variable with the original text

    • Use the replace() method to replace the character with another character

    • Print the new string with the replaced character

  • Answered by AI
  • Q3. SQL queries on order by, group by, and it's difference they asked.
  • Q4. Project management experience they asked.

Interview Preparation Tips

Interview preparation tips for other job seekers - Be prepare on the basis concepts and be perfect on your resume they are not expecting much from you as you are a fresher.

Skills evaluated in this interview

I applied via LinkedIn and was interviewed in Feb 2021. There were 3 interview rounds.

Interview Questionnaire 

1 Question

  • Q1. I had applied through linkedin in feb 2021 for Pune, India. whole process from being interviewed to get an offer took 2 weeks approx. There were 2 technical rounds followed by 1 HR round. Each technical ro...

Interview Preparation Tips

Interview preparation tips for other job seekers - Stay calm and don't bluff for anything. If you don't know any answer simply say I am sorry, I don't know or if you guessing any answer please mention that I am not very sure about this but on the basis of my knowledge I can say "your answer".
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Company Website and was interviewed before Jan 2022. There were 2 interview rounds.

Round 1 - Aptitude Test 

Actually first round was Aptitude + coding . Try to solve questions from various website like India bix , U can also go for RS Agarwa . N for coding solve questions from leetcode.

Round 2 - HR 

(4 Questions)

  • Q1. They will ask only geniune questions like tell me about yourself. From where u belongs ?
  • Q2. Tell me about company !Do u have another offer in hand currently ? Do u have pan card ?
  • Ans. 

    The company is a software engineering firm.

    • The company specializes in developing software solutions.

    • It has a team of skilled software engineers.

    • The company focuses on delivering high-quality products.

    • It has a strong reputation in the industry.

    • The company offers a collaborative and innovative work environment.

  • Answered by AI
  • Q3. Will u work in shift ?
  • Ans. 

    Yes, I am willing to work in shifts.

    • I am flexible and adaptable to different work schedules.

    • I understand the importance of round-the-clock support for software systems.

    • I have previous experience working in shifts.

    • I am comfortable with the potential challenges and adjustments that come with working in shifts.

  • Answered by AI
  • Q4. Areas of strength and weekness .
  • Ans. 

    My areas of strength include problem-solving, teamwork, and adaptability. My weakness is public speaking.

    • Strengths: problem-solving (e.g. developing efficient algorithms), teamwork (e.g. collaborating with colleagues on a project), adaptability (e.g. quickly learning new programming languages)

    • Weakness: public speaking (e.g. presenting technical information to a large audience)

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Try to keep things as simple as possible . Don't feel pressure .

I applied via Campus Placement and was interviewed before Sep 2021. There were 2 interview rounds.

Round 1 - Coding Test 

Basic logical program

Round 2 - HR 

(1 Question)

  • Q1. Tell me something about yourself

Interview Preparation Tips

Interview preparation tips for other job seekers - Have a good knowledge of programming in c

Interview Questionnaire 

1 Question

  • Q1. Most of the question are from my resume. Next was technical most of they questions are from java much were like facts what is the latest version of Java current in use and etc

Persistent Systems Interview FAQs

How many rounds are there in Persistent Systems UI/UX Designer interview?
Persistent Systems interview process usually has 1 rounds. The most common rounds in the Persistent Systems interview process are Technical.
How to prepare for Persistent Systems UI/UX Designer 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 Persistent Systems. The most common topics and skills that interviewers at Persistent Systems expect are Angular, CSS, HTML, UI and UX.

Tell us how to improve this page.

Join Persistent Systems See Beyond, Rise Above

Interview Questions from Similar Companies

TCS Interview Questions
3.7
 • 10.5k Interviews
Infosys Interview Questions
3.6
 • 7.6k Interviews
Wipro Interview Questions
3.7
 • 5.6k Interviews
Tech Mahindra Interview Questions
3.5
 • 3.8k Interviews
HCLTech Interview Questions
3.5
 • 3.8k Interviews
LTIMindtree Interview Questions
3.8
 • 2.9k Interviews
Mphasis Interview Questions
3.4
 • 796 Interviews
DXC Technology Interview Questions
3.7
 • 796 Interviews
Nagarro Interview Questions
4.0
 • 759 Interviews
View all
Persistent Systems UI/UX Designer Salary
based on 5 salaries
₹9 L/yr - ₹13 L/yr
65% more than the average UI/UX Designer Salary in India
View more details
Software Engineer
4.4k salaries
unlock blur

₹2.4 L/yr - ₹10 L/yr

Senior Software Engineer
4k salaries
unlock blur

₹5 L/yr - ₹15.6 L/yr

Lead Engineer
3.2k salaries
unlock blur

₹10 L/yr - ₹30 L/yr

Lead Software Engineer
3.1k salaries
unlock blur

₹7.1 L/yr - ₹21.5 L/yr

Project Lead
1.9k salaries
unlock blur

₹13.4 L/yr - ₹39 L/yr

Explore more salaries
Compare Persistent Systems with

Cognizant

3.7
Compare

TCS

3.7
Compare

IBM

4.0
Compare

LTIMindtree

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