Glassdoor users rated their interview experience at People Group as 100% positive with a difficulty rating score of 2 out of 5 (where 5 is the highest level of difficulty). Candidates interviewing for Office Administrator and rated their interviews as the hardest, whereas interviews for Office Administrator and roles were rated as the easiest.
The hiring process at People Group takes an average of 7 days when considering 1 user submitted interviews across all job titles. Candidates applying for Office Administrator had the quickest hiring process (on average 7 days), whereas Office Administrator roles had the slowest hiring process (on average 7 days).
1 DSA Question and online test on indepth NodeJS Questions. guess output for serveral questions and Event loops several questions. Design a nodejs server for specific requirement given.
Lot of Event loop questions and SQL queries, optimizations, in depth questions.
How to migrate DB with zero down time?
How to maintain idempotency in an API?
Interview questions [1]
Question 1
1 DSA Question and online test on indepth NodeJS Questions. guess output for serveral questions and Event loops several questions. Design a nodejs server for specific requirement given.
Lot of Event loop questions and SQL queries, optimizations, in depth questions.
How to migrate DB with zero down time?
How to maintain idempotency in an API?
easy interview. The process went smoothly had 2 rounds of interview ,Timings are flexible work pressure but manageable worked for 3 + yrs learn lot of thing things exposure with carrier growth ------f
I applied through a staffing agency. The process took 2 weeks. I interviewed at People Group in Jul 2024
Interview
The interviewers asked relevant questions: 2 mid-level difficult coding (if you do LeetCode) and output prediction questions. There was some background(office buzz) noise, making it difficult to hear the interviewer at times.
Interview questions [3]
Question 1
1. Rotate a matrix 90 degrees without using any other variable to store the result. Matrix values are random, which means they may or may not be in sorted order. Also, the number of rows can be anything.
eg.
Input
[
[1, 2, 3],
[4, 5, 6],
[7, 8, 9]
]
Expected output:
[
[7, 4, 1],
[8, 5, 2],
[9, 6, 3]
]