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