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, Process, and Tips

Updated 22 Jan 2025

Top PureSoftware Interview Questions and Answers

View all 35 questions

PureSoftware Interview Experiences

Popular Designations

52 interviews found

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.

Technical Lead Interview Questions asked at other Companies

Q1. 1. Explain 5 mins the flow from requirement analysis to production deployment and tools used in the process. 2. What is auto-scaling in a microservices architecture? 3. Difference between micro-service and serverless. 4. If you were going t... read more
View answer (4)
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

Citrix Administrator Interview Questions asked at other Companies

Q1. Difference between mcs nad pvs. Differece about webinterface and storefron. End user troubleshooting.
View answer (1)
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

Top PureSoftware Senior Software Engineer Interview Questions and Answers

Q1. Tell me about LOD, Pie Chart, Dual Axis Chart, how you will make them in Tableau.?
View answer (1)

Senior Software Engineer Interview Questions asked at other Companies

Q1. Find Nth PrimeYou are given a number 'N'. Your task is to find Nth prime number. A prime number is a number greater than 1 that is not a product of two smaller natural numbers. Prime numbers have only two factors – 1 and the number itself. ... read more
View answer (6)
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
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

Senior Leader Engineer Interview Questions asked at other Companies

Q1. If a subordinate does not listen to you what steps can you take.
View answer (1)

PureSoftware interview questions for popular designations

 Senior Software Engineer

 (9)

 Technical Lead

 (7)

 Software Engineer

 (6)

 Angular Frontend Developer

 (1)

 Associate

 (1)

 Citrix Administrator

 (1)

 Cloud Technical Support Engineer

 (1)

 Data Scientist

 (1)

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

Data Scientist Interview Questions asked at other Companies

Q1. Special Sum of Array Problem Statement Given an array 'arr' containing single-digit integers, your task is to calculate the total sum of all its elements. However, the resulting sum must also be a single-digit number. To achieve this, repea... read more
Add answer

Get interview-ready with Top PureSoftware Interview Questions

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

PHP Developer Interview Questions asked at other Companies

Q1. How can we report errors in the log file while working on a core PHP project?
View answer (3)

Jobs at PureSoftware

View all

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

Skills evaluated in this interview

Senior Test Engineer Interview Questions asked at other Companies

Q1. From Selenium -> Which Automation framework I have implemented in my project . Explain each framework components. How to handle dynamic web element. how to handle hidden element. how to upload file in selenium, where hashmap is used in s... read more
View answer (1)
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 PureSoftware Senior Software Engineer Interview Questions and Answers

Q1. Tell me about LOD, Pie Chart, Dual Axis Chart, how you will make them in Tableau.?
View answer (1)

Senior Software Engineer Interview Questions asked at other Companies

Q1. Find Nth PrimeYou are given a number 'N'. Your task is to find Nth prime number. A prime number is a number greater than 1 that is not a product of two smaller natural numbers. Prime numbers have only two factors – 1 and the number itself. ... read more
View answer (6)
Interview experience
3
Average
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
No response

I applied via Walk-in and was interviewed in Apr 2024. There was 1 interview round.

Round 1 - One-on-one 

(1 Question)

  • Q1. What was your role and responsibilities in your last organization?

Talent Acquisition Specialist Interview Questions asked at other Companies

Q1. On what basis do you select/source candidates and move them forward?
View answer (1)
Interview experience
2
Poor
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via Approached by Company and was interviewed in Sep 2023. 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 - Technical 

(3 Questions)

  • Q1. Html questions from Different elements
  • Q2. Css & Responsiveness related questions
  • Q3. Shallow copy & Deep Copy in JS
  • Ans. 

    Shallow copy only copies the reference of an object, while deep copy creates a new object with new references.

    • Shallow copy creates a new object but references the same nested objects.

    • Deep copy creates a new object and recursively copies all nested objects.

    • Shallow copy can be achieved using Object.assign or spread operator.

    • Deep copy can be achieved using JSON.parse(JSON.stringify(obj)).

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - A perfect interviewer is an asset for a company. In my case I am giving an interview for Angular position and they didn't ask me a single question from Angular ,TS,Js . Only asked from HTML and CSS.
So be prepare for those all .

Skills evaluated in this interview

Angular Frontend Developer Interview Questions asked at other Companies

Q1. How to implement interfaces without methods?
View answer (1)

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 Java, SQL, Javascript, Python and Communication Skills.
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.

PureSoftware Interview Process

based on 50 interviews

Interview experience

3.5
  
Good
View more

Interview Questions from Similar Companies

LTIMindtree Interview Questions
3.8
 • 3k Interviews
Mphasis Interview Questions
3.4
 • 810 Interviews
Coforge Interview Questions
3.3
 • 520 Interviews
KPIT Technologies Interview Questions
3.4
 • 294 Interviews
Cyient Interview Questions
3.7
 • 284 Interviews
CitiusTech Interview Questions
3.4
 • 268 Interviews
View all

PureSoftware Reviews and Ratings

based on 446 reviews

3.1/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 446 Reviews and Ratings
Postgresql Database Administrator

Noida

6-11 Yrs

Not Disclosed

Data Governance Engineer- GLN

Bangalore / Bengaluru

7-12 Yrs

Not Disclosed

Business Analyst Data Governance- GLN

Bangalore / Bengaluru

7-12 Yrs

Not Disclosed

Explore more jobs
Senior Software Engineer
461 salaries
unlock blur

₹8.5 L/yr - ₹35 L/yr

Software Engineer
245 salaries
unlock blur

₹4 L/yr - ₹15 L/yr

Lead Engineer
185 salaries
unlock blur

₹10.3 L/yr - ₹38.5 L/yr

Technical Lead
155 salaries
unlock blur

₹14.1 L/yr - ₹40 L/yr

Associate Software Engineer
84 salaries
unlock blur

₹2.6 L/yr - ₹12.5 L/yr

Explore more salaries
Compare PureSoftware with

Persistent Systems

3.5
Compare

LTIMindtree

3.8
Compare

Mphasis

3.4
Compare

Coforge

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