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 Software Developer was asked
Q. 

Count Set Bits Problem Statement

Given a positive integer N, compute the total number of '1's in the binary representation of all numbers from 1 to N. Return this count modulo 1e9+7 because the result can ...

Ans. 

The task is to count the total number of '1' in the binary representation of all numbers from 1 to N.

  • Convert each number from 1 to N into its binary representation

  • Count the number of '1' bits in each binary representation

  • Sum up the counts of '1' bits for all numbers

  • Return the sum modulo 1e9+7

View all Software Developer interview questions
A Software Developer was asked
Q. 

Shortest Path in an Unweighted Graph

The city of Ninjaland is represented as an unweighted graph with houses and roads. There are 'N' houses numbered 1 to 'N', connected by 'M' bidirectional roads. A road ...

Ans. 

The problem is to find the shortest path between two houses in an unweighted graph.

  • The graph represents the city of Ninjaland with houses connected by roads.

  • The input consists of the number of test cases, number of houses and roads, starting and ending house, and the roads between houses.

  • The output is a vector of nodes representing the shortest path from the starting house to the ending house.

  • If there are multiple...

View all Software Developer interview questions
A Software Developer was asked
Q. 

Reverse Words in a String: Problem Statement

You are given a string of length N. Your task is to reverse the string word by word. The input may contain multiple spaces between words and may have leading or...

Ans. 

The task is to reverse the words in a given string, removing any leading or trailing spaces and replacing multiple spaces between words with a single space.

  • Split the string into words using spaces as delimiters

  • Reverse the order of the words

  • Join the reversed words with a single space between them

  • Remove any leading or trailing spaces

View all Software Developer interview questions
A Software Developer was asked
Q. 

Aggressive Cows Problem Statement

Given an array representing positions of stalls and an integer ‘K’ representing the number of aggressive cows, determine the largest minimum distance between any two cows w...

Ans. 

The problem requires assigning aggressive cows to stalls in a way that maximizes the minimum distance between any two cows.

  • Sort the array of stall positions in ascending order.

  • Use binary search to find the largest minimum distance between cows.

  • Check if it is possible to assign cows with this minimum distance by iterating through the sorted array.

  • If it is possible, update the maximum distance and continue binary se...

View all Software Developer interview questions
A Software Developer was asked
Q. 

Maximum Path Sum in a Matrix

Given an N*M matrix filled with integer numbers, determine the maximum sum that can be obtained from a path starting from any cell in the first row to any cell in the last row.

...
Ans. 

The question asks to find the maximum sum that can be obtained from a path starting from any cell in the first row to any cell in the last row of a given matrix.

  • Iterate through each cell in the first row and calculate the maximum sum path ending at that cell

  • For each cell, calculate the maximum sum path ending at that cell by considering the three possible directions

  • Store the maximum sum path ending at each cell in...

View all Software Developer interview questions
A Software Developer was asked
Q. 

Remove Consecutive Duplicates From String Problem Statement

Given a string STR consisting of both lower and upper case characters, your task is to remove consecutive duplicate characters from the string an...

Ans. 

The task is to remove consecutive duplicate characters from a given string and return the new string.

  • Iterate through the characters of the string

  • Compare each character with the next character

  • If they are the same, skip the next character

  • If they are different, add the current character to the new string

  • Return the new string

View all Software Developer interview questions
A Full Stack Developer was asked
Q. 

Permutation In String Problem Statement

Given two strings, str1 and str2, determine whether str2 contains any permutation of str1 as a substring.

Input:

str1 = “ab”
str2 = “aoba”

Output:

True

Example:

...
Ans. 

Check if a string contains any permutation of another string as a substring.

  • Iterate through str2 with a sliding window of length str1, check if any permutation of str1 is present.

  • Use a hashmap to store the frequency of characters in str1 and str2 for comparison.

  • If the frequencies of characters in the sliding window match the frequencies of characters in str1, return True.

View all Full Stack Developer interview questions
Are these interview questions helpful?
A Full Stack Developer was asked
Q. 

Rat in a Maze Problem Statement

You need to determine all possible paths for a rat starting at position (0, 0) in a square maze to reach its destination at (N-1, N-1). The maze is represented as an N*N mat...

Ans. 

Find all possible paths for a rat in a maze from start to finish, moving in 'U', 'D', 'L', 'R' directions.

  • Use backtracking to explore all possible paths in the maze.

  • Keep track of visited cells to avoid loops.

  • Recursively try moving in all directions and backtrack when reaching dead ends.

  • Return the valid paths in alphabetical order as an array of strings.

View all Full Stack Developer interview questions
A Full Stack Developer was asked
Q. 

Minimum Time Problem Statement

In a city with ‘N’ junctions and ‘M’ bi-directional roads, each junction is connected to other junctions with specified travel times. No road connects a junction to itself, a...

Ans. 

The problem involves finding the minimum time to travel from a source junction to a destination junction in a city with specified travel times and green light periods.

  • Input consists of the number of test cases, number of junctions and roads, green light periods, road connections with travel times, and source/destination junctions.

  • Output should be the minimum time needed from source to destination, or -1 if destina...

View all Full Stack Developer interview questions

PeopleStrong Interview Experiences

53 interviews found

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

Top trending discussions

View All
Interview Tips & Stories
6d (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 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
 • 287 Interviews
Team Lease Interview Questions
3.9
 • 225 Interviews
LanceSoft Interview Questions
3.2
 • 63 Interviews
CIEL HR Interview Questions
3.9
 • 59 Interviews
Experis IT Interview Questions
3.0
 • 51 Interviews
IMS People Interview Questions
3.4
 • 39 Interviews
View all

PeopleStrong Reviews and Ratings

based on 619 reviews

3.4/5

Rating in categories

3.3

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 619 Reviews and Ratings
Senior Recruitment Associate
261 salaries
unlock blur

₹3.5 L/yr - ₹7.7 L/yr

Recruitment Associate
175 salaries
unlock blur

₹2.5 L/yr - ₹5.2 L/yr

Recruitment Specialist
118 salaries
unlock blur

₹4.5 L/yr - ₹9.8 L/yr

Payroll Specialist
97 salaries
unlock blur

₹2.3 L/yr - ₹7.2 L/yr

Software Development Engineer II
81 salaries
unlock blur

₹13.3 L/yr - ₹24 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