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
3.2

based on 421 Reviews

Filter interviews by

PureSoftware Software Engineer Interview Questions and Answers

Updated 15 Mar 2024

PureSoftware Software Engineer Interview Experiences

6 interviews found

Interview experience
3
Average
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
Not Selected

I applied via Approached by Company and was interviewed in Mar 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 

(2 Questions)

  • Q1. Basic concept of oops
  • Q2. Coding questions and sql query

Interview Preparation Tips

Interview preparation tips for other job seekers - Be confident and clam during the interview. Say whatever you did in past with confidence
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via LinkedIn and was interviewed before Mar 2023. There were 3 interview rounds.

Round 1 - Technical 

(1 Question)

  • Q1. Insert Delete getRandom of Leetcode
  • Ans. 

    Implement a data structure that supports insert, delete, and getRandom operations in O(1) time complexity.

    • Use a hashmap to store the mapping of values to their indices in an array for O(1) lookup during delete operation.

    • For getRandom operation, generate a random index within the size of the array and return the value at that index.

    • To achieve O(1) time complexity for all operations, use a combination of hashmap and arra

  • Answered by AI
Round 2 - Technical 

(1 Question)

  • Q1. Questions on Arrays and Stack
Round 3 - HR 

(1 Question)

  • Q1. Normal Behavioural Questions

Skills evaluated in this interview

Software Engineer Interview Questions Asked at Other Companies

asked in Qualcomm
Q1. Bridge and torch problem : Four people come to a river in the nig ... read more
asked in Capgemini
Q2. In a dark room,there is a box of 18 white and 5 black gloves. You ... read more
asked in TCS
Q3. Find DuplicateYou have been given an integer array/list(ARR) of s ... read more
Q4. Tell me something about yourself. Define encapsulation. What is i ... read more
asked in Paytm
Q5. Puzzle : 100 people are standing in a circle .each one is allowed ... read more

Software Engineer Interview Questions & Answers

user image Sapna Kumari

posted on 27 Nov 2021

I applied via Naukri.com and was interviewed in Sep 2021. There were 4 interview rounds.

Interview Questionnaire 

1 Question

  • Q1. They are questions on the computer language we know some technical questions are. There.

Interview Preparation Tips

Interview preparation tips for other job seekers - It's easy and good very fluent process is there they are very good responser and rapid reply to all comments

I was interviewed in Jan 2022.

Round 1 - Technical 

(1 Question)

  • Q1. HTML5 , JS , CSS Questions

Interview Preparation Tips

Interview preparation tips for other job seekers - Focus of very basic concepts. Review stuff well before the interview.

PureSoftware interview questions for designations

 Senior Software Engineer

 (8)

 Software Testing Engineer

 (1)

 Software Developer

 (1)

 Senior Test Engineer

 (1)

 Senior Engineer

 (1)

 Engineer Trainee

 (1)

 Senior Leader Engineer

 (1)

 Technical Lead

 (7)

I was interviewed in Apr 2021.

Interview Questionnaire 

1 Question

  • Q1. Core Spring, spring boot, MVC, Core java,

Interview Preparation Tips

Interview preparation tips for other job seekers - Give point to point answer.

I applied via campus placement at Vasavi College of Engineering, Hyderabad and was interviewed before Oct 2020. There were 4 interview rounds.

Interview Questionnaire 

1 Question

  • Q1. The conduct aptitude test and one question from c language related to to basic programming. Second round about c c plus plus language concepts. Third round HR discussion where general questions were asked....

Interview Preparation Tips

Interview preparation tips for other job seekers - It was good, basic questions were asked. Average student can get selected easily.

Interview questions from similar companies

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

I applied via Campus Placement and was interviewed in Dec 2023. There were 3 interview rounds.

Round 1 - Aptitude Test 

It's aptitude and coding test they asked questions related to data interpretation mostly.and one coding question easy one and two SQL questions I got on joins

Round 2 - Group Discussion 

Topic given by them you have two minutes to think and then discuss with group for 5 minutes. At the end they ask for conclusion from everyone there is group of eight students and they select two or three from them

Round 3 - Technical 

(5 Questions)

  • Q1. Asked about testing
  • Q2. What are types of testing
  • Ans. 

    Types of testing include unit testing, integration testing, system testing, acceptance testing, and regression testing.

    • Unit testing: Testing individual components or functions of the software.

    • Integration testing: Testing how different components work together.

    • System testing: Testing the entire system as a whole.

    • Acceptance testing: Testing to ensure the software meets the requirements.

    • Regression testing: Testing to ensu...

  • Answered by AI
  • Q3. Project related questions
  • Q4. Hr related questions
  • Q5. Whitebox vs black box testing
  • Ans. 

    Whitebox testing is testing the internal logic of the software, while black box testing is testing the functionality without knowledge of the internal code.

    • Whitebox testing involves testing the internal structure, code paths, and algorithms of the software.

    • Black box testing involves testing the functionality, inputs, and outputs of the software without knowledge of the internal code.

    • Whitebox testing is typically done b...

  • Answered by AI

Skills evaluated in this interview

Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via LinkedIn and was interviewed in Jun 2024. There was 1 interview round.

Round 1 - Technical 

(1 Question)

  • Q1. Complete HTML,CSS,JS,ReactJs,Nextjs question
Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
-

I applied via Job Portal

Round 1 - Technical 

(5 Questions)

  • Q1. Write a program Binary Search?
  • Ans. 

    Binary search is a divide and conquer algorithm that efficiently finds the target value within a sorted array.

    • Start by defining the low and high indices of the array.

    • Calculate the middle index and compare the target value with the middle element.

    • If the target value is less than the middle element, search the left subarray. If greater, search the right subarray.

    • Repeat the process until the target value is found or the s

  • Answered by AI
  • Q2. What isCICD flow?
  • Ans. 

    CI/CD flow stands for Continuous Integration/Continuous Deployment flow, which is a software development practice where code changes are automatically built, tested, and deployed.

    • CI/CD flow involves automating the process of integrating code changes into a shared repository, running automated tests, and deploying the changes to production.

    • Continuous Integration (CI) focuses on automating the build and testing of code c...

  • Answered by AI
  • Q3. How to handle Enum feature?
  • Ans. 

    Enums are a feature in programming languages that allow you to define a set of named constants.

    • Enums can be used to improve code readability by giving meaningful names to values

    • Enums can be used in switch statements to handle different cases

    • Enums can have associated values or raw values for more flexibility

  • Answered by AI
  • Q4. Singleton handles the Syncronized ?
  • Ans. 

    Yes, Singleton handles synchronization by ensuring only one instance of a class is created and providing global access to that instance.

    • Singleton pattern restricts the instantiation of a class to one object.

    • It provides a global point of access to the instance.

    • Synchronization can be implemented in the Singleton pattern to ensure thread safety.

    • Example: Singleton pattern is commonly used in database connections to ensure

  • Answered by AI
  • Q5. What are external Libraries are used in project?
  • Ans. 

    External libraries are pre-written code that can be imported and used in a project to provide additional functionality.

    • External libraries help in reducing development time by providing ready-made solutions for common tasks.

    • Examples include React for front-end development, NumPy for scientific computing in Python, and Retrofit for making network calls in Android apps.

  • Answered by AI

Skills evaluated in this interview

Interview experience
1
Bad
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
No response

I applied via LinkedIn and was interviewed in Jul 2023. 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 - Technical 

(1 Question)

  • Q1. Asked 2 coding questions and I did that completely.
Round 3 - HR 

(1 Question)

  • Q1. 2nd round was an HR round where they asked all the questions related to HR and did salary discussion
Round 4 - One-on-one 

(1 Question)

  • Q1. This was a client round where it was taken by Goldman Sachs. They again asked 2 coding questions. Leetcode type.

Interview Preparation Tips

Interview preparation tips for other job seekers - They took 3 interviews and after that, and I cleared each round, I was ghosted by the HR after that. After multiple follow up HR said that we hire someone else for less salary. This is complete waste of time. If you don't have the budget then please don't waste time by taking multiple interviews.

PureSoftware Interview FAQs

How many rounds are there in PureSoftware Software Engineer interview?
PureSoftware interview process usually has 2 rounds. The most common rounds in the PureSoftware interview process are Technical, Resume Shortlist and HR.
How to prepare for PureSoftware Software Engineer 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 C, CSS, Embedded C, Javascript and React.Js.
What are the top questions asked in PureSoftware Software Engineer interview?

Some of the top questions asked at the PureSoftware Software Engineer interview -

  1. Insert Delete getRandom of Leetc...read more
  2. The conduct aptitude test and one question from c language related to to basic ...read more
  3. They are questions on the computer language we know some technical questions ar...read more

Tell us how to improve this page.

PureSoftware Software Engineer Salary
based on 230 salaries
₹3.8 L/yr - ₹15.5 L/yr
15% more than the average Software Engineer Salary in India
View more details

PureSoftware Software Engineer Reviews and Ratings

based on 44 reviews

3.7/5

Rating in categories

3.2

Skill development

3.5

Work-life balance

3.6

Salary

2.5

Job security

3.6

Company culture

3.2

Promotions

3.3

Work satisfaction

Explore 44 Reviews and Ratings
Senior Software Engineer
455 salaries
unlock blur

₹8.1 L/yr - ₹35 L/yr

Software Engineer
230 salaries
unlock blur

₹3.8 L/yr - ₹15.5 L/yr

Lead Engineer
184 salaries
unlock blur

₹10.3 L/yr - ₹38.5 L/yr

Technical Lead
157 salaries
unlock blur

₹13 L/yr - ₹42 L/yr

Associate Software Engineer
91 salaries
unlock blur

₹2.8 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