Upload Button Icon Add office photos

Filter interviews by

People Tech Group Front end Developer Interview Questions and Answers

Updated 27 May 2024

People Tech Group Front end Developer Interview Experiences

1 interview found

Interview experience
1
Bad
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via LinkedIn and was interviewed in Nov 2023. There were 2 interview rounds.

Round 1 - Technical 

(2 Questions)

  • Q1. Intermediate level questions on your tech stack. What is SSR
  • Q2. Use memo vs usecallback
  • Ans. 

    useMemo is used to memoize a value, while useCallback is used to memoize a function.

    • useMemo is used to memoize a computed value and recompute it only when its dependencies change.

    • useCallback is used to memoize a function instance and re-render it only when its dependencies change.

    • Example: useMemo(() => computeExpensiveValue(a, b), [a, b]) vs useCallback(() => handleButtonClick(a, b), [a, b])

  • Answered by AI
Round 2 - Technical 

(1 Question)

  • Q1. Write a react application for tic-tac-toe.
  • Ans. 

    A React application for tic-tac-toe game.

    • Create a Board component to display the game grid

    • Implement logic to handle player turns and winning conditions

    • Use state management to update the game state

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Very bad experience with the company after I had cleared round 1 which were moderate level questions I was given a offer letter. Post which after some days they told me their was one more extra round which I needed to clear after I had got the offer letter. I did well in round 2 as well but didn't hear anything back . Very unprofessional.

Skills evaluated in this interview

Interview questions from similar companies

Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via LinkedIn and was interviewed in Dec 2024. There were 4 interview rounds.

Round 1 - Aptitude Test 

QUANT, MATHS, HTML, CSS

Round 2 - Coding Test 

DSA WAS ASKED TOGETHER WITH SOME CORE SUBJECT QUESTIONS.

Round 3 - Coding Test 

DSA WAS ASKED TOGETHER WITH SOME PUZZLES.

Round 4 - HR 

(2 Questions)

  • Q1. BASIC COMMON HR QUES
  • Q2. BASIC COMMON HR QUES

Interview Preparation Tips

Topics to prepare for TO THE NEW Front end Developer interview:
  • HTML
  • SQL
  • React.Js
  • Node.Js
  • CSS
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via Naukri.com and was interviewed in Sep 2024. There was 1 interview round.

Round 1 - Technical 

(1 Question)

  • Q1. Javascript question
Interview experience
4
Good
Difficulty level
Easy
Process Duration
-
Result
-

I applied via Approached by Company and was interviewed in Feb 2024. There was 1 interview round.

Round 1 - Technical 

(4 Questions)

  • Q1. What is bridge? What is the new architecture?
  • Ans. 

    Bridge is a structural design pattern that decouples an abstraction from its implementation. The new architecture refers to modern design patterns and technologies used in software development.

    • Bridge pattern allows the client code to work with different implementations of an interface independently.

    • The new architecture in front end development may include concepts like component-based architecture, state management lib...

  • Answered by AI
  • Q2. How will you optimize a react native app
  • Ans. 

    Optimizing a React Native app involves reducing bundle size, improving performance, and enhancing user experience.

    • Use code splitting to reduce initial load time

    • Optimize images and assets for smaller file sizes

    • Implement lazy loading for components that are not immediately visible

    • Minimize the use of third-party libraries and only include necessary dependencies

    • Utilize performance monitoring tools like React Native Perform

  • Answered by AI
  • Q3. What is context API
  • Ans. 

    Context API is a feature in React that allows sharing data between components without having to pass props through every level of the component tree.

    • Context API provides a way to pass data through the component tree without having to pass props down manually at every level.

    • It is useful for sharing global data such as themes, user authentication, or language preferences.

    • Context API consists of three main parts: Provider...

  • Answered by AI
  • Q4. What is hoisting
  • Ans. 

    Hoisting is a JavaScript mechanism where variable and function declarations are moved to the top of their containing scope during compilation.

    • Variable declarations are hoisted to the top of their scope, but not their initializations.

    • Function declarations are fully hoisted, including their definitions.

    • Hoisting can lead to unexpected behavior if not understood properly.

  • Answered by AI

Skills evaluated in this interview

Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(2 Questions)

  • Q1. Angular basics regarding lifecycle hooks, rxjs, data bindingetc
  • Q2. Coding to find the common characters comparing 3 strings
  • Ans. 

    Finding common characters in 3 strings using coding

    • Create a function that takes in 3 strings as input

    • Iterate through each character of the first string and check if it exists in the other 2 strings

    • Store the common characters in an array and return it

  • Answered by AI

Skills evaluated in this interview

Interview experience
5
Excellent
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via Company Website and was interviewed in May 2024. There was 1 interview round.

Round 1 - Coding Test 

1 hr -duration and Question is Full of basics and technology what we have used

Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
-
Round 1 - HR 

(1 Question)

  • Q1. Prev job exp details

I applied via Naukri.com

Round 1 - Technical 

(1 Question)

  • Q1. Basic JS & React JS question
Round 2 - Technical 

(1 Question)

  • Q1. Advance level of JS and React related question and coding skills test as well.
Round 3 - HR 

(1 Question)

  • Q1. What are your salary expectations?
  • Ans. 

    I am open to discussing salary based on the responsibilities and requirements of the position.

    • I am flexible and open to negotiation.

    • I am looking for a fair and competitive salary.

    • I am more interested in the overall compensation package rather than a specific number.

    • I would like to be compensated based on my skills, experience, and the value I can bring to the company.

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Good interview procedures.
Compensation is good.
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via Approached by Company and was interviewed in May 2024. There was 1 interview round.

Round 1 - Technical 

(1 Question)

  • Q1. Java script bubbling concept
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
-
Result
Not Selected

I applied via Recruitment Consulltant and was interviewed in Mar 2024. There was 1 interview round.

Round 1 - Technical 

(5 Questions)

  • Q1. Display a list of items using Pagination concept in React using any online coding editor.
  • Ans. 

    Display a list of items using Pagination concept in React

    • Create a list of items to display

    • Implement pagination logic to display a limited number of items per page

    • Add navigation buttons to switch between pages

  • Answered by AI
  • Q2. Check if pair sum exists in the array (Two Sum)?
  • Ans. 

    Check if pair sum exists in the array using a hash map.

    • Use a hash map to store the difference between the target sum and each element in the array.

    • Iterate through the array and check if the current element exists in the hash map.

    • Return true if a pair sum exists, otherwise return false.

  • Answered by AI
  • Q3. React LifeCycle?
  • Q4. How do you improve the performance of a website?
  • Ans. 

    Improving website performance involves optimizing code, reducing server requests, using caching, and optimizing images.

    • Optimize code by minifying CSS, JavaScript, and HTML

    • Reduce server requests by combining files and using asynchronous loading

    • Utilize caching techniques like browser caching and server-side caching

    • Optimize images by resizing, compressing, and using modern image formats like WebP

  • Answered by AI
  • Q5. What is NextJS?
  • Ans. 

    NextJS is a React framework that allows for server-side rendering and static site generation.

    • NextJS is built on top of React, providing features like server-side rendering and static site generation.

    • It simplifies the process of building React applications by handling routing, code splitting, and more out of the box.

    • NextJS also supports API routes for serverless functions and data fetching.

    • It offers features like automa...

  • Answered by AI

Skills evaluated in this interview

People Tech Group Interview FAQs

How many rounds are there in People Tech Group Front end Developer interview?
People Tech Group interview process usually has 2 rounds. The most common rounds in the People Tech Group interview process are Technical.
How to prepare for People Tech Group Front end 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 People Tech Group. The most common topics and skills that interviewers at People Tech Group expect are Javascript, AWS, CSS, Front End and HTML.
What are the top questions asked in People Tech Group Front end Developer interview?

Some of the top questions asked at the People Tech Group Front end Developer interview -

  1. Write a react application for tic-tac-t...read more
  2. use memo vs usecallb...read more
  3. intermediate level questions on your tech stack. What is ...read more

Tell us how to improve this page.

People are getting interviews through

based on 1 People Tech Group interview
Job Portal
100%
Low Confidence
?
Low Confidence means the data is based on a small number of responses received from the candidates.
People Tech Group Front end Developer Salary
based on 7 salaries
₹3 L/yr - ₹4.5 L/yr
34% less than the average Front end Developer Salary in India
View more details

People Tech Group Front end Developer Reviews and Ratings

based on 1 review

4.0/5

Rating in categories

4.0

Skill development

4.0

Work-Life balance

4.0

Salary & Benefits

4.0

Job Security

4.0

Company culture

4.0

Promotions/Appraisal

4.0

Work Satisfaction

Explore 1 Review and Rating
Junior Software Engineer
468 salaries
unlock blur

₹1 L/yr - ₹5.9 L/yr

Software Engineer
437 salaries
unlock blur

₹2.4 L/yr - ₹12.5 L/yr

Senior Software Engineer
142 salaries
unlock blur

₹7 L/yr - ₹27 L/yr

Softwaretest Engineer
140 salaries
unlock blur

₹2 L/yr - ₹10.1 L/yr

Associate Software Engineer
134 salaries
unlock blur

₹2 L/yr - ₹5.1 L/yr

Explore more salaries
Compare People Tech Group with

Infosys

3.7
Compare

Wipro

3.7
Compare

TCS

3.7
Compare

HCLTech

3.5
Compare

Calculate your in-hand salary

Confused about how your in-hand salary is calculated? Enter your annual salary (CTC) and get your in-hand salary
Did you find this page helpful?
Yes No
write
Share an Interview