Upload Button Icon Add office photos
Engaged Employer

i

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

PureSoftware Verified Tick

Compare button icon Compare button icon Compare

Filter interviews by

PureSoftware Interview Questions and Answers

Updated 23 Jun 2025
Popular Designations

37 Interview questions

A Technical Lead was asked 6mo ago
Q. Given a string s, return the longest palindromic substring in s.
Ans. 

Use dynamic programming to find the longest palindrome substring in a given string.

  • Iterate through each character in the string and expand around it to find palindromes

  • Store the length of each palindrome found and return the longest one

  • Handle both odd and even length palindromes

View all Technical Lead interview questions
A Citrix Administrator was asked 6mo ago
Q. PVS logon process for Citrix
Ans. 

PVS logon process involves streaming a vDisk to a target device for user logon.

  • PVS streams a vDisk to target device over network during logon process

  • User credentials are authenticated by Citrix Delivery Controller

  • User profile is loaded from vDisk during logon

  • Applications are launched from vDisk after logon

View all Citrix Administrator interview questions
A HR Executive was asked 6mo ago
Q. How do you manage performance management?
Ans. 

I manage performance management through setting clear goals, providing regular feedback, conducting performance reviews, and offering development opportunities.

  • Set clear and achievable goals for employees

  • Provide regular feedback on performance

  • Conduct performance reviews to assess progress and areas for improvement

  • Offer development opportunities for growth and skill enhancement

View all HR Executive interview questions
A Senior Software Engineer was asked 9mo ago
Q. What are the new features of React JS?
Ans. 

Some new features of React JS include Hooks, Context API, Suspense, and React.lazy.

  • Introduction of Hooks for state and lifecycle management

  • Context API for global state management

  • Suspense for handling loading states in components

  • React.lazy for code splitting and lazy loading components

View all Senior Software Engineer interview questions
A Senior Software Engineer was asked 9mo ago
Q. What are functional and class components?
Ans. 

Functional and class components are two types of components in React for building user interfaces.

  • Functional components are simple functions that take props as input and return JSX elements.

  • Class components are ES6 classes that extend React.Component and have a render method.

  • Functional components are easier to read and test, while class components have more features like state and lifecycle methods.

  • Example of func...

View all Senior Software Engineer interview questions
A Senior Software Engineer was asked 9mo ago
Q. Write a program to fetch and display data from an API in React.
Ans. 

Program to fetch and display data from API in React

  • Use fetch or axios to make API calls in React

  • Set up state to store the fetched data

  • Render the data in the component using JSX

View all Senior Software Engineer interview questions
A Senior Software Engineer was asked 9mo ago
Q. What is a Higher-Order Component (HOC)? Explain with an example.
Ans. 

HOC stands for Higher Order Component in React. It is a pattern where a function takes a component and returns a new component.

  • HOC allows code reuse, logic abstraction, and props manipulation in React components.

  • Example: WithAuthentication HOC can conditionally render a component based on user authentication status.

  • Example: WithLoader HOC can display a loading spinner while fetching data for a component.

View all Senior Software Engineer interview questions
Are these interview questions helpful?
A Data Scientist was asked 12mo ago
Q. What is stemming and lemmatization?
Ans. 

Stemming and lemmatization are techniques used in natural language processing to reduce words to their base or root form.

  • Stemming is the process of reducing words to their base or root form by removing suffixes.

  • Example: 'running' becomes 'run' after stemming.

  • Lemmatization is the process of reducing words to their base or root form while still ensuring that the reduced form belongs to the language.

  • Example: 'better'...

View all Data Scientist interview questions
A Data Scientist was asked 12mo ago
Q. Write a Python program to find the smallest integer greater than the square root of a given number.
Ans. 

Python program to find smallest integer greater than square root of a given number.

  • Use math module to calculate square root of the given number.

  • Use math.ceil() function to round up the square root to the nearest integer.

  • Add 1 to the rounded up square root to get the smallest integer greater than square root.

View all Data Scientist interview questions
A Data Scientist was asked 12mo ago
Q. Write a SQL query to list all the employees with the third highest salary.
Ans. 

SQL query to list employees with third highest salary

  • Use the 'ROW_NUMBER()' function to assign a rank to each employee based on salary

  • Filter the results to only include employees with a rank of 3

View all Data Scientist interview questions

PureSoftware Interview Experiences

58 interviews found

I applied via Campus Placement and was interviewed in Dec 2021. There were 4 interview rounds.

Interview Questionnaire 

4 Questions

  • Q1. Difference between time complexity and space complexity. Explain with example in such a way that you are teaching someone who doesn't know anything about it
  • Ans. 

    Time complexity refers to the amount of time taken by an algorithm to run, while space complexity refers to the amount of memory used by an algorithm.

    • Time complexity is measured by the number of operations an algorithm performs, while space complexity is measured by the amount of memory an algorithm uses.

    • An algorithm with a time complexity of O(n) will take longer to run as the input size increases, while an algorithm ...

  • Answered by AI
  • Q2. What Merge sort algorithm with code? And which is the best algorithm according to you?
  • Ans. 

    Merge sort is a divide and conquer algorithm. Best for large data sets. Code: https://bit.ly/3jJ5J5z

    • Divide the array into two halves

    • Sort each half recursively

    • Merge the sorted halves

    • Best for large data sets

    • Code: https://bit.ly/3jJ5J5z

  • Answered by AI
  • Q3. Explain 4 pillars of oops?
  • Ans. 

    The 4 pillars of OOP are Abstraction, Encapsulation, Inheritance, and Polymorphism.

    • Abstraction: Hiding implementation details and showing only necessary information.

    • Encapsulation: Binding data and functions that manipulate it together in a single unit.

    • Inheritance: Creating new classes from existing ones, inheriting their properties and methods.

    • Polymorphism: Ability of objects to take on multiple forms or behaviors.

  • Answered by AI
  • Q4. Traveling spring structure in a matrix
  • Ans. 

    A traveling spring structure in a matrix is a pattern where a spring-like structure moves through the matrix.

    • The structure moves in a zigzag pattern through the matrix

    • The structure can be used to traverse a matrix and visit all its elements

    • The structure can be implemented using a combination of loops and conditional statements

    • Example: Given a matrix of size n x m, start at the top-left corner and traverse the matrix us...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Do prepare for DSA , oops and OS

Skills evaluated in this interview

Technical Lead Interview Questions & Answers

user image Mahesh Richhariya

posted on 26 Dec 2024

Interview experience
1
Bad
Difficulty level
Moderate
Process Duration
4-6 weeks
Result
No response
Round 1 - Technical 

(3 Questions)

  • Q1. Questions on ADF, data factory and databricks
  • Q2. Find longest palindrome string in a given string
  • Ans. 

    Use dynamic programming to find the longest palindrome substring in a given string.

    • Iterate through each character in the string and expand around it to find palindromes

    • Store the length of each palindrome found and return the longest one

    • Handle both odd and even length palindromes

  • Answered by AI
  • Q3. Spark, memory optimization, repartition and data skewness related question
Round 2 - One-on-one 

(1 Question)

  • Q1. With client, asked project end to end details and my role into it

Interview Preparation Tips

Interview preparation tips for other job seekers - I was asked by HR to join as a freelancer consultant even before my notice period ends. The payroll company will deploy me to the client location for the first three months, after which I will be required to come to the office three days a week, transitioning to five days a week thereafter. when I denied they did not released my offer even after collecting all document. not a positive experience stay away from them.
Interview experience
2
Poor
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(1 Question)

  • Q1. PVS logon process for Citrix
  • Ans. 

    PVS logon process involves streaming a vDisk to a target device for user logon.

    • PVS streams a vDisk to target device over network during logon process

    • User credentials are authenticated by Citrix Delivery Controller

    • User profile is loaded from vDisk during logon

    • Applications are launched from vDisk after logon

  • Answered by AI
Round 2 - Technical 

(1 Question)

  • Q1. Citrix logon process
Round 3 - Technical 

(1 Question)

  • Q1. DNS resolving ,DHCP
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
Selected Selected

I appeared for an interview in Feb 2025.

Round 1 - Technical 

(1 Question)

  • Q1. How to count number of rows in a table
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Coding Test 

Data structures and algorithms, javascript and react questions

Round 2 - Technical 

(2 Questions)

  • Q1. Questions on system design
  • Q2. Questions on advanced CI/CD pipeline
Round 3 - Technical 

(2 Questions)

  • Q1. Discussion on product management
  • Q2. State management system
Interview experience
1
Bad
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(3 Questions)

  • Q1. It was good they just follow the process asked some simple java question.
  • Q2. What is the difference between hashmap and concurrenthashmap
  • Ans. 

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

    • HashMap is not thread-safe and can lead to ConcurrentModificationException if modified during iteration.

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

    • ConcurrentHashMap achieves thread-safety by dividing the map into segments, allowing multiple threads to operate on different segments concurren...

  • Answered by AI
  • Q3. SQL question of third highest salary
  • Ans. 

    To find the third highest salary in a SQL table, use the 'SELECT DISTINCT' statement with 'ORDER BY' and 'LIMIT'.

    • Use 'SELECT DISTINCT' to avoid duplicates

    • Order the salaries in descending order using 'ORDER BY'

    • Use 'LIMIT 2,1' to skip the first two highest salaries and retrieve the third highest salary

  • Answered by AI
Round 2 - Technical 

(2 Questions)

  • Q1. Overall it was good
  • Q2. System design related question design parking lot
  • Ans. 

    Design a parking lot system that efficiently manages parking spaces and vehicle tracking.

    • Define parking lot structure: multiple levels, sections, and types of spaces (compact, standard, handicapped).

    • Implement entry and exit points with ticketing or automated systems for tracking vehicles.

    • Use sensors or cameras to monitor available spaces in real-time.

    • Incorporate a mobile app for users to find available spots and reserv...

  • Answered by AI
Round 3 - HR 

(1 Question)

  • Q1. Asked me about the salary expectations

Interview Preparation Tips

Interview preparation tips for other job seekers - Do not join this company

Skills evaluated in this interview

Data Scientist Interview Questions & Answers

user image Vatsal Kachhiya

posted on 18 Jun 2024

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

(3 Questions)

  • Q1. Write a Python program to get the smallest integer greater than square root of a given number.
  • Ans. 

    Python program to find smallest integer greater than square root of a given number.

    • Use math module to calculate square root of the given number.

    • Use math.ceil() function to round up the square root to the nearest integer.

    • Add 1 to the rounded up square root to get the smallest integer greater than square root.

  • Answered by AI
  • Q2. Write a SQL query to list all the employees with the third highest salary.
  • Ans. 

    SQL query to list employees with third highest salary

    • Use the 'ROW_NUMBER()' function to assign a rank to each employee based on salary

    • Filter the results to only include employees with a rank of 3

  • Answered by AI
  • Q3. What is stemming and lemmatinization?
  • Ans. 

    Stemming and lemmatization are techniques used in natural language processing to reduce words to their base or root form.

    • Stemming is the process of reducing words to their base or root form by removing suffixes.

    • Example: 'running' becomes 'run' after stemming.

    • Lemmatization is the process of reducing words to their base or root form while still ensuring that the reduced form belongs to the language.

    • Example: 'better' beco...

  • Answered by AI

Skills evaluated in this interview

PHP Developer Interview Questions & Answers

user image Stuti Ojha

posted on 26 Aug 2024

Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(1 Question)

  • Q1. Coding question and mysql query
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
  • Q1. Can you explain your previous projects and the technologies you used?
  • Ans. 

    I worked on various projects using technologies like Java, React, and AWS, focusing on scalable web applications and microservices.

    • Developed a web application using React and Node.js for a retail client, improving user engagement by 30%.

    • Implemented a microservices architecture with Spring Boot and Docker for a healthcare platform, enhancing scalability.

    • Utilized AWS services like S3 and Lambda for a media processing app...

  • Answered by AI
  • Q2. What is your knowledge of the fintech domain?
  • Ans. 

    Fintech integrates technology with financial services, enhancing efficiency, accessibility, and user experience in finance.

    • Digital Payments: Platforms like PayPal and Venmo enable quick and secure transactions.

    • Blockchain Technology: Cryptocurrencies like Bitcoin utilize blockchain for secure, decentralized transactions.

    • Robo-Advisors: Services like Betterment and Wealthfront use algorithms to provide automated investmen...

  • Answered by AI

Senior Test Engineer Interview Questions & Answers

user image Prakash Kumar Thakur

posted on 14 May 2024

Interview experience
3
Average
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

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

Round 1 - Technical 

(2 Questions)

  • Q1. String operation in Tosca Automation
  • Ans. 

    String operations in Tosca Automation involve manipulating and validating strings in test scripts.

    • Use functions like 'contains', 'startsWith', 'endsWith' for string validation

    • Use 'concatenate' function to combine multiple strings

    • Use 'substring' function to extract a portion of a string

  • Answered by AI
  • Q2. Join to table and find the highest salay of employee
  • Ans. 

    Join tables to retrieve the highest salary of employees using SQL queries.

    • Use SQL JOIN to combine employee and salary tables.

    • Utilize the MAX() function to find the highest salary.

    • Example query: SELECT MAX(salary) FROM employees JOIN salaries ON employees.id = salaries.employee_id;

    • Consider GROUP BY if you need the highest salary per department.

  • Answered by AI

Skills evaluated in this interview

Interview experience
3
Average
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
No response

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

Round 1 - Technical 

(1 Question)

  • Q1. What is use of Swift &Objective c? Write code for Tableview Using SwiftUI? RxSwift Vs Swift? What is Optional & Generics ? Protocol Composition related Questions
  • Ans. 

    Swift & Objective-C are programming languages used for iOS development. Tableview in SwiftUI uses List view. RxSwift is a reactive programming framework. Optional & Generics are Swift features. Protocol Composition is combining multiple protocols.

    • Swift & Objective-C are used for iOS development

    • Tableview in SwiftUI uses List view

    • RxSwift is a reactive programming framework for Swift

    • Optional allows variables to have a 'no...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare for all basic concepts.

Skills evaluated in this interview

Top trending discussions

View All
Interview Tips & Stories
5d (edited)
a team lead
Why are women still asked such personal questions in interview?
I recently went for an interview… and honestly, m still trying to process what just happened. Instead of being asked about my skills, experience, or how I could add value to the company… the questions took a totally unexpected turn. The interviewer started asking things like When are you getting married? Are you engaged? And m sure, if I had said I was married, the next question would’ve been How long have you been married? What does my personal life have to do with the job m applying for? This is where I felt the gender discrimination hit hard. These types of questions are so casually thrown at women during interviews but are they ever asked to men? No one asks male candidates if they’re planning a wedding or how old their kids are. So why is it okay to ask women? Can we please stop normalising this kind of behaviour in interviews? Our careers shouldn’t be judged by our relationship status. Period.
Got a question about PureSoftware?
Ask anonymously on communities.

PureSoftware Interview FAQs

How many rounds are there in PureSoftware interview?
PureSoftware interview process usually has 2-3 rounds. The most common rounds in the PureSoftware interview process are Technical, Resume Shortlist and HR.
How to prepare for PureSoftware 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 PureSoftware. The most common topics and skills that interviewers at PureSoftware expect are SQL, Java, Javascript, Communication Skills and Python.
What are the top questions asked in PureSoftware interview?

Some of the top questions asked at the PureSoftware interview -

  1. 1. Explain 5 mins the flow from requirement analysis to production deployment a...read more
  2. Tell me about LOD, Pie Chart, Dual Axis Chart, how you will make them in Tablea...read more
  3. Difference between time complexity and space complexity. Explain with example i...read more
How long is the PureSoftware interview process?

The duration of PureSoftware interview process can vary, but typically it takes about less than 2 weeks to complete.

Tell us how to improve this page.

Overall Interview Experience Rating

3.6/5

based on 55 interview experiences

Difficulty level

Easy 21%
Moderate 76%
Hard 3%

Duration

Less than 2 weeks 72%
2-4 weeks 17%
4-6 weeks 7%
More than 8 weeks 3%
View more

Interview Questions from Similar Companies

ITC Infotech Interview Questions
3.7
 • 376 Interviews
CitiusTech Interview Questions
3.3
 • 290 Interviews
NeoSOFT Interview Questions
3.6
 • 280 Interviews
Altimetrik Interview Questions
3.7
 • 241 Interviews
Episource Interview Questions
3.9
 • 224 Interviews
Xoriant Interview Questions
4.1
 • 213 Interviews
INDIUM Interview Questions
4.0
 • 198 Interviews
Incedo Interview Questions
3.1
 • 193 Interviews
View all

PureSoftware Reviews and Ratings

based on 508 reviews

3.0/5

Rating in categories

2.8

Skill development

3.1

Work-life balance

3.2

Salary

2.5

Job security

2.9

Company culture

2.7

Promotions

2.9

Work satisfaction

Explore 508 Reviews and Ratings
NodeJS+Perl

Gurgaon / Gurugram

2-7 Yrs

Not Disclosed

Frontend Game Developer

Noida,

New Delhi

2-4 Yrs

Not Disclosed

Db2 Database Administrator

Delhi/Ncr

6-11 Yrs

₹ 16-30 LPA

Explore more jobs
Senior Software Engineer
529 salaries
unlock blur

₹11.8 L/yr - ₹25 L/yr

Software Engineer
248 salaries
unlock blur

₹6 L/yr - ₹13.9 L/yr

Lead Engineer
235 salaries
unlock blur

₹20.9 L/yr - ₹38.5 L/yr

Technical Lead
171 salaries
unlock blur

₹21.6 L/yr - ₹40 L/yr

Associate Software Engineer
88 salaries
unlock blur

₹4.4 L/yr - ₹9 L/yr

Explore more salaries
Compare PureSoftware with

ITC Infotech

3.7
Compare

CMS IT Services

3.1
Compare

KocharTech

3.9
Compare

Xoriant

4.1
Compare
write
Share an Interview