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

I appeared for an interview before Jul 2016.

Interview Questionnaire 

6 Questions

  • Q1. Use of primary key & foreign key
  • Ans. 

    Primary keys uniquely identify records in a table, while foreign keys establish relationships between tables.

    • Primary keys ensure data integrity by enforcing uniqueness and preventing duplicate records.

    • Foreign keys create relationships between tables, allowing data to be linked and referenced across multiple tables.

    • Primary keys are typically used as foreign keys in related tables to establish relationships.

    • Foreign keys ...

  • Answered by AI
  • Q2. How to use inner joins
  • Ans. 

    Inner joins are used to combine rows from two or more tables based on a related column between them.

    • Inner joins return only the matching rows from both tables.

    • The join condition is specified using the ON keyword followed by the column(s) to join on.

    • Inner joins can be used to retrieve data from multiple tables based on a common column.

    • Example: SELECT * FROM table1 INNER JOIN table2 ON table1.column = table2.column;

  • Answered by AI
  • Q3. Use of select command
  • Ans. 

    The SELECT command is used to retrieve data from a database table.

    • SELECT is a fundamental SQL command used in database management systems.

    • It allows you to specify the columns and rows you want to retrieve from a table.

    • You can use various clauses like WHERE, ORDER BY, GROUP BY, etc. to filter and sort the data.

    • The result of a SELECT query is a result set or a cursor containing the selected data.

    • Example: SELECT * FROM em...

  • Answered by AI
  • Q4. How to create table
  • Ans. 

    To create a table, use the CREATE TABLE statement in SQL.

    • Specify the table name after the CREATE TABLE keyword.

    • List the column names and their data types within parentheses.

    • Add any constraints or indexes as needed.

    • Example: CREATE TABLE employees (id INT, name VARCHAR(50), age INT);

  • Answered by AI
  • Q5. Self introduction
  • Q6. Last company job roles
  • Ans. 

    I worked as a Systems Analyst at XYZ Company, where I was responsible for troubleshooting and resolving application issues.

    • Troubleshooting and resolving application issues

    • Collaborating with developers to implement fixes

    • Providing technical support to end users

  • Answered by AI

Interview Preparation Tips

Round: Technical Interview
Tips: Basics must be cleared.

Round: HR Interview
Tips: Candidate must be confident

Skills evaluated in this interview

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