Upload Button Icon Add office photos

Filter interviews by

PeopleGrove Full Stack Developer Interview Questions, Process, and Tips

Updated 5 Oct 2024

PeopleGrove Full Stack Developer Interview Experiences

1 interview found

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

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

Round 1 - One-on-one 

(7 Questions)

  • Q1. What is JWT and how we use it?
  • Ans. 

    JWT stands for JSON Web Token, a compact and self-contained way for securely transmitting information between parties as a JSON object.

    • JWT is commonly used for authentication and information exchange in web applications.

    • It consists of three parts: header, payload, and signature.

    • JWTs are typically sent in the Authorization header of HTTP requests.

    • Example: eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiIxMjM0NTY3ODkwIiwi...

  • Answered by AI
  • Q2. What does CORS refer?
  • Ans. 

    CORS stands for Cross-Origin Resource Sharing, a security feature that allows servers to specify who can access their resources.

    • CORS is a security feature implemented by browsers to prevent unauthorized access to resources on a different origin.

    • It allows servers to specify which origins are allowed to access their resources through HTTP headers.

    • CORS is commonly used to enable cross-origin requests in web applications, ...

  • Answered by AI
  • Q3. Difference between local Storage, cookies, session storage?
  • Ans. 

    Local Storage, cookies, and session storage are all ways to store data on the client side, but they have different purposes and limitations.

    • Local Storage: stores data with no expiration date, and it remains after the browser is closed. Can store larger amounts of data compared to cookies. Example: localStorage.setItem('key', 'value')

    • Cookies: stores data that has an expiration date and is sent to the server with every r...

  • Answered by AI
  • Q4. What is web pack?
  • Ans. 

    Webpack is a module bundler for JavaScript applications.

    • Webpack takes modules with dependencies and generates static assets representing those modules.

    • It can handle various types of assets like JavaScript, CSS, and images.

    • Webpack allows for code splitting, lazy loading, and hot module replacement.

    • Common configuration file for webpack is webpack.config.js.

  • Answered by AI
  • Q5. Redux, Context API, State Management
  • Q6. How to handle images in React?
  • Ans. 

    Images in React can be handled using the tag, importing images in components, or using CSS background images.

    • Use the tag to display images in React components

    • Import images in components by using import statement and referencing the image file

    • Use CSS background images by setting the background-image property in stylesheets

Answered by AI
  • Q7. Promise.all and behind the scenes?
  • Interview Preparation Tips

    Interview preparation tips for other job seekers - My learnings: Jwt, CORS, Higher order functions, Advance React, Callback, Callback hell.
    Prepare things in details

    Skills evaluated in this interview

    Interview questions from similar companies

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

    Basic aptitude test with technical and non technical question

    Round 2 - Technical 

    (1 Question)

    • Q1. What is event loop
    Interview experience
    5
    Excellent
    Difficulty level
    -
    Process Duration
    -
    Result
    -
    Round 1 - Coding Test 

    Few coding tasks asked like palindrome number
    Factorial
    Basic concept tests based on DSA
    Like prove that set is unordered

    Round 2 - One-on-one 

    (1 Question)

    • Q1. If a glass is started filling with water by 1ml at 0sec and gets doubled at every successive second, at what second the glass is half full
    Interview experience
    5
    Excellent
    Difficulty level
    -
    Process Duration
    -
    Result
    -
    Round 1 - Aptitude Test 

    It was easy to crack ill rate 2/5

    Round 2 - Coding Test 

    It was a short coding round pretty easy

    Round 3 - Coding Test 

    It was a long coding round i couldn't crack it

    Round 4 - HR 

    (2 Questions)

    • Q1. Introduce yourself
    • Q2. Tell me what you know about zoho
    Interview experience
    4
    Good
    Difficulty level
    Moderate
    Process Duration
    Less than 2 weeks
    Result
    Selected Selected

    I applied via Referral and was interviewed before Aug 2023. There was 1 interview round.

    Round 1 - One-on-one 

    (3 Questions)

    • Q1. Project, Oops Concept, Java , which technology u have used ? Framework
    • Q2. Framework, Explain Long Polling ,
    • Ans. 

      Long polling is a web technique where the client sends a request to the server and the server holds the connection open until new data is available.

      • Long polling is a variation of the traditional polling technique where the client sends a request to the server and the server keeps the connection open until new data is available.

      • It is often used in web applications to simulate real-time updates without the need for const...

    • Answered by AI
    • Q3. GraphQL Vs Rest
    • Ans. 

      GraphQL is a query language for APIs that allows clients to request only the data they need, while REST is an architectural style for designing networked applications.

      • GraphQL allows clients to request specific data in a single request, reducing over-fetching and under-fetching of data.

      • REST uses multiple endpoints for different resources, leading to multiple requests for related data.

      • GraphQL provides a strongly typed sc...

    • Answered by AI

    Skills evaluated in this interview

    I was interviewed in Aug 2021.

    Round 1 - Coding Test 

    (1 Question)

    Round duration - 120 Minutes
    Round difficulty - Hard

    • Q1. Find rank

      You are given a matrix ‘ARR’ having dimensions ‘N*M’. Your task to find the rank of the matrix ‘ARR’.

      The rank of a matrix is defined as:

      (a) The maximum number of linearly independent column ...
    • Ans. Row Echelon Form

      Approach:

      • The idea is based on converting the given input matrix ARR into row echelon form.
      • Since we know that the rank of the matrix can not be greater than min(N, M). So we will check if N > M then we will transpose the input matrix ARR since we are using row echelon form so the matrix has to be transformed in such a way that in each row all the elements to the left of the diagonal element must be ze...
    • Answered by CodingNinjas
    Round 2 - Video Call 

    (1 Question)

    Round duration - 60 Minutes
    Round difficulty - Medium

    This is an elimination round. The interviewer will ask some technical questions and ask to solve some coding questions.
    The interview was on Microsoft teams and coding was on codility.

    • Q1. Check Permutation

      For a given two strings, 'str1' and 'str2', check whether they are a permutation of each other or not.

      Permutations of each other
      Two strings are said to be a permutatio...
    • Ans. Frequency Array Approach
      • The first and the foremost condition for two strings to be the permutations of each other is that the frequency of each element in both of them should be the same.
      • It can be proven by a very simple argument that we are only rearranging the letters, and not adding or deleting any character.
      • So we allocate an array of size 256 (that is the number of distinct ASCIIacharactersterst to store the freque...
    • Answered by CodingNinjas
    Round 3 - Video Call 

    (1 Question)

    Round duration - 60 Minutes
    Round difficulty - Hard

    Interviewers asked some questions regarding System design and then asked me to perform the task

    • Q1. System Design Question

      Design a vending machine.

    Round 4 - Video Call 

    (1 Question)

    Round duration - 60 Minutes
    Round difficulty - Hard

    There were 2 interviewers. This round was basically Distributed systems.

    • Q1. Ninja And Alternating Largest

      Ninja is given a few numbers, and he is being asked to rearrange the numbers so that every second element is greater than its left and right element.

      Input Format:
      The first...
    • Ans. Brute forceSpace Complexity: O(1)Explanation: Time Complexity: O(n)Explanation:
    • Answered by CodingNinjas
    Round 5 - Video Call 

    (1 Question)

    Round duration - 60 Minutes
    Round difficulty - Hard

    • Q1. SQL Questions

      Write an SQL query to print the first three characters of  FIRST_NAME from Worker table.

      Write an SQL query to print the FIRST_NAME from Worker table after replacing ‘a’ with ‘A’.

    Interview Preparation Tips

    Professional and academic backgroundI completed Computer Science Engineering from HMR Institute of Technology and Management. Eligibility criteriaNo criteriaMicrosoft interview preparation:Topics to prepare for the interview - Data Structures and Algorithms, System Design, Distributed SystemsTime required to prepare for the interview - 1 MonthInterview preparation tips for other job seekers

    Tip 1 : Might ask you to write coding in System Design (Eg : Vending Machine)
    Tip 2 : Use star methodology to answer.
    Tip 3 : Interact as much as you can with the interviewer and discuss your approach to solve questions.
    Tip 4: Start your preparation at least 6 months before application
    Tip 5 : Practice Leetcode

    Application resume tips for other job seekers

    Tip 1 : Resume should match with job description
    Tip 2 : Add a summary section and avoid sections like hobbies, strengths 
    Tip 3 : Clearly mention your skills

    Final outcome of the interviewRejected

    Skills evaluated in this interview

    I applied via LinkedIn and was interviewed in Oct 2021. There were 5 interview rounds.

    Interview Questionnaire 

    4 Questions

    Binary tree fin the no of leaf node

    • Q1. System design on Netflix
    • Ans. 

      System design for Netflix

      • Use microservices architecture

      • Implement a distributed caching system

      • Utilize content delivery networks (CDNs)

      • Implement recommendation algorithms

      • Ensure high availability and fault tolerance

      • Implement user authentication and authorization

      • Handle large-scale data storage and processing

      • Implement efficient search functionality

    • Answered by AI
    • Q2. Talk about hld design
    • Ans. 

      HLD design refers to high-level design, which involves creating an architectural blueprint for a software system.

      • HLD design focuses on the overall structure and components of a system.

      • It includes defining the system's modules, interfaces, and interactions.

      • HLD design helps in understanding the system's functionality and how different components work together.

      • It provides a roadmap for the development process and helps in...

    • Answered by AI
    • Q3. Talk aboit lld design
    • Q4. Da algo for queue

    Skills evaluated in this interview

    I applied via Approached by Company and was interviewed in Jan 2022. There was 1 interview round.

    Round 1 - Technical 

    (1 Question)

    • Q1. Basic java and Angular questions

    Interview Preparation Tips

    Interview preparation tips for other job seekers - Go through basics of core Java and Angular

    I applied via Approached by Company and was interviewed in Oct 2021. There were 2 interview rounds.

    Round 1 - Assignment 

    A piece of paper was given to me and I need to tell the some basics of computer languages

    Round 2 - Group Discussion 

    How can I lead my team

    Interview Preparation Tips

    Interview preparation tips for other job seekers - Be patient and answer like UPSC Aspirant

    I applied via LinkedIn and was interviewed in Oct 2021. There were 4 interview rounds.

    Interview Questionnaire 

    4 Questions

    • Q1. What is the difference between aim, ambition, goal
    • Q2. Who is chairman of isro
    • Ans. 

      The current chairman of ISRO is K. Sivan.

      • K. Sivan is an Indian space scientist and the current chairman of ISRO.

      • He has been associated with ISRO for over three decades and has contributed to several missions.

      • Under his leadership, ISRO has achieved several milestones, including the successful launch of Chandrayaan-2.

      • He is also known as the 'Rocket Man' of India.

    • Answered by AI
    • Q3. Who is the founder of iiit 's in andra and telangana
    • Q4. Full form of unesco
    • Ans. 

      UNESCO stands for United Nations Educational, Scientific and Cultural Organization.

      • UNESCO is a specialized agency of the United Nations.

      • It was established in 1945 with the aim of promoting peace and security through international cooperation in education, science, and culture.

      • UNESCO is responsible for designating and preserving World Heritage Sites, promoting literacy and education, and supporting cultural diversity.

      • So...

    • Answered by AI

    Interview Preparation Tips

    Interview preparation tips for other job seekers - Fell free and enjoy the interactions with interview panel and interviewers

    PeopleGrove Interview FAQs

    How many rounds are there in PeopleGrove Full Stack Developer interview?
    PeopleGrove interview process usually has 1 rounds. The most common rounds in the PeopleGrove interview process are One-on-one Round.
    What are the top questions asked in PeopleGrove Full Stack Developer interview?

    Some of the top questions asked at the PeopleGrove Full Stack Developer interview -

    1. Difference between local Storage, cookies, session stora...read more
    2. What is JWT and how we use ...read more
    3. How to handle images in Rea...read more

    Tell us how to improve this page.

    People are getting interviews through

    based on 1 PeopleGrove interview
    Company Website
    100%
    Low Confidence
    ?
    Low Confidence means the data is based on a small number of responses received from the candidates.
    PeopleGrove Full Stack Developer Salary
    based on 5 salaries
    ₹8.5 L/yr - ₹19.5 L/yr
    62% more than the average Full Stack Developer Salary in India
    View more details
    Product Manager
    6 salaries
    unlock blur

    ₹20 L/yr - ₹30 L/yr

    Full Stack Developer
    5 salaries
    unlock blur

    ₹8.5 L/yr - ₹19.5 L/yr

    Project Manager
    4 salaries
    unlock blur

    ₹20 L/yr - ₹24 L/yr

    Software Development Engineer
    4 salaries
    unlock blur

    ₹10 L/yr - ₹16 L/yr

    QA Manager
    4 salaries
    unlock blur

    ₹20 L/yr - ₹22 L/yr

    Explore more salaries
    Compare PeopleGrove with

    Coursera

    3.3
    Compare

    upGrad

    3.7
    Compare

    Simplilearn

    3.2
    Compare

    BYJU'S

    3.1
    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