Upload Button Icon Add office photos

Filter interviews by

Groww Software Development Engineer II Interview Questions and Answers

Updated 8 Nov 2024

Groww Software Development Engineer II Interview Experiences

1 interview found

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

I applied via Referral and was interviewed in Oct 2024. There were 3 interview rounds.

Round 1 - Coding Test 

1 Hour, MC Round- Local Application, Design Notification System

Round 2 - Coding Test 

1 Hour, Topics:- DFS, Binary Search

Round 3 - Technical 

(2 Questions)

  • Q1. HLD for Swiggy Delivery Assignment System
  • Ans. 

    Swiggy Delivery Assignment System HLD

    • Use a centralized system to assign delivery tasks to delivery executives based on various factors like distance, availability, and ratings

    • Implement a matching algorithm to efficiently assign tasks to the nearest available executive

    • Utilize real-time tracking to monitor the status of each delivery and optimize routes for faster delivery times

  • Answered by AI
  • Q2. LLD for Swiggy Delivery Assingment System
  • Ans. 

    LLD for Swiggy Delivery Assignment System

    • Use a centralized system to assign delivery tasks to delivery executives based on various factors like distance, availability, ratings, etc.

    • Implement a matching algorithm to efficiently assign tasks to the most suitable delivery executive.

    • Include features like real-time tracking, notifications, and reassignment in case of unavailability or delays.

    • Consider scalability and perform...

  • Answered by AI

Skills evaluated in this interview

Interview questions from similar companies

Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
Selected Selected

I applied via Referral and was interviewed in Sep 2024. There were 3 interview rounds.

Round 1 - Technical 

(1 Question)

  • Q1. This round was purely based on DSA. One question of Leetcode hard difficulty was asked. Question Name - Median of two sorted arrays.
Round 2 - Technical 

(1 Question)

  • Q1. This was low level design round. I was asked to design a system like Redbus. Functional Requirements - 1. user can login/signup on the platform 2. functionality to choose btw different operational routes....
Round 3 - Technical 

(2 Questions)

  • Q1. This round was taken by their Engineering Director. Questions were related to multithreading, types of entity relationships with examples, transaction management in Spring Boot, JVM components, garbage col...
  • Q2. Later interviewer asked me to code a multithreading assignment - 1. Create a fixed threadpool of size 10. 2. Submit number of tasks to the threadpool. 3. Return the results from every task and print in mu...

Interview Preparation Tips

Topics to prepare for Pine Labs Software Development Engineer II interview:
  • DSA
  • LLD
  • HLD
  • MySQL
  • Java
  • Spring Boot
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
No response

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

Round 1 - Technical 

(4 Questions)

  • Q1. What is the difference between normal and arrow functions
  • Ans. 

    Arrow functions are more concise and have a lexical 'this' binding compared to normal functions.

    • Arrow functions do not have their own 'this' keyword, they inherit it from the parent scope.

    • Arrow functions do not have their own 'arguments' object.

    • Arrow functions cannot be used as constructors with 'new'.

    • Arrow functions are more concise and have implicit return when no curly braces are used.

  • Answered by AI
  • Q2. All basic JS Questions to cover Hoisting closure
  • Q3. They asked to show me an example using the API call
  • Q4. Difference between forEach and Map
  • Ans. 

    forEach is used to iterate over an array and perform a function on each element, while map creates a new array by applying a function to each element.

    • forEach does not return a new array, while map does

    • forEach does not modify the original array, while map creates a new array

    • forEach is used for side effects, while map is used for transformation

    • Example: forEach - array.forEach(item => console.log(item)), map - const newAr

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Cover JS basics

Skills evaluated in this interview

Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - One-on-one 

(2 Questions)

  • Q1. DS & Algo topics
  • Q2. GoLang concepts
Round 2 - One-on-one 

(2 Questions)

  • Q1. More on Server Architectural Questions
  • Q2. Questions related to database & all
Round 3 - HR 

(2 Questions)

  • Q1. Why are you switching the job
  • Q2. What is your goal in next 5years
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(1 Question)

  • Q1. Explain OOPS Concept ?
  • Ans. 

    OOPS (Object-Oriented Programming) is a programming paradigm based on the concept of objects, which can contain data and code.

    • OOPS focuses on creating objects that interact with each other to solve problems.

    • It involves concepts like classes, objects, inheritance, polymorphism, and encapsulation.

    • For example, a class 'Car' can have objects like 'Toyota', 'Honda', etc., each with their own properties and methods.

    • Inheritan...

  • Answered by AI
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Aptitude Test 

Aptitude test on engineering subjects

Round 2 - Coding Test 

Writing projects in c

Interview Preparation Tips

Interview preparation tips for other job seekers - Smooth process
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-

I applied via campus placement at Dwarkadas J Sanghvi College of Engineering, Mumbai and was interviewed in Jul 2024. There was 1 interview round.

Round 1 - Assignment 

Had to contribute to a github repo

Interview Preparation Tips

Interview preparation tips for other job seekers - Be prepared on what oyu have done
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-

I applied via Campus Placement

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 - Coding Test 

Low-level design interview
I need to design a Music player app using oops concept

Round 3 - One-on-one 

(5 Questions)

  • Q1. Sort the stack in O(1) time complexity
  • Ans. 

    Use an additional stack to store sorted elements and maintain the minimum element at the top of the original stack.

    • Create a new stack to store sorted elements.

    • Pop elements from the original stack and compare with the top element of the new stack.

    • If the popped element is smaller, push it to the new stack. If larger, keep popping from the new stack and push to the original stack until the correct position is found.

    • Repeat...

  • Answered by AI
  • Q2. Difference between process and thread
  • Ans. 

    A process is an instance of a program running on a computer, while a thread is a smaller unit of execution within a process.

    • A process has its own memory space, while threads within the same process share memory.

    • Processes are independent of each other, while threads within the same process can communicate with each other.

    • Processes are heavyweight, requiring separate memory and resources, while threads are lightweight an...

  • Answered by AI
  • Q3. Difference between abstract class and interface
  • Ans. 

    Abstract class can have both abstract and non-abstract methods, while interface can only have abstract methods.

    • Abstract class can have constructor, fields, and methods, while interface cannot have any of these.

    • A class can implement multiple interfaces but can only inherit from one abstract class.

    • Abstract class is used to provide a common base for multiple derived classes, while interface is used to define a contract fo...

  • Answered by AI
  • Q4. What is race condition?
  • Ans. 

    A race condition is a situation in which the outcome of a program depends on the order of execution of its threads or processes.

    • Occurs when multiple threads or processes access shared data or resources concurrently

    • Can lead to unpredictable behavior or bugs in the program

    • Prevented by using synchronization mechanisms like locks or semaphores

    • Example: Two threads trying to increment a shared variable simultaneously

  • Answered by AI
  • Q5. What is normalization in dbms
  • Ans. 

    Normalization in DBMS is the process of organizing data in a database to reduce redundancy and improve data integrity.

    • Normalization involves breaking down a database into smaller, more manageable tables.

    • It helps in reducing data redundancy by storing data in a structured way.

    • There are different normal forms like 1NF, 2NF, 3NF, BCNF, etc.

    • Example: In a database of students, instead of storing student details in multiple ...

  • Answered by AI

Skills evaluated in this interview

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

I applied via Recruitment Consulltant and was interviewed before Nov 2023. There was 1 interview round.

Round 1 - Technical 

(3 Questions)

  • Q1. LLD: Design Google Calendar
  • Ans. 

    Design Google Calendar for scheduling events and appointments

    • Use a clean and user-friendly interface for easy navigation

    • Implement features like creating events, setting reminders, and sharing calendars

    • Include options for recurring events and color-coding for organization

  • Answered by AI
  • Q2. Coding: Take Home Assignment
  • Q3. HLD: System Design, Projects

Skills evaluated in this interview

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

I applied via Recruitment Consulltant and was interviewed before Feb 2023. There were 3 interview rounds.

Round 1 - Coding Test 

Easy - Medium questions

Round 2 - Technical 

(1 Question)

  • Q1. CS fundamentals/ Basic class diagram question
Round 3 - HM 

(1 Question)

  • Q1. General behavioural questions

Groww Interview FAQs

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

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

  1. HLD for Swiggy Delivery Assignment Sys...read more
  2. LLD for Swiggy Delivery Assingment Sys...read more

Tell us how to improve this page.

Groww Software Development Engineer II Interview Process

based on 1 interview

Interview experience

4
  
Good
View more

Interview Questions from Similar Companies

Morningstar Interview Questions
3.9
 • 241 Interviews
Angel One Interview Questions
3.9
 • 133 Interviews
Apex Group Interview Questions
2.7
 • 129 Interviews
Kotak Securities Interview Questions
3.6
 • 116 Interviews
TresVista Interview Questions
2.9
 • 112 Interviews
Pine Labs Interview Questions
3.4
 • 107 Interviews
Mr Cooper Interview Questions
4.1
 • 79 Interviews
View all
Groww Software Development Engineer II Salary
based on 12 salaries
₹23 L/yr - ₹40 L/yr
At par with the average Software Development Engineer II Salary in India
View more details

Groww Software Development Engineer II Reviews and Ratings

based on 1 review

3.0/5

Rating in categories

2.0

Skill development

3.0

Work-life balance

3.0

Salary

3.0

Job security

4.0

Company culture

2.0

Promotions

2.0

Work satisfaction

Explore 1 Review and Rating
Senior Executive
81 salaries
unlock blur

₹3.1 L/yr - ₹5 L/yr

Customer Support Executive
45 salaries
unlock blur

₹2.4 L/yr - ₹4.3 L/yr

Assistant Manager
42 salaries
unlock blur

₹5.8 L/yr - ₹14.8 L/yr

Customer Success Executive
38 salaries
unlock blur

₹2 L/yr - ₹4.1 L/yr

Software Engineer
37 salaries
unlock blur

₹14 L/yr - ₹36 L/yr

Explore more salaries
Compare Groww with

Zerodha

4.2
Compare

Sharekhan

3.9
Compare

Upstox

3.7
Compare

Paytm Money

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