Upload Button Icon Add office photos

Filter interviews by

Groww Software Developer Intern Interview Questions, Process, and Tips

Updated 3 Apr 2024

Top Groww Software Developer Intern Interview Questions and Answers

  • Q1. Minimum and Maximum Candy Cost Problem Ram is in Ninjaland, visiting a unique candy store offering 'N' candies each with different costs. The store has a special offer: ...read more
  • Q2. Word Break Problem Statement You are provided with a continuous non-empty string (referred to as 'sentence') which contains no spaces and a dictionary comprising a list ...read more
  • Q3. Best Time To Buy and Sell Stock Problem Statement You are given an array 'PRICES' of 'N' integers, where 'PRICES[i]' represents the price of a certain stock on the i-th ...read more
View all 10 questions

Groww Software Developer Intern Interview Experiences

4 interviews found

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

I applied via Job Portal and was interviewed in Mar 2024. There was 1 interview round.

Round 1 - Technical 

(4 Questions)

  • Q1. Efwegfewgewgewgewg
  • Q2. Ewgwegewgewgewgewg
  • Q3. Ewgegwegewgewgewgewg
  • Q4. Ewgewgkjewbgkjewbgkjewbgkjewbgk

I appeared for an interview in Apr 2021.

Round 1 - Coding Test 

(1 Question)

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.

  • Q1. 

    Best Time To Buy and Sell Stock Problem Statement

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

  • Ans. 

    Determine the maximum profit achievable with at most K transactions by buying and selling stocks.

    • Iterate through the array and keep track of the minimum price to buy and maximum profit for each transaction.

    • Use dynamic programming to store the maximum profit at each day with each possible number of transactions.

    • Consider edge cases such as when K is 0 or when the array is empty.

    • Example: For input N = 6, PRICES = [3, 2, 6

  • Answered by AI
Round 2 - Face to Face 

(1 Question)

Round duration - 60 minutes
Round difficulty - Easy

Timing - 2pm
Environment - my room
Interviewer was pretty chilled.

  • Q1. 

    Stack with getMin Operation

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

  • Ans. 

    Implement a stack with getMin operation in O(1) time complexity without using extra space.

    • Use two stacks - one to store the actual elements and another to store the minimum values encountered so far.

    • When pushing an element, check if it is smaller than the current minimum and if so, push it onto the minimum stack.

    • When popping an element, check if it is the current minimum and if so, pop from the minimum stack as well.

    • Fo...

  • Answered by AI

Interview Preparation Tips

Professional and academic backgroundI completed Computer Science Engineering from ABV IIITM Gwalior. I applied for the job as SDE - Intern in BangaloreEligibility criteria7 CGPAGroww interview preparation:Topics to prepare for the interview - Data Structures and Algorithms, Operating System, Database management system, object oriented programming, Projects.Time required to prepare for the interview - 6 monthsInterview preparation tips for other job seekers

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

Application resume tips for other job seekers

Tip 1 : at least Two projects
Tip 2 : Some experience in competitive programming will be beneficial.

Final outcome of the interviewSelected

Skills evaluated in this interview

Software Developer Intern Interview Questions Asked at Other Companies

Q1. Sum of Maximum and Minimum Elements Problem Statement Given an ar ... read more
asked in Amazon
Q2. Fish Eater Problem Statement In a river where water flows from le ... read more
asked in Apple
Q3. Kevin and his Fruits Problem Statement Kevin has 'N' buckets, eac ... read more
asked in CommVault
Q4. Sliding Maximum Problem Statement Given an array of integers ARR ... read more
Q5. Reverse Words in a String: Problem Statement You are given a stri ... read more

I appeared for an interview in Oct 2020.

Round 1 - Coding Test 

(2 Questions)

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.

  • Q1. 

    Minimum and Maximum Candy Cost Problem

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

  • Ans. 

    Determine the minimum and maximum amounts of money needed to purchase all candies with a special offer.

    • Iterate through the candy costs array to find the minimum and maximum costs.

    • Consider the special offer of getting up to 'K' additional candies for free.

    • Calculate the minimum cost by selecting the cheapest candies and taking free ones.

    • Calculate the maximum cost by selecting the most expensive candies and taking free on

  • Answered by AI
  • Q2. 

    Word Break Problem Statement

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

  • Ans. 

    Given a dictionary of words and a continuous string, generate all possible sentences by inserting spaces.

    • Use recursion to generate all possible combinations of words from the dictionary to form sentences.

    • Check if a substring of the sentence matches any word in the dictionary, if so, recursively call the function with the remaining substring.

    • Keep track of the current sentence being formed and add it to the result when t...

  • Answered by AI
Round 2 - Video Call 

(3 Questions)

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.

  • Q1. 

    Delete the Middle Node from a Singly Linked List

    Given a singly linked list of integers, the task is to remove the middle node from this list.

    Input:

    The first line of input includes an integer 'T' whic...
  • Ans. 

    Remove the middle node from a singly linked list of integers.

    • Identify the middle node using slow and fast pointers technique.

    • Update the pointers to remove the middle node.

    • Handle cases where there are two middle nodes by removing the first one.

    • Return NULL if no middle node exists.

    • Achieve O(N) time and O(1) space complexity with a single traversal.

  • Answered by AI
  • Q2. 

    Problem Statement

    Given an integer array ARR of size N, replace each element of this array with its corresponding rank.

    Explanation

    The rank of an element is an integer between 1 and N (inclusive) that ...

  • Ans. 

    Replace elements in an array with their corresponding ranks based on given rules.

    • Iterate through the array and assign ranks based on the rules provided.

    • Handle equal elements by assigning them the same rank.

    • Return the modified array with elements replaced by their ranks.

  • Answered by AI
  • Q3. 

    Left View of a Binary Tree Problem Statement

    Given a binary tree, your task is to print the left view of the tree.

    Example:

    Input:
    The input will be in level order form, with node values separated by a...
  • Ans. 

    Print the left view of a binary tree given in level order form.

    • Traverse the tree level by level and print the first node of each level

    • Use a queue to keep track of nodes at each level

    • Consider null nodes as well while traversing the tree

  • Answered by AI

Interview Preparation Tips

Professional and academic backgroundI completed Computer Science Engineering from Punjab Engineering College(Deemed To be University). Eligibility criteria7Groww interview preparation:Topics to prepare for the interview - Data Structure and Algorithms, Operating Systems, Database Management Systems, Communication SkillsTime required to prepare for the interview - 3 monthsInterview preparation tips for other job seekers

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.

Application resume tips for other job seekers

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.

Final outcome of the interviewSelected

Skills evaluated in this interview

I appeared for an interview in Oct 2020.

Round 1 - Coding Test 

(2 Questions)

Round duration - 90 minutes
Round difficulty - Medium

A 24 hour window was given to us and we can attempt the test anytime in between. It included 2 coding questions. One was easy-medium level and the other one was hard. Along with this 7 debugging MCQ's were given, however they were easy.

  • Q1. 

    Minimum Steps for a Knight to Reach Target

    Given a square chessboard of size 'N x N', determine the minimum number of moves a Knight requires to reach a specified target position from its initial position...

  • Ans. 

    Calculate minimum steps for a Knight to reach target position on a chessboard.

    • Use BFS algorithm to find the shortest path from Knight's starting position to target position.

    • Consider all possible moves of the Knight on the chessboard.

    • Keep track of visited positions to avoid revisiting them.

    • Return the minimum number of moves required to reach the target position.

  • Answered by AI
  • Q2. 

    Minimum and Maximum Candy Cost Problem

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

  • Ans. 

    Determine the minimum and maximum amount of money needed to purchase all candies with a special offer.

    • Iterate through the candy costs array to find the minimum and maximum costs.

    • Consider the special offer to calculate the minimum and maximum costs.

    • Keep track of the total cost and free candies obtained during the process.

    • Return the minimum and maximum costs for each test case.

  • Answered by AI
Round 2 - Face to Face 

(3 Questions)

Round duration - 50 minutes
Round difficulty - Easy

The interview was conducted around 11am in the morning. The interviewer was professional and to the point while questioning. However he gave me hints whenever I got stuck anywhere.

  • Q1. 

    Right View of Binary Tree

    Given a binary tree of integers, your task is to output the right view of the tree.

    The right view of a binary tree includes the nodes that are visible when the tree is observed...

  • Ans. 

    The task is to output the right view of a binary tree, which includes the nodes visible when observed from the right.

    • Perform a level order traversal of the binary tree.

    • For each level, add the rightmost node to the result list.

    • Print the result list as the right view of the binary tree.

    • Handle null nodes by skipping them during traversal.

  • Answered by AI
  • Q2. 

    Cycle Detection in a Singly Linked List

    Determine if a given singly linked list of integers forms a cycle or not.

    A cycle in a linked list occurs when a node's next points back to a previous node in the ...

  • Ans. 

    Detect if a singly linked list forms a cycle by checking if a node's next points back to a previous node.

    • Use Floyd's Tortoise and Hare algorithm to detect a cycle in the linked list.

    • Initialize two pointers, slow and fast, and move them at different speeds through the list.

    • If there is a cycle, the two pointers will eventually meet at some node.

    • If one of the pointers reaches the end of the list (null), there is no cycle.

  • Answered by AI
  • Q3. Can you explain in detail about one of your projects?

Interview Preparation Tips

Professional and academic backgroundI completed Computer Science Engineering from University Institute Of Engineering and Technology, Panjab University. I applied for the job as SDE - Intern in BangaloreEligibility criteriaAbove 7 CGPAGroww interview preparation:Topics to prepare for the interview - C++, Data Structures, Algorithms, Graph and Trees, Operating Systems, Object Oriented Programming, Database Management SystemTime required to prepare for the interview - 3 monthsInterview preparation tips for other job seekers

Tip 1 : Your basics should be very clear about data structures and algorithms. 
Tip 2 : Try to solve questions in a specific time frame. Also dry run your code with custom test cases, try to find the edge cases.
Apart from this try analyzing the time and space complexity of your solution.
Tip 3 : Take a look at editorials after solving the questions as it can give you a better approach to the problem.
Tip 4 : Don't neglect subjects like OOP's, DBMS and OS. Interviews ask few questions from here as well.

Application resume tips for other job seekers

Tip 1 : Do not fake any skills, projects or achievements. The interviewer gets to know about it by asking questions to you.
Tip 2 : Have at-least one good project on resume with all the details like technologies used and purpose.
Tip 3 : Don't write achievements which doesn't relate to your role. Write achievements which shows communication skills, leadership or teamwork.

Final outcome of the interviewSelected

Skills evaluated in this interview

Groww interview questions for designations

 Software Developer

 (2)

 Software Developer II

 (1)

 Backend Developer Intern

 (1)

 SDE Intern

 (1)

 Software Development Engineer Intern

 (1)

 Intern

 (1)

 Android Developer

 (1)

 Senior Software Engineer

 (4)

Interview questions from similar companies

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

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

Round 1 - Aptitude Test 

Basic Arithmetic Aptitude , Computer Application and SQL

Round 2 - System Design 

(1 Question)

  • Q1. Create a Fitness Tracking Application
  • Ans. 

    A fitness tracking application to monitor and track user's physical activities and progress.

    • Include features like tracking steps, calories burned, distance traveled, and workout sessions.

    • Allow users to set goals, view progress charts, and receive notifications for reminders.

    • Integrate with wearable devices like Fitbit or Apple Watch for real-time data syncing.

    • Provide social sharing options to motivate users and compete ...

  • Answered by AI

Interview Preparation Tips

Topics to prepare for Mr Cooper Software Developer interview:
  • System Design
  • SQL
  • OOPS

Skills evaluated in this interview

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

I appeared for an interview in Feb 2025.

Round 1 - Coding Test 

Duration 3 hours topics medium level coding from hackerearth

Round 2 - Technical 

(2 Questions)

  • Q1. Long programming
  • Q2. Er diagrams

Interview Preparation Tips

Interview preparation tips for other job seekers - hard work brings success much more than we expect

I applied via Campus Placement and was interviewed in Aug 2022. There were 3 interview rounds.

Round 1 - Aptitude Test 

Technical MCQ and coding (medium)

Round 2 - Coding Test 

This was long programing round. In this you need to design a application. First you need do ER or class diagram. Then you need code in any programing language but OOPS is prefered. They see is app is scalable and data modeling

Round 3 - Technical 

(4 Questions)

  • Q1. Basing OOPS, DBMS, SQL and DS
  • Q2. Sql joins and normalisation
  • Q3. Sort stack ds and real life example
  • Ans. 

    Sorting a stack data structure and its real-life example

    • Sorting a stack involves popping elements and comparing them to the remaining elements in the stack

    • Real-life example: arranging books on a shelf in alphabetical order

    • Another example: sorting a deck of cards by suit and rank

  • Answered by AI
  • Q4. Question from resume and previous round solution

Interview Preparation Tips

Interview preparation tips for other job seekers - If you pass the last round then you will be having HR interview

Skills evaluated in this interview

Interview experience
5
Excellent
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 tips
Round 2 - Aptitude Test 

ROUND 1 is an mcq based and they asked to solve 3 codes with your flexible language like c,c++ etc

Round 3 - long programming 

(1 Question)

  • Q1. They gave a scenario of the project. They are asked to draw the class diagram or ER diagram for that scenario and in between the panels will question u about your diagram. They are very friendly
Interview experience
5
Excellent
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via Referral and was interviewed before Apr 2022. There were 3 interview rounds.

Round 1 - Resume Shortlist 
Pro Tip by AmbitionBox:
Don’t add your photo or details such as gender, age, and address in your resume. These details do not add any value.
View all tips
Round 2 - HR 

(2 Questions)

  • Q1. Tell me about yourself
  • Ans. 

    I am a software developer with 5 years of experience in developing web applications using Java and JavaScript.

    • 5 years of experience in software development

    • Proficient in Java and JavaScript

    • Developed web applications using Java and JavaScript

  • Answered by AI
  • Q2. What do you know about our company
  • Ans. 

    Our company is a leading software development firm specializing in creating innovative solutions for various industries.

    • Established in 2005

    • Headquartered in Silicon Valley

    • Known for developing cutting-edge mobile applications

    • Clients include Fortune 500 companies

    • Received multiple industry awards for excellence in software development

  • Answered by AI
Round 3 - Coding Test 

(1 Question)

  • Q1. In this they will give 45 mins to solve a problem

Interview Preparation Tips

Topics to prepare for Mr Cooper Software Developer interview:
  • C
  • C++
  • Java
  • Javascript
  • OOPS
Interview preparation tips for other job seekers - Be prepared to the worst case
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via Campus Placement and was interviewed in Apr 2023. There were 3 interview rounds.

Round 1 - Resume Shortlist 
Pro Tip by AmbitionBox:
Properly align and format text in your resume. A recruiter will have to spend more time reading poorly aligned text, leading to high chances of rejection.
View all tips
Round 2 - Coding Test 

Apart from the problem solving coding round there was a design round where are tested with out ability to design and execute real life scenarios with various class and functionalities

Round 3 - Technical 

(1 Question)

  • Q1. There was 2 tech rounds of which the first was just a glimpse on everything that one goes through in their CSE degree and the second round is specifically for data structures, SQL

Groww Interview FAQs

How many rounds are there in Groww Software Developer Intern interview?
Groww interview process usually has 1 rounds. The most common rounds in the Groww interview process are Technical.
What are the top questions asked in Groww Software Developer Intern interview?

Some of the top questions asked at the Groww Software Developer Intern interview -

  1. ewgewgkjewbgkjewbgkjewbgkjew...read more
  2. efwegfewgewgewg...read more
  3. ewgwegewgewgewg...read more

Tell us how to improve this page.

Groww Software Developer Intern Interview Process

based on 1 interview

1 Interview rounds

  • Coding Test Round
View more

Interview Questions from Similar Companies

Morningstar Interview Questions
3.9
 • 241 Interviews
Angel One Interview Questions
4.0
 • 135 Interviews
Apex Group Interview Questions
2.7
 • 134 Interviews
Kotak Securities Interview Questions
3.6
 • 116 Interviews
TresVista Interview Questions
2.8
 • 115 Interviews
Pine Labs Interview Questions
3.4
 • 110 Interviews
Mr Cooper Interview Questions
4.0
 • 84 Interviews
View all

Groww Software Developer Intern Reviews and Ratings

based on 1 review

5.0/5

Rating in categories

5.0

Skill development

5.0

Work-life balance

4.0

Salary

5.0

Job security

5.0

Company culture

5.0

Promotions

5.0

Work satisfaction

Explore 1 Review and Rating
Senior Executive
81 salaries
unlock blur

₹3.1 L/yr - ₹5 L/yr

Customer Support Executive
49 salaries
unlock blur

₹2.4 L/yr - ₹4.3 L/yr

Software Engineer
42 salaries
unlock blur

₹14 L/yr - ₹37 L/yr

Assistant Manager
42 salaries
unlock blur

₹5.8 L/yr - ₹14.8 L/yr

Customer Success Executive
41 salaries
unlock blur

₹2 L/yr - ₹4.5 L/yr

Explore more salaries
Compare Groww with

Zerodha

4.2
Compare

Sharekhan

3.8
Compare

SBI Cards & Payment Services

3.7
Compare

Axis Direct

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