Upload Button Icon Add office photos

PeopleStrong

Compare button icon Compare button icon Compare

Filter interviews by

Clear (1)

PeopleStrong Software Development Engineer Interview Questions and Answers

Updated 29 May 2023

PeopleStrong Software Development Engineer Interview Experiences

1 interview found

Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Campus Placement and was interviewed before May 2022. There were 3 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 Resume tips
Round 2 - Technical 

(5 Questions)

  • Q1. Java developer experience questions
  • Q2. What is multi threading
  • Ans. 

    Multi threading is the ability of a program to perform multiple tasks concurrently.

    • It allows for efficient use of CPU resources

    • Threads share the same memory space

    • Synchronization is required to avoid race conditions

    • Examples include web servers handling multiple requests simultaneously

  • Answered by AI
  • Q3. Caching and related concepts
  • Q4. String is immutable or mutable in java
  • Ans. 

    String is immutable in Java

    • Immutable means once created, the value cannot be changed

    • String class in Java is final and cannot be extended

    • Any operation on a string creates a new string object

  • Answered by AI
  • Q5. Java 8 features andindepth understand
Round 3 - Coding Test 

DSA Sting list array recursion

Interview Preparation Tips

Interview preparation tips for other job seekers - Be confident with your technical skills

Skills evaluated in this interview

Interview questions from similar companies

Round 1 - Aptitude Test 

The level of test was mixture of easy and tough questions

Round 2 - Technical 

(1 Question)

  • Q1. Some analytics questions related to problem solving
Round 3 - HR 

(1 Question)

  • Q1. To describe about any recently watched movie
  • Ans. 

    I recently watched the movie 'Inception'.

    • Directed by Christopher Nolan

    • Genre: Science fiction, Action, Thriller

    • Starring Leonardo DiCaprio, Joseph Gordon-Levitt, Ellen Page

    • The movie explores the concept of shared dreaming and subconscious manipulation

    • It has mind-bending visuals and a complex plot

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Be yourself , have confidence in you. The technical round will be related to the JD.
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Coding Test 

Focused more on Logics and DSA

Round 2 - HR 

(1 Question)

  • Q1. Just with Formal Questions
Interview experience
5
Excellent
Difficulty level
Easy
Process Duration
2-4 weeks
Result
Not Selected

I applied via Job Fair and was interviewed in Jan 2024. There was 1 interview round.

Round 1 - One-on-one 

(1 Question)

  • Q1. Java : Find all most occuring characters in given string only using arrays
  • Ans. 

    Use arrays to find all most occurring characters in a given string in Java.

    • Create an array to store the frequency of each character in the string.

    • Iterate through the string and update the frequency array.

    • Find the maximum frequency and then iterate through the frequency array to find all characters with that frequency.

  • Answered by AI

Skills evaluated in this interview

Interview experience
1
Bad
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(2 Questions)

  • Q1. Tell Me about yourself
  • Q2. What is C# and coding.
Round 2 - HR 

(1 Question)

  • Q1. What is your CCTC?

Interview Preparation Tips

Interview preparation tips for other job seekers - Consider this company your last choice.
Interview experience
5
Excellent
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Company Website and was interviewed before Jul 2023. There was 1 interview round.

Round 1 - One-on-one 

(3 Questions)

  • Q1. What is useState?
  • Ans. 

    useState is a hook in React that allows functional components to have state.

    • useState is a React hook used in functional components to manage state.

    • It returns an array with the current state value and a function to update that value.

    • Example: const [count, setCount] = useState(0);

  • Answered by AI
  • Q2. What's useEffect?
  • Ans. 

    useEffect is a hook in React that allows performing side effects in function components.

    • Used in React functional components to perform side effects

    • Executes after render and after every update

    • Can be used to fetch data, subscribe to events, update the DOM, etc.

  • Answered by AI
  • Q3. What is Redux and state management?
  • Ans. 

    Redux is a predictable state container for JavaScript apps. It helps manage the state of an application in a centralized way.

    • Redux is a state management library commonly used with React.

    • It allows for a single source of truth for the state of an application.

    • Actions are dispatched to update the state, and reducers specify how the state changes in response to actions.

    • Redux DevTools can be used to track state changes and d...

  • Answered by AI

Skills evaluated in this interview

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

(1 Question)

  • Q1. Based on profile and Job description

I applied via Naukri.com and was interviewed in Dec 2021. There were 4 interview rounds.

Round 1 - Coding Test 

2 easy level coding questions to be solved

Round 2 - One-on-one 

(1 Question)

  • Q1. One dsa question which needs to be live coded in 45 mins
Round 3 - One-on-one 

(1 Question)

  • Q1. Same as first round . But 2 coding questions might be asked
Round 4 - HR 

(1 Question)

  • Q1. Did not happen . Don’t know why

Interview Preparation Tips

Interview preparation tips for other job seekers - Please select company wisely.
As this is startup it needs you to be very good at technical and debugging skills.
I am feeling stressed here
Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
-
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 Resume tips
Round 2 - Coding Test 

4 coding ques + 15 technical aptitude

Round 3 - Coding Test 

4 Coding Ques + 10 technical aptitude

Round 4 - Technical 

(2 Questions)

  • Q1. Coding question
  • Q2. Group by query, dbms
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via Job Fair and was interviewed in Oct 2024. There were 2 interview rounds.

Round 1 - Coding Test 

It was an online test for interview

Round 2 - Technical 

(2 Questions)

  • Q1. Tell me about dijistkras algorithm
  • Ans. 

    Dijkstra's algorithm is a graph search algorithm that finds the shortest path between nodes in a graph.

    • Dijkstra's algorithm uses a priority queue to select the node with the smallest distance from the start node.

    • It maintains a list of tentative distances to each node and updates them as it explores the graph.

    • The algorithm is commonly used in routing and network protocols to find the shortest path between nodes.

    • Example:...

  • Answered by AI
  • Q2. Tell me about your projects

Skills evaluated in this interview

Contribute & help others!
anonymous
You can choose to be anonymous

PeopleStrong Interview FAQs

How many rounds are there in PeopleStrong Software Development Engineer interview?
PeopleStrong interview process usually has 3 rounds. The most common rounds in the PeopleStrong interview process are Resume Shortlist, Technical and Coding Test.
What are the top questions asked in PeopleStrong Software Development Engineer interview?

Some of the top questions asked at the PeopleStrong Software Development Engineer interview -

  1. String is immutable or mutable in j...read more
  2. What is multi thread...read more
  3. Java 8 features andindepth underst...read more

Recently Viewed

INTERVIEWS

Reliance BP Mobility

No Interviews

INTERVIEWS

Aakash Educational Services

No Interviews

INTERVIEWS

Bandhan Bank

No Interviews

INTERVIEWS

LTIMindtree

No Interviews

INTERVIEWS

Escorts Kubota Limited

No Interviews

INTERVIEWS

UltraTech Cement

No Interviews

INTERVIEWS

Cushman & Wakefield

No Interviews

INTERVIEWS

Junglee Games

No Interviews

INTERVIEWS

Islamia College of Science and Commerce

No Interviews

INTERVIEWS

Escorts Kubota Limited

No Interviews

Tell us how to improve this page.

PeopleStrong Software Development Engineer Interview Process

based on 1 interview

Interview experience

4
  
Good
View more

Interview Questions from Similar Companies

SAP Interview Questions
4.2
 • 283 Interviews
Randstad Interview Questions
3.8
 • 260 Interviews
Team Lease Interview Questions
3.9
 • 201 Interviews
Ramco Systems Interview Questions
3.9
 • 65 Interviews
LanceSoft Interview Questions
3.1
 • 57 Interviews
CIEL HR Interview Questions
4.0
 • 48 Interviews
Experis IT Interview Questions
3.0
 • 48 Interviews
Darwinbox Interview Questions
3.9
 • 44 Interviews
View all
PeopleStrong Software Development Engineer Salary
based on 19 salaries
₹12 L/yr - ₹15 L/yr
8% less than the average Software Development Engineer Salary in India
View more details

PeopleStrong Software Development Engineer Reviews and Ratings

based on 3 reviews

2.8/5

Rating in categories

2.5

Skill development

3.0

Work-life balance

2.2

Salary

3.0

Job security

1.8

Company culture

1.0

Promotions

1.8

Work satisfaction

Explore 3 Reviews and Ratings
Senior Recruitment Associate
221 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Recruitment Associate
178 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Recruitment Specialist
126 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Payroll Specialist
94 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Principal Consultant
73 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Explore more salaries
Compare PeopleStrong with

Darwinbox

3.9
Compare

SAP

4.2
Compare

Ramco Systems

3.9
Compare

greytHR

4.0
Compare
Did you find this page helpful?
Yes No
write
Share an Interview
Rate your experience using AmbitionBox
Terrible
Terrible
Poor
Poor
Average
Average
Good
Good
Excellent
Excellent