Filter interviews by
Aptitude test was conducted logical/ reasoning maths
In 5 years, I see myself as a successful Business Associate, leading a team and contributing to the growth and success of the company.
Leading a team of motivated individuals
Implementing innovative strategies to drive business growth
Building strong relationships with clients and stakeholders
Continuously learning and developing new skills
Contributing to the overall success of the company
I applied via AmbitionBox and was interviewed in Oct 2022. There were 2 interview rounds.
The common role of management towards corporate industry is to ensure efficient operations and profitability.
Management sets goals and objectives for the organization
They develop strategies to achieve those goals
They allocate resources effectively
They monitor performance and make necessary adjustments
They ensure compliance with regulations and laws
They manage risk and make decisions to mitigate it
They foster a positive...
I have 5 years of experience as a Product Manager in the tech industry.
Managed the development and launch of multiple successful products
Collaborated with cross-functional teams including engineering, design, and marketing
Conducted market research and analyzed user feedback to inform product decisions
Implemented agile methodologies to improve product development processes
Identifying pain points for users of frequently used products.
Conduct user research to understand their needs and challenges
Analyze customer feedback and reviews to identify common complaints
Observe user behavior and interactions with the product to identify areas of frustration
Identify usability issues and areas where the product falls short in meeting user expectations
Consider competitive analysis to understand how o
The drop in average revenue per user for Swiggy could be due to various reasons.
Increased competition from other food delivery apps
Decrease in the number of orders per user
Discounts and offers provided by Swiggy to attract new users
Change in user behavior due to COVID-19 pandemic
Increase in delivery charges or service fees
My favourite product is LinkedIn. I would improve it by enhancing the job search feature and adding more personalized content.
Enhance job search feature with more filters and better matching algorithms
Add more personalized content based on user's interests and activity
Improve messaging system for better communication between professionals
Introduce more networking opportunities through events and groups
Provide more reso...
Designing Jarvis would require understanding user needs, defining features, and implementing AI technologies.
Conduct user research to understand needs and pain points
Define key features such as voice recognition, natural language processing, and machine learning
Implement AI technologies such as neural networks and deep learning algorithms
Ensure data privacy and security measures are in place
Continuously test and iterat
Yes, I would continue working for Groww.
I believe in the mission and vision of Groww and want to contribute to its growth.
Having a successful startup idea with 100k users onboarded is a great achievement, but it doesn't guarantee long-term success.
I would explore the possibility of integrating my startup idea with Groww's existing platform to create a win-win situation.
Leaving Groww at this stage would not be a wise de...
Tips for improving investment, finance and tech knowledge for a Product Manager role.
Read financial news and reports regularly to stay updated on market trends and investment opportunities.
Take online courses or attend workshops on financial analysis, data analysis, and product management.
Learn about emerging technologies and their potential impact on the industry.
Network with professionals in the finance and tech indu...
I applied via Naukri.com and was interviewed before Feb 2023. There was 1 interview round.
Groww interview questions for popular designations
I applied via Campus Placement and was interviewed before Apr 2023. There was 1 interview round.
Aptitude tests + 3 Rounds
Get interview-ready with Top Groww Interview Questions
I applied via Approached by Company and was interviewed in Feb 2022. There were 5 interview rounds.
2 Ds algo questions on arrays
I was interviewed before Apr 2023.
I was interviewed in Apr 2021.
Round duration - 60 Minutes
Round difficulty - Medium
Timing- In the evening around 5 pm
Environment- It was online test so I was in my room comfortable.
You are given an array 'PRICES' of 'N' integers, where 'PRICES[i]' represents the price of a certain stock on the i-th day. An integer 'K' is also provide...
The problem can be solved by using dynamic programming.
But first explain the recursive approach also and tell the time complexity and then move on to the dynamic programming part.
Explain what are the subproblem and optimal substructure and then code the dp part.
Round duration - 60 minutes
Round difficulty - Easy
Timing - 2pm
Environment - my room
Interviewer was pretty chilled.
Create a stack data structure that supports not only the usual push and pop operations but also getMin(), which retrieves the minimum element, all in O(1) time complexity witho...
Explain the two stack approach first and then move to the optimized version try writing a different function for min element apart from which is given in the geeksforgeeks.
Tip 1 : Be well prepared in DSA , including graphs,dp
Tip 2 : practice regularly one or two hours is enough but u need to be consistent for atleast a year or so
Tip 3 : prepare os dbms oops in last week of the interview
Tip 1 : at least Two projects
Tip 2 : Some experience in competitive programming will be beneficial.
I applied via Referral and was interviewed before Sep 2022. There were 3 interview rounds.
Array, string, linked list
I was interviewed in Oct 2020.
Round duration - 65 minutes
Round difficulty - Medium
It was 24 hours window for the online round from 8 Oct 10:30 am to 9 Oct 10:30 am. There were 7 MCQ problems related to c++, java, DBMS, and operating systems. And 2 coding problems with one easy and one moderate level difficulty for question, we were supposed to write the whole program but for other question, the function was to be written only. I was able to solve the first problem fully and the second 50%, you are required to pass test cases.
Ram is in Ninjaland, visiting a unique candy store offering 'N' candies each with different costs. The store has a special offer: for every candy you purchase, you c...
First Sort the price array. For finding the minimum amount start purchasing candies from starting and reduce k free candies from last with every single purchase. For finding the maximum amount start purchasing candies from the end and reduce k free candies from starting in every single purchase.
You are provided with a continuous non-empty string (referred to as 'sentence') which contains no spaces and a dictionary comprising a list of non-empty strings (known as 'wor...
We need to keep exploring the given string from current position ‘i’ to until we wouldn’t find a position such that substring ‘i’ to ‘j’ exists in the dictionary.
The algorithm looks like:
Round duration - 90 minutes
Round difficulty - Medium
The interviewer asked me questions about projects, general discussion, and 3 coding questions based on linked list, arrays, and binary tree.
I gave optimum approach for every question.
Given a singly linked list of integers, the task is to remove the middle node from this list.
The first line of input includes an integer 'T' whic...
Step 1 : Take two pointers
Step 2 : Initialize both pointers to the head node and iterate one pointer by two and one by just one step
Step 3 : The pointer which is iterating by one step will reach the mid when other will reach the end.
Step 4 : Delete the mid pointer(which reached the mid).
Given an integer array ARR
of size N
, replace each element of this array with its corresponding rank.
The rank of an element is an integer between 1 and N
(inclusive) that ...
Step 1 : To compute the rank of the element first make a copy of given arr[] then sort that copied array in ascending order.
Step 2 : Then traverse in the copied array and put their rank in HashMap by taking a rank variable.
Step 3 : If the element is already present in HashMap then don’t update rank otherwise update rank of the element in HashMap and increment rank variable as well.
Step 4 : Traverse the given array arr[...
Given a binary tree, your task is to print the left view of the tree.
The input will be in level order form, with node values separated by a...
We can keep track of the level of a node by passing a parameter to all recursive calls. The idea is to keep track of the maximum level also. Whenever we see a node whose level is more than the maximum level so far. We print the node because this is the first node in its level (Note that we traverse the left subtree before the right subtree).
Tip 1 : First Go through all the concepts of Data Structures and algorithms, I have taken Coding ninjas course c++ interview preparation.
Tip 2 : Try to solve all the problems by yourself then it will be meant for you, if you can't solve them after 30-45 minutes of time then see the solution of it, and for this, I used to consult TA and mentors on coding ninjas course.
Tip 3 : Have confidence in yourself, if you can't solve it initially, gradually you will be able to solve the problems. Hard work pays off.
Tip 4 : Note down the main information's about your project like what you have done in the project and what difficulties you have faced, it will be a great way to tackle questions about the project in the interview.
Tip 1 : Keep it simple and mention what you actually know and achieved.
Tip 2 : Mention your institute email-id if you have, it adds weight to the resume
Tip 3 : Use the "Built/created/made X using Y to achieve Z" format when writing about projects or work done.
The duration of Groww interview process can vary, but typically it takes about less than 2 weeks to complete.
based on 65 interviews
Interview experience
5-8 Yrs
Not Disclosed
Senior Executive
81
salaries
| ₹3.1 L/yr - ₹5 L/yr |
Customer Support Executive
45
salaries
| ₹2.4 L/yr - ₹4.3 L/yr |
Assistant Manager
42
salaries
| ₹5.8 L/yr - ₹14.8 L/yr |
Customer Success Executive
38
salaries
| ₹2 L/yr - ₹4.1 L/yr |
Software Engineer
37
salaries
| ₹14 L/yr - ₹36 L/yr |
Zerodha
Sharekhan
Upstox
Paytm Money