Upload Button Icon Add office photos

PeopleStrong

Compare button icon Compare button icon Compare

Filter interviews by

PeopleStrong Interview Questions and Answers

Updated 18 May 2025
Popular Designations

29 Interview questions

A Customer Success Manager was asked 5mo ago
Q. What are the key HR processes in an organization?
Ans. 

Key HR processes in an organization include recruitment, onboarding, performance management, training and development, and employee relations.

  • Recruitment: Attracting, sourcing, and hiring new employees.

  • Onboarding: Introducing new employees to the organization and their roles.

  • Performance management: Setting goals, evaluating performance, and providing feedback.

  • Training and development: Providing opportunities for e...

View all Customer Success Manager interview questions
A Technical Specialist was asked 8mo ago
Q. Explain normalization in SQL.
Ans. 

Normalization in SQL is the process of organizing data in a database to reduce redundancy and improve data integrity.

  • Normalization is used to eliminate data redundancy by breaking up tables into smaller, related tables.

  • It helps in reducing data anomalies such as update anomalies, insert anomalies, and delete anomalies.

  • There are different levels of normalization - 1NF, 2NF, 3NF, BCNF, and 4NF, each with specific ru...

View all Technical Specialist interview questions
A Full Stack Software Developer was asked 10mo ago
Q. Determine if a 9 x 9 Sudoku board is valid. Only the filled cells need to be validated according to the following rules: Each row must contain the digits 1-9 without repetition. Each column must contain the...
Ans. 

A valid sudoku of 9*9 is a grid where each row, column, and 3x3 subgrid contains the numbers 1-9 without repetition.

  • Each row must contain the numbers 1-9 without repetition

  • Each column must contain the numbers 1-9 without repetition

  • Each 3x3 subgrid must contain the numbers 1-9 without repetition

View all Full Stack Software Developer interview questions
A Full Stack Software Developer was asked 10mo ago
Q. Given a binary tree and two nodes, find the distance between them.
Ans. 

To find the distance between two nodes in a binary tree, we can find the distance from the root to each node and then calculate the distance between the two nodes.

  • Calculate the distance from the root to each node using a recursive function

  • Find the lowest common ancestor of the two nodes

  • Calculate the distance from each node to the lowest common ancestor and add them together to get the total distance

View all Full Stack Software Developer interview questions
A Senior Software Developer was asked 12mo ago
Q. Given a linked list, determine if it contains a cycle.
Ans. 

Use Floyd's Tortoise and Hare algorithm to find a cycle in a linked list.

  • Initialize two pointers, slow and fast, at the head of the linked list.

  • Move slow pointer by one step and fast pointer by two steps until they meet.

  • If they meet, there is a cycle in the linked list.

  • Example: 1 -> 2 -> 3 -> 4 -> 2 (cycle at node 2)

View all Senior Software Developer interview questions
An Intern was asked
Q. What is the working formula for VLOOKUP?
Ans. 

Vlookup is a function in Excel used to search for a value in a table and return a corresponding value.

  • Syntax: =VLOOKUP(lookup_value, table_array, col_index_num, [range_lookup])

  • lookup_value: The value to search for in the first column of the table.

  • table_array: The range of cells that contains the data.

  • col_index_num: The column number in the table from which to retrieve the value.

  • range_lookup: Optional. TRUE for app...

View all Intern interview questions
An Intern was asked
Q. H lookup formula
Ans. 

HLOOKUP is a function in Excel used to search for a value in the top row of a table and return a value in the same column from a specified row.

  • HLOOKUP stands for Horizontal Lookup.

  • It is used to search for a value in the top row of a table and return a value in the same column from a specified row.

  • Syntax: =HLOOKUP(lookup_value, table_array, row_index_num, [range_lookup])

  • Example: =HLOOKUP(123, A1:D4, 3, FALSE) will ...

View all Intern interview questions
Are these interview questions helpful?
A HR Recruiter was asked
Q. Are you comfortable with relocation?
Ans. 

Relocation can be comfortable with proper planning and support.

  • Proper planning and research can help make the relocation process smoother

  • Having a support system in place can ease the transition to a new location

  • Utilizing relocation services provided by the company can also make the process more comfortable

View all HR Recruiter interview questions
A Software Development Engineer 1 was asked
Q. Given an array of integers, find the contiguous subarray with the largest sum and return that sum.
Ans. 

Find the maximum sum of a subarray within an array of integers.

  • Iterate through the array and keep track of the current sum and maximum sum.

  • If the current sum becomes negative, reset it to 0.

  • Return the maximum sum found.

View all Software Development Engineer 1 interview questions
A Software Development Engineer 1 was asked
Q. How do you break a sentence into a list of strings of words?
Ans. 

Break a sentence into a list of strings of words

  • Use the split() method to break the sentence into an array of strings

  • Specify the delimiter to split the sentence by spaces

  • Handle punctuation marks and special characters appropriately

View all Software Development Engineer 1 interview questions

PeopleStrong Interview Experiences

53 interviews found

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

I appeared for an interview in Feb 2025, where I was asked the following questions.

  • Q1. Inteview 1: Java + SpringBoot + DSA (Medium level questions) + Database Questions
  • Q2. Interview 2: Java + Syste Design -> Worst experience ever, the interviewer copy pasted some questions, asked me to not explain anything and rejected for answering with the right answers, also left 40 mi...
Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(2 Questions)

  • Q1. Project Discussions
  • Q2. Java, Spring boot, Database and Angular
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

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

Round 1 - One-on-one 

(2 Questions)

  • Q1. Distance bw 2 nodes in binary tree
  • Ans. 

    To find the distance between two nodes in a binary tree, we can find the distance from the root to each node and then calculate the distance between the two nodes.

    • Calculate the distance from the root to each node using a recursive function

    • Find the lowest common ancestor of the two nodes

    • Calculate the distance from each node to the lowest common ancestor and add them together to get the total distance

  • Answered by AI
  • Q2. Valid sudoku of 9*9
  • Ans. 

    A valid sudoku of 9*9 is a grid where each row, column, and 3x3 subgrid contains the numbers 1-9 without repetition.

    • Each row must contain the numbers 1-9 without repetition

    • Each column must contain the numbers 1-9 without repetition

    • Each 3x3 subgrid must contain the numbers 1-9 without repetition

  • Answered by AI

Skills evaluated in this interview

Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - One-on-one 

(1 Question)

  • Q1. Explain normalization in sql?
  • Ans. 

    Normalization in SQL is the process of organizing data in a database to reduce redundancy and improve data integrity.

    • Normalization is used to eliminate data redundancy by breaking up tables into smaller, related tables.

    • It helps in reducing data anomalies such as update anomalies, insert anomalies, and delete anomalies.

    • There are different levels of normalization - 1NF, 2NF, 3NF, BCNF, and 4NF, each with specific rules t...

  • Answered by AI

Skills evaluated in this interview

Interview Questions & Answers

user image Anonymous

posted on 4 Mar 2025

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

I appeared for an interview in Feb 2025.

Round 1 - HR 

(2 Questions)

  • Q1. Can you tell us about yourself?
  • Q2. Can you describe your previous job?
  • Ans. 

    In my previous role, I focused on enhancing employee engagement and optimizing workplace culture through various initiatives.

    • Conducted regular employee surveys to gather feedback and identify areas for improvement.

    • Implemented wellness programs that increased participation by 30%, promoting a healthier work-life balance.

    • Collaborated with HR to develop training sessions aimed at career development, resulting in a 20% inc...

  • Answered by AI
Round 2 - Aptitude Test 

A standard 30-minute aptitude test.

SDE Interview Questions & Answers

user image Sudhanshu Ranjan

posted on 11 Dec 2024

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

Binary search

find minium in array.

Intern Interview Questions & Answers

user image Sundram Kumar

posted on 1 Apr 2024

Interview experience
3
Average
Difficulty level
Moderate
Process Duration
More than 8 weeks
Result
Not Selected

I applied via Walk-in and was interviewed in Oct 2023. There were 3 interview rounds.

Round 1 - One-on-one 

(3 Questions)

  • Q1. Excel realated questions and answers
  • Q2. Vlookup working formula
  • Ans. 

    Vlookup is a function in Excel used to search for a value in a table and return a corresponding value.

    • Syntax: =VLOOKUP(lookup_value, table_array, col_index_num, [range_lookup])

    • lookup_value: The value to search for in the first column of the table.

    • table_array: The range of cells that contains the data.

    • col_index_num: The column number in the table from which to retrieve the value.

    • range_lookup: Optional. TRUE for approxim...

  • Answered by AI
  • Q3. H lookup formula
  • Ans. 

    HLOOKUP is a function in Excel used to search for a value in the top row of a table and return a value in the same column from a specified row.

    • HLOOKUP stands for Horizontal Lookup.

    • It is used to search for a value in the top row of a table and return a value in the same column from a specified row.

    • Syntax: =HLOOKUP(lookup_value, table_array, row_index_num, [range_lookup])

    • Example: =HLOOKUP(123, A1:D4, 3, FALSE) will searc...

  • Answered by AI
Round 2 - Assignment 

Assignment 1 ,3 and 3

Round 3 - Assignment 

Payroll realated questions and answers

Interview Preparation Tips

Topics to prepare for PeopleStrong Intern interview:
  • Excel
  • Finance
  • investment
Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
Selected Selected
Round 1 - Aptitude Test 

Normal test with VARC Maths

Round 2 - Technical 

(1 Question)

  • Q1. About Principle consultancy
Round 3 - HR 

(1 Question)

  • Q1. Tell me about yourself

HR Recruiter Interview Questions & Answers

user image ammu madhuri

posted on 1 Mar 2024

Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Shine and was interviewed in Feb 2024. There were 2 interview rounds.

Round 1 - Aptitude Test 

Genral knowledge questions based on Government

Round 2 - HR 

(5 Questions)

  • Q1. Introduce yourself
  • Q2. What choosed to select this field
  • Q3. Education Backround
  • Q4. Why role change is required
  • Q5. Relocation is comfortable
  • Ans. 

    Relocation can be comfortable with proper planning and support.

    • Proper planning and research can help make the relocation process smoother

    • Having a support system in place can ease the transition to a new location

    • Utilizing relocation services provided by the company can also make the process more comfortable

  • Answered by AI
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(2 Questions)

  • Q1. DSA like stack,
  • Q2. Framework questions
Interview experience
5
Excellent
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Approached by Company and was interviewed in Dec 2023. There was 1 interview round.

Round 1 - Aptitude Test 

23 questions subjective & 6 questions objective

Top trending discussions

View All
Interview Tips & Stories
1w
toobluntforu
·
works at
Cvent
Can speak English, can’t deliver in interviews
I feel like I can't speak fluently during interviews. I do know english well and use it daily to communicate, but the moment I'm in an interview, I just get stuck. since it's not my first language, I struggle to express what I actually feel. I know the answer in my head, but I just can’t deliver it properly at that moment. Please guide me
Got a question about PeopleStrong?
Ask anonymously on communities.

PeopleStrong Interview FAQs

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

Some of the top questions asked at the PeopleStrong interview -

  1. What are the key HR processes in an organizati...read more
  2. Use of primary key & foreign k...read more
  3. Break sentence into list of string of wo...read more
What are the most common questions asked in PeopleStrong HR round?

The most common HR questions asked in PeopleStrong interview are -

  1. What are your strengths and weakness...read more
  2. Why are you looking for a chan...read more
  3. Why should we hire y...read more
How long is the PeopleStrong interview process?

The duration of PeopleStrong 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

4/5

based on 47 interview experiences

Difficulty level

Easy 13%
Moderate 87%

Duration

Less than 2 weeks 78%
2-4 weeks 17%
More than 8 weeks 4%
View more

Interview Questions from Similar Companies

Randstad Interview Questions
3.7
 • 285 Interviews
Team Lease Interview Questions
3.9
 • 224 Interviews
LanceSoft Interview Questions
3.1
 • 63 Interviews
CIEL HR Interview Questions
4.0
 • 58 Interviews
Experis IT Interview Questions
3.0
 • 51 Interviews
IMS People Interview Questions
3.5
 • 39 Interviews
View all

PeopleStrong Reviews and Ratings

based on 616 reviews

3.5/5

Rating in categories

3.4

Skill development

3.1

Work-life balance

3.1

Salary

3.4

Job security

3.3

Company culture

2.8

Promotions

3.1

Work satisfaction

Explore 616 Reviews and Ratings
Senior Recruitment Associate
266 salaries
unlock blur

₹3 L/yr - ₹7.7 L/yr

Recruitment Associate
175 salaries
unlock blur

₹2.5 L/yr - ₹5.2 L/yr

Recruitment Specialist
121 salaries
unlock blur

₹3.6 L/yr - ₹10.6 L/yr

Payroll Specialist
94 salaries
unlock blur

₹2 L/yr - ₹7.2 L/yr

Principal Consultant
78 salaries
unlock blur

₹3.1 L/yr - ₹11.3 L/yr

Explore more salaries
Compare PeopleStrong with

Randstad

3.7
Compare

Team Lease

3.9
Compare

Innovsource Services

3.9
Compare

IMPACT Infotech

3.4
Compare
write
Share an Interview