Upload Button Icon Add office photos

Filter interviews by

PeopleStrong Full Stack Developer Interview Questions and Answers

Updated 27 Oct 2021

PeopleStrong Full Stack Developer Interview Experiences

1 interview found

I was interviewed in Aug 2021.

Round 1 - Coding Test 

(3 Questions)

Round duration - 90 minutes
Round difficulty - Hard

The round was online. It had 3 coding questions to be solved.  Was asked about why are the javascript and jquery used? What is the difference between angular 8 and angular?

  • Q1. 

    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. Permutation In String
    • Check for Base Case i.e if Length of str1 > Length of str2, return false.As substring length is always greater than or equal to permutation never small.
    • Generate all the permutations of the short string and then check for each permutation if this string is present as a substring of the second string or not.
    • Initialize a global boolean value named flag.
    • To generate all the permutations of the small ...
  • Answered Anonymously
  • Q2. 

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

  • Ans. Depth First Search

    This approach will use DFS(Depth First Search) to make a recursive function in which we pass the currCost, which is the current cost. If the light is not green when we reach that junction, we have to add the waiting time in currCost. After that, we will call the recursive function on all the adjacent unvisited junctions by incrementing the currCost with the weight of the edge. We will maintain a vari...

  • Answered Anonymously
  • Q3. 

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

  • Ans. Bactracking

    Approach: We can start the traversal of the paths from the rat’s starting position, i.e. (0,0) keeping track of the visited cells during the traversal. We will recursively go through all the paths possible until the last index of the grid (destination) is reached, and add the path information using which the rat successfully reached the end.

     

    Algorithm is as follows:

     

    1. Take the starting position of th...
  • Answered Anonymously

Interview Preparation Tips

Eligibility criteriaNo criteriaPeopleStrong interview preparation:Topics to prepare for the interview - Arrays, string, oops, dbms, dyanamic programming, trees, graphsTime required to prepare for the interview - 6 monthsInterview preparation tips for other job seekers

Tip 1 : practice coding questions
Tip 2 : Search and study previous interview questions

Application resume tips for other job seekers

Tip 1 : Mention the things according to role
Tip 2 : just write a clear one page resume

Final outcome of the interviewRejected

Skills evaluated in this interview

Interview questions from similar companies

Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Aptitude Test 

Aptitude and coding logis asked

Round 2 - Coding Test 

Few coding questions and MCQ based

Round 3 - One-on-one 

(1 Question)

  • Q1. About project and last change request i did
Round 4 - HR 

(1 Question)

  • Q1. Asked about companies and experiences
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Coding Test 

It's was MCQ based test

Round 2 - Technical 

(1 Question)

  • Q1. Tell me some of the oops concepts
  • Ans. 

    Some OOP concepts include inheritance, encapsulation, polymorphism, and abstraction.

    • Inheritance: Allows a class to inherit properties and behavior from another class.

    • Encapsulation: Bundling data and methods that operate on the data into a single unit.

    • Polymorphism: Ability to present the same interface for different data types.

    • Abstraction: Hiding the complex implementation details and showing only the necessary features

  • Answered by AI
Round 3 - Technical 

(1 Question)

  • Q1. What is Guid Id please explain
  • Ans. 

    A Guid Id is a globally unique identifier used in software development to uniquely identify objects or entities.

    • Guid Ids are 128-bit integers represented as a hexadecimal string.

    • They are typically used in databases, APIs, and various software systems to ensure uniqueness.

    • Example: 6B29FC40-CA47-1067-B31D-00DD010662DA

  • Answered by AI
Round 4 - HR 

(1 Question)

  • Q1. Discussion about salary

Interview Preparation Tips

Interview preparation tips for other job seekers - Go through the basics

Skills evaluated in this interview

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

(2 Questions)

  • Q1. Abstract class and interface
  • Q2. Oops concepts and
Interview experience
3
Average
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
Selected Selected

I applied via LinkedIn and was interviewed in Apr 2024. There were 2 interview rounds.

Round 1 - Aptitude Test 

Profit and loss average , simple intesest

Round 2 - Coding Test 

Fibonacci numbers , prime numbers , even odd numbers

Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
-
Round 1 - One-on-one 

(1 Question)

  • Q1. Check Valid parenthesis
  • Ans. 

    Check if a string of parentheses is valid

    • Use a stack to keep track of opening parentheses

    • Pop from stack when encountering a closing parenthesis

    • If stack is empty at the end and all parentheses are matched, it is valid

  • Answered by AI

Skills evaluated in this interview

Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Coding Test 

Medium leveln coding round

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

(1 Question)

  • Q1. Tell me about yourself
Round 2 - One-on-one 

(1 Question)

  • Q1. Technical questions
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(2 Questions)

  • Q1. SQL, Oracle PL SQL QUESTIONS
  • Q2. DML DDL TRIGGER PROCEDURE ETC

Interview Preparation Tips

Interview preparation tips for other job seekers - Good company
Interview experience
3
Average
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Recruitment Consulltant and was interviewed before Apr 2022. There were 2 interview rounds.

Round 1 - Resume Shortlist 
Pro Tip by AmbitionBox:
Keep your resume crisp and to the point. A recruiter looks at your resume for an average of 6 seconds, make sure to leave the best impression.
View all tips
Round 2 - Technical 

(2 Questions)

  • Q1. Tell me about your self
  • Q2. Javascript, node js, sdlc

Interview Preparation Tips

Topics to prepare for Team Lease Full Stack Web Developer interview:
  • Node.Js
  • Javascript
Interview preparation tips for other job seekers - Interview was easy

PeopleStrong Interview FAQs

How to prepare for PeopleStrong Full Stack Developer 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 Full Stack, Java, Angularjs, NoSQL and Spring Boot.

Tell us how to improve this page.

Interview Questions from Similar Companies

SAP Interview Questions
4.2
 • 309 Interviews
Randstad Interview Questions
3.8
 • 259 Interviews
Team Lease Interview Questions
3.9
 • 200 Interviews
Ramco Systems Interview Questions
3.9
 • 64 Interviews
Experis IT Interview Questions
3.0
 • 48 Interviews
CIEL HR Interview Questions
4.0
 • 47 Interviews
Darwinbox Interview Questions
3.9
 • 43 Interviews
View all
PeopleStrong Full Stack Developer Salary
based on 5 salaries
₹9 L/yr - ₹15 L/yr
34% more than the average Full Stack Developer Salary in India
View more details

PeopleStrong Full Stack Developer Reviews and Ratings

based on 2 reviews

5.0/5

Rating in categories

4.1

Skill development

4.1

Work-life balance

4.0

Salary

4.1

Job security

4.1

Company culture

4.1

Promotions

4.1

Work satisfaction

Explore 2 Reviews and Ratings
Senior Recruitment Associate
249 salaries
unlock blur

₹3 L/yr - ₹8.5 L/yr

Recruitment Associate
181 salaries
unlock blur

₹2.5 L/yr - ₹5.2 L/yr

Recruitment Specialist
126 salaries
unlock blur

₹3.6 L/yr - ₹10.6 L/yr

Payroll Specialist
93 salaries
unlock blur

₹2.2 L/yr - ₹7 L/yr

Principal Consultant
72 salaries
unlock blur

₹3.5 L/yr - ₹11 L/yr

Explore more salaries
Compare PeopleStrong with

Darwinbox

3.9
Compare

SAP

4.2
Compare

Ramco Systems

3.9
Compare

Sumtotal Systems

3.9
Compare
Did you find this page helpful?
Yes No
write
Share an Interview