Upload Button Icon Add office photos
Engaged Employer

i

This company page is being actively managed by Dunzo Team. If you also belong to the team, you can get access from here

Dunzo Verified Tick

Compare button icon Compare button icon Compare

Filter interviews by

Dunzo Software Developer Intern Interview Questions and Answers

Updated 25 May 2022

12 Interview questions

A Software Developer Intern was asked
Q. 

Asteroid Collision Problem Description

Given an array/list ASTEROIDS representing asteroids aligned in a row, each element's absolute value identifies the asteroid's size, while its sign indicates the dire...

Ans. 

Determine the state of asteroids after collisions occur.

  • Iterate through the array of asteroids and simulate collisions between adjacent asteroids.

  • Use a stack to keep track of remaining asteroids after collisions.

  • Handle cases where asteroids moving in opposite directions collide and destroy each other.

  • Handle cases where asteroids moving in the same direction do not collide.

A Software Developer Intern was asked
Q. 

Word Break II Problem Statement

Given a non-empty string 'S' containing no spaces and a dictionary of non-empty strings, generate and return all possible sentences by adding spaces in the string 'S', such ...

Ans. 

Given a string and a dictionary, generate all possible sentences by adding spaces between words from the dictionary.

  • Use backtracking to generate all possible sentences by recursively adding words from the dictionary to the current sentence.

  • Check if the current substring of the input string exists in the dictionary, if so, add it to the current sentence and continue recursively.

  • When the entire input string is proce...

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
A Software Developer Intern was asked
Q. 

Valid Parentheses Problem Statement

Given a string 'STR' consisting solely of the characters “{”, “}”, “(”, “)”, “[” and “]”, determine if the parentheses are balanced.

Input:

The first line contains an ...
Ans. 

The task is to determine if a given string consisting of parentheses is balanced or not.

  • Use a stack data structure to keep track of opening parentheses

  • Iterate through the string and push opening parentheses onto the stack and pop when encountering a closing parenthesis

  • If at the end the stack is empty, the string is balanced, otherwise it is not

A Software Developer Intern was asked
Q. 

Trie Data Structure Implementation

Design and implement a Trie (Prefix Tree) which should support the following two operations:

1. Insert a word into the Trie. The operation is marked as 'insert(word)'.
2. ...
Ans. 

Implement a Trie data structure supporting insert and search operations efficiently.

  • Implement a Trie class with insert and search methods.

  • Use a nested class Node to represent each node in the Trie.

  • For insert operation, iterate through each character in the word and create nodes as needed.

  • For search operation, traverse the Trie based on the characters in the word to check for existence.

  • Return 'TRUE' if the word is ...

A Software Developer Intern was asked
Q. How would you implement undo and redo operations for MS Word?
Ans. 

Implementing undo and redo operations for MS Word

  • Maintain a stack for undo operations and another stack for redo operations

  • Whenever a change is made, push the previous state onto the undo stack

  • When undo is triggered, pop the state from undo stack and push it onto redo stack

  • When redo is triggered, pop the state from redo stack and push it onto undo stack

  • Ensure to update the document state accordingly after each und...

A Software Developer Intern was asked
Q. 

Left View of a Binary Tree

Given a binary tree, your task is to print the left view of the tree. The left view of a binary tree contains the nodes visible when the tree is viewed from the left side.

Input...

Ans. 

Print the left view of a binary tree, containing nodes visible from the left side.

  • Traverse the tree level by level, keeping track of the leftmost node at each level

  • Use a queue for level order traversal and a map to store the leftmost nodes

  • Print the values of leftmost nodes stored in the map as the left view of the tree

A Software Developer Intern was asked
Q. 

Convert Binary Tree to Mirror Tree Problem Statement

Given a binary tree, convert this binary tree into its mirror tree. A binary tree is a tree in which each parent node has at most two children. The mirr...

Ans. 

Convert a binary tree into its mirror tree by interchanging left and right children of non-leaf nodes.

  • Traverse the binary tree in a recursive manner and swap the left and right children of each non-leaf node.

  • Use a temporary variable to swap the children of each node.

  • Ensure to handle cases where a node may have only one child or no children.

  • Implement the function to convert the given binary tree to its mirror tree ...

Are these interview questions helpful?
A Software Developer Intern was asked
Q. 

Convert Array to Min Heap Task

Given an array 'ARR' of integers with 'N' elements, you need to convert it into a min-binary heap.

A min-binary heap is a complete binary tree where each internal node's val...

Ans. 

Convert the given array into a min-binary heap by following min-heap properties.

  • Iterate through the array and heapify each node starting from the last non-leaf node to the root.

  • For each node, compare it with its children and swap if necessary to maintain min-heap property.

  • Continue this process until the entire array satisfies the min-heap property.

A Software Developer Intern was asked
Q. 

Bipartite Graph Problem Statement

Given an undirected graph of 'V' vertices (labeled 0, 1, ..., V-1) and 'E' edges, the task is to determine whether the graph is bipartite.

Explanation:

A bipartite graph...

Ans. 

The task is to determine whether a given undirected graph is bipartite or not.

  • Create a function to check if the graph can be colored using two colors without any adjacent vertices sharing the same color.

  • Use graph coloring algorithms like BFS or DFS to determine if the graph is bipartite.

  • Check for odd-length cycles in the graph, as a bipartite graph cannot have odd-length cycles.

  • Consider using a boolean array to ke...

A Software Developer Intern was asked
Q. 

Longest Common Subsequence Problem Statement

Given two strings STR1 and STR2, determine the length of their longest common subsequence.

A subsequence is a sequence that can be derived from another sequenc...

Ans. 

The problem involves finding the length of the longest common subsequence between two given strings.

  • Use dynamic programming to solve the problem efficiently.

  • Create a 2D array to store the lengths of common subsequences of substrings.

  • Iterate through the strings to fill the array and find the length of the longest common subsequence.

  • Return the length of the longest common subsequence for each test case.

Dunzo Software Developer Intern Interview Experiences

3 interviews found

I appeared for an interview in Oct 2021.

Round 1 - Coding Test 

(2 Questions)

Round duration - 60 Minutes
Round difficulty - Medium

This was a DS/Algo round.
Timing was 4:00pm-5:00pm IST.
The interviewer was very friendly.
He asked for my introduction.

  • Q1. 

    Asteroid Collision Problem Description

    Given an array/list ASTEROIDS representing asteroids aligned in a row, each element's absolute value identifies the asteroid's size, while its sign indicates the dir...

  • Ans. 

    Determine the state of asteroids after collisions occur.

    • Iterate through the array of asteroids and simulate collisions between adjacent asteroids.

    • Use a stack to keep track of remaining asteroids after collisions.

    • Handle cases where asteroids moving in opposite directions collide and destroy each other.

    • Handle cases where asteroids moving in the same direction do not collide.

  • Answered by AI
  • Q2. 

    Valid Parentheses Problem Statement

    Given a string 'STR' consisting solely of the characters “{”, “}”, “(”, “)”, “[” and “]”, determine if the parentheses are balanced.

    Input:

    The first line contains an...
  • Ans. 

    The task is to determine if a given string consisting of parentheses is balanced or not.

    • Use a stack data structure to keep track of opening parentheses

    • Iterate through the string and push opening parentheses onto the stack and pop when encountering a closing parenthesis

    • If at the end the stack is empty, the string is balanced, otherwise it is not

  • Answered by AI
Round 2 - Coding Test 

(1 Question)

Round duration - 60 Minutes
Round difficulty - Medium

Timing was 3:00pm-4:00pm IST
Interviewer was friendly
He asked for my introduction. We dry run the code for the question.

  • Q1. 

    Word Break II Problem Statement

    Given a non-empty string 'S' containing no spaces and a dictionary of non-empty strings, generate and return all possible sentences by adding spaces in the string 'S', such...

  • Ans. 

    Given a string and a dictionary, generate all possible sentences by adding spaces between words from the dictionary.

    • Use backtracking to generate all possible sentences by recursively adding words from the dictionary to the current sentence.

    • Check if the current substring of the input string exists in the dictionary, if so, add it to the current sentence and continue recursively.

    • When the entire input string is processed,...

  • Answered by AI

Interview Preparation Tips

Professional and academic backgroundI completed Information Technology from Bharati Vidyapeeth's College of Engineering. Eligibility criteriaNoDunzo interview preparation:Topics to prepare for the interview - Recursion, stack, graph, backtracking, stringTime required to prepare for the interview - 1 MonthInterview preparation tips for other job seekers

Tip 1: Do not be nervous
Tip 2 : Ask questions from the interviewer if you are confused

Application resume tips for other job seekers

Tip 1 : Mention your coding achievement in the resume
Tip 2 : You should have at least one good project on your resume.

Final outcome of the interviewSelected

Skills evaluated in this interview

I appeared for an interview before Nov 2020.

Round 1 - Coding Test 

(3 Questions)

Round duration - 90 Minutes
Round difficulty - Medium

1. 90 min , can do anytime between a designated 4 hr window
2. was on Hackerrank, and I was familiar with the platform
3. had 3 coding questions

  • Q1. 

    Bipartite Graph Problem Statement

    Given an undirected graph of 'V' vertices (labeled 0, 1, ..., V-1) and 'E' edges, the task is to determine whether the graph is bipartite.

    Explanation:

    A bipartite grap...

  • Ans. 

    The task is to determine whether a given undirected graph is bipartite or not.

    • Create a function to check if the graph can be colored using two colors without any adjacent vertices sharing the same color.

    • Use graph coloring algorithms like BFS or DFS to determine if the graph is bipartite.

    • Check for odd-length cycles in the graph, as a bipartite graph cannot have odd-length cycles.

    • Consider using a boolean array to keep tr...

  • Answered by AI
  • Q2. 

    Longest Common Subsequence Problem Statement

    Given two strings STR1 and STR2, determine the length of their longest common subsequence.

    A subsequence is a sequence that can be derived from another sequen...

  • Ans. 

    The problem involves finding the length of the longest common subsequence between two given strings.

    • Use dynamic programming to solve the problem efficiently.

    • Create a 2D array to store the lengths of common subsequences of substrings.

    • Iterate through the strings to fill the array and find the length of the longest common subsequence.

    • Return the length of the longest common subsequence for each test case.

  • Answered by AI
  • Q3. 

    Convert Array to Min Heap Task

    Given an array 'ARR' of integers with 'N' elements, you need to convert it into a min-binary heap.

    A min-binary heap is a complete binary tree where each internal node's va...

  • Ans. 

    Convert the given array into a min-binary heap by following min-heap properties.

    • Iterate through the array and heapify each node starting from the last non-leaf node to the root.

    • For each node, compare it with its children and swap if necessary to maintain min-heap property.

    • Continue this process until the entire array satisfies the min-heap property.

  • Answered by AI
Round 2 - Video Call 

(2 Questions)

Round duration - 60 minutes
Round difficulty - Hard

With manager 
1. DS/algo
2. Networking
3, basic project stuff
4. Google meet
3. was in the afternoon

  • Q1. 

    Wildcard Pattern Matching Problem Statement

    Implement a wildcard pattern matching algorithm to determine if a given wildcard pattern matches a text string completely.

    The wildcard pattern may include the...

  • Ans. 

    Implement a wildcard pattern matching algorithm to determine if a given wildcard pattern matches a text string completely.

    • Create a dynamic programming matrix to store intermediate results

    • Handle cases for '?' and '*' characters separately

    • Check if the characters match or '*' can be used to match any sequence of characters

  • Answered by AI
  • Q2. 

    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 (leftmost node)

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

    • Time complexity should be O(n) where n is the number of nodes in the tree

  • Answered by AI

Interview Preparation Tips

Professional and academic backgroundI completed Computer Science Engineering from IIT Jammu. I applied for the job as SDE - Intern in BangaloreEligibility criteriaNODunzo interview preparation:Topics to prepare for the interview - DS and Algo , System design , Networking , DBMS , OSTime required to prepare for the interview - 2 MonthsInterview preparation tips for other job seekers

Tip 1 : Interview Preparation is different from competitive coding. One has not to be a master, to ace faang interviews. CP is like solving puzzles. 
Tip 2 : In interview be as descriptive as you can. Try to demonstrate the what you are thinking and the path you took to reach the solution ( whether or not it is correct )
Tip 3 : Try to improve your communication skills ( Trust me it matters a lot )

Application resume tips for other job seekers

Tip 1 : Have a master resume and align it with the company requirements and position you are applying 
Tip 2 : Include the projects that you actually worked on or have the knowledge about it

Final outcome of the interviewSelected

Skills evaluated in this interview

I appeared for an interview before May 2021.

Round 1 - Video Call 

(2 Questions)

Round duration - 60 Minutes
Round difficulty - Easy

This round contained two coding questions. I was also asked some basic android development questions as I had mentioned a couple of projects around android.

  • Q1. 

    Convert Binary Tree to Mirror Tree Problem Statement

    Given a binary tree, convert this binary tree into its mirror tree. A binary tree is a tree in which each parent node has at most two children. The mir...

  • Ans. 

    Convert a binary tree into its mirror tree by interchanging left and right children of non-leaf nodes.

    • Traverse the binary tree in a recursive manner and swap the left and right children of each non-leaf node.

    • Use a temporary variable to swap the children of each node.

    • Ensure to handle cases where a node may have only one child or no children.

    • Implement the function to convert the given binary tree to its mirror tree in pl...

  • Answered by AI
  • Q2. How would you implement undo and redo operations for MS Word?
  • Ans. 

    Implementing undo and redo operations for MS Word

    • Maintain a stack for undo operations and another stack for redo operations

    • Whenever a change is made, push the previous state onto the undo stack

    • When undo is triggered, pop the state from undo stack and push it onto redo stack

    • When redo is triggered, pop the state from redo stack and push it onto undo stack

    • Ensure to update the document state accordingly after each undo or ...

  • Answered by AI
Round 2 - Video Call 

(2 Questions)

Round duration - 60 Minutes
Round difficulty - Medium

I was asked two coding questions, some questions around OOPs concepts and DBMS.

  • Q1. 

    Left View of a Binary Tree

    Given a binary tree, your task is to print the left view of the tree. The left view of a binary tree contains the nodes visible when the tree is viewed from the left side.

    Inpu...

  • Ans. 

    Print the left view of a binary tree, containing nodes visible from the left side.

    • Traverse the tree level by level, keeping track of the leftmost node at each level

    • Use a queue for level order traversal and a map to store the leftmost nodes

    • Print the values of leftmost nodes stored in the map as the left view of the tree

  • Answered by AI
  • Q2. 

    Trie Data Structure Implementation

    Design and implement a Trie (Prefix Tree) which should support the following two operations:

    1. Insert a word into the Trie. The operation is marked as 'insert(word)'.
    2....
  • Ans. 

    Implement a Trie data structure supporting insert and search operations efficiently.

    • Implement a Trie class with insert and search methods.

    • Use a nested class Node to represent each node in the Trie.

    • For insert operation, iterate through each character in the word and create nodes as needed.

    • For search operation, traverse the Trie based on the characters in the word to check for existence.

    • Return 'TRUE' if the word is found...

  • Answered by AI

Interview Preparation Tips

Professional and academic backgroundI completed Computer Science Engineering from DA-IICT. I applied for the job as SDE - Intern in BangaloreEligibility criteriaNo criteriaDunzo interview preparation:Topics to prepare for the interview - Data Structures, Algorithms, Basics of android, OOPs, DBMSTime required to prepare for the interview - 3 MonthsInterview preparation tips for other job seekers

Tip 1 : Focussing on DSA is essential for freshers, most of the companies' interview process will contain DSA questions. 
Tip 2 : Stay stick to the basic concepts and don't feel overwhelmed by the advance concepts, most of the companies' will judge you on your foundation/basics. 

Application resume tips for other job seekers

Tip 1 : Resume should be one pager document which enables user to understand your background. Understand the difference between CV and resume.
Tip 2 : Be as honest as you can on your resume. However, writing that you are a beginner for this particular skill is fine.

Final outcome of the interviewSelected

Skills evaluated in this interview

Top trending discussions

View All
Indian Startups
2w
a senior executive
One of the best sources for Startup investment: DAHEJ(DOWRY)
You won't believe my senior has a good corporate job with over 10 years of experience. But suddenly resigned just a few days after his wedding. We all thought maybe he got married and wants to spend his time with his wife, and decided to go to his place to give him a proper farewell. All of us got shocked after knowing that he left because his father-in-law gifted him a fat cash amount and a car in the name of "blessings." He’s using the money to fund his startup and the car for "business movement." I mean seriously? People are now using dowry as startup capital and walking around acting like CEOs, playing boss with someone else’s money. Bas, shaadi karo aur apne sapne chalu karo, courtesy sasural. I don't know feeling inspired? Or disgusted?
Got a question about Dunzo?
Ask anonymously on communities.

Interview questions from similar companies

Interview experience
4
Good
Difficulty level
Moderate
Process Duration
6-8 weeks
Result
No response

I applied via Campus Placement and was interviewed in Jan 2024. There were 4 interview rounds.

Round 1 - Coding Test 

Easy to medium level of leet code

Round 2 - Technical 

(1 Question)

  • Q1. 1. Fibonacci series with recursion and without recursion 2. String Palindrome 3. Count all repeated numbers from the array
  • Ans. 

    Answering questions related to Fibonacci series, string palindrome, and counting repeated numbers in an array.

    • For Fibonacci series with recursion, write a function that calls itself to calculate the next number in the series.

    • For Fibonacci series without recursion, use a loop to calculate the series.

    • For string palindrome, compare characters from start and end of the string.

    • To count all repeated numbers from the array, u...

  • Answered by AI
Round 3 - Technical 

(1 Question)

  • Q1. 1.Given an array(0-based indexing), you have to find the max sum of i*A[i] where A[i] is the element at index i in the array. The only operation allowed is to rotate(clock-wise or counter clock-wise) the ...
  • Ans. 

    Rotate array to find max sum of i*A[i]

    • Rotate array to bring maximum element to front

    • Calculate sum of i*A[i] for each rotation

    • Keep track of maximum sum found

  • Answered by AI
Round 4 - HR 

(1 Question)

  • Q1. 1.Oops concepts 2.Oops code 2.About Java Spring 3. Array stack questions 4.Project discussion

Interview Preparation Tips

Interview preparation tips for other job seekers - Solve leet code question, clear concept of DSA.

Skills evaluated in this interview

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

I applied via Campus Placement and was interviewed in Sep 2023. There was 1 interview round.

Round 1 - Coding Test 

3 Questions were asked out of which if you did 2 you were shortlisted for next round. Questions were mostly from topics like array, string and greedy

Interview Preparation Tips

Interview preparation tips for other job seekers - There were 3 rounds after the initial round, 1st round asked 2 questions, one was based on sorting an array in a way that an element would always have it's left element smaller than itself and right element always greater than itself. Second question was a bit lengthy where I was given a linked list question. Next round i was asked 2 questions both based on greedy problems and final round was the interview where they would test your knowledge to the depths. Advanced questions on OOP, System Architecture, Database Management System and Research Work was focused on.
Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(1 Question)

  • Q1. It was based on dynamic programming

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare DSA very well
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
-

I applied via LinkedIn and was interviewed in Dec 2023. There was 1 interview round.

Round 1 - Technical 

(1 Question)

  • Q1. System design, coding and debugging
Are these interview questions helpful?
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

I appeared for an interview in May 2025, where I was asked the following questions.

  • Q1. They gave the advanced DSA question based on the matrix
  • Q2. A small self Intro

Interview Preparation Tips

Interview preparation tips for other job seekers - Work smart

I appeared for an interview before Sep 2020.

Round 1 - Face to Face 

(2 Questions)

Round duration - 60 Minutes
Round difficulty - Easy

  • Q1. 

    0/1 Knapsack Problem Statement

    A thief is planning to rob a store and can carry a maximum weight of 'W' in his knapsack. The store contains 'N' items where the ith item has a weight of 'wi' and a value of...

  • Ans. 

    Yes, the 0/1 Knapsack problem can be solved using dynamic programming with a space complexity of not more than O(W).

    • Use a 1D array to store the maximum value that can be stolen for each weight capacity from 0 to W.

    • Iterate through each item and update the array based on whether including the item would increase the total value.

    • The final value in the array at index W will be the maximum value that can be stolen.

  • Answered by AI
  • Q2. 

    Find the Second Largest Element

    Given an array or list of integers 'ARR', identify the second largest element in 'ARR'.

    If a second largest element does not exist, return -1.

    Example:

    Input:
    ARR = [2,...
  • Ans. 

    Find the second largest element in an array of integers.

    • Iterate through the array to find the largest and second largest elements.

    • Handle cases where all elements are identical.

    • Return -1 if a second largest element does not exist.

  • Answered by AI
Round 2 - Video Call 

(1 Question)

Round duration - 60 Minutes
Round difficulty - Easy

System Design Round

  • Q1. Design a system for Twitter, discussing its architecture, key components, and scalability considerations.
  • Ans. 

    Design a scalable system for Twitter with key components and architecture.

    • Use microservices architecture for scalability and fault isolation.

    • Key components include user service, tweet service, timeline service, and notification service.

    • Use a distributed database like Cassandra for storing tweets and user data.

    • Implement a message queue like Kafka for handling real-time updates and notifications.

    • Use a caching layer like ...

  • Answered by AI
Round 3 - HR 

Round duration - 30 Minutes
Round difficulty - Easy

It is just a formality

Interview Preparation Tips

Professional and academic backgroundI applied for the job as SDE - 1 in BangaloreEligibility criteriaResume shortlistingSwiggy interview preparation:Topics to prepare for the interview - OOPS, Data Structures, Core Java, Algorithms, DBMS, SQL,Time required to prepare for the interview - 3 monthsInterview preparation tips for other job seekers

Tip 1 : System Design
Tip 2 : Practice questions from leetcode
Tip 3 : Have some projects.

Application resume tips for other job seekers

Tip 1 : Mention what you know 
Tip 2 : Good previous work to showcase

Final outcome of the interviewSelected

Skills evaluated in this interview

I appeared for an interview in Nov 2020.

Round 1 - Coding Test 

Round duration - 50 minutes
Round difficulty - Easy

Mcq Questions

Round 2 - Video Call 

(1 Question)

Round duration - 10 Minutes
Round difficulty - Easy

It was very difficult they go in depth of everything

  • Q1. 

    Binary Tree to BST Transformation Task

    Given a binary tree consisting of 'N' nodes with distinct integer values, transform it into a Binary Search Tree (BST) while maintaining the original structure of th...

  • Ans. 

    Transform a binary tree into a Binary Search Tree (BST) while maintaining the original structure.

    • Implement a function to transform the binary tree into a BST by rearranging the nodes based on BST rules.

    • Maintain the original structure of the binary tree while converting it into a BST.

    • Ensure that nodes in the left subtree hold values less than the node's value, and nodes in the right subtree hold values greater than the ...

  • Answered by AI

Interview Preparation Tips

Eligibility criteriaCocubesCollegedunia interview preparation:Topics to prepare for the interview - Coding skills, Testing code as you write it, Problem-solving skills, Collaboration skillsTime required to prepare for the interview - 1 MonthInterview preparation tips for other job seekers

Tip 1 : Do atleast 2 projects
Tip 3 : Practice Atleast 250 Questions

Application resume tips for other job seekers

Tip 1 : Have some projects on resume.
Tip 2 : Do not put false things on resume.

Final outcome of the interviewSelected

Skills evaluated in this interview

Tell us how to improve this page.

Interview Questions from Similar Companies

Swiggy Interview Questions
3.8
 • 469 Interviews
Meesho Interview Questions
3.7
 • 365 Interviews
Udaan Interview Questions
3.9
 • 346 Interviews
BlackBuck Interview Questions
3.7
 • 193 Interviews
Tata 1mg Interview Questions
3.6
 • 185 Interviews
Digit Insurance Interview Questions
3.8
 • 158 Interviews
Paisabazaar.com Interview Questions
3.4
 • 152 Interviews
Urban Company Interview Questions
3.4
 • 143 Interviews
Collegedunia Interview Questions
2.9
 • 102 Interviews
Zetwerk Interview Questions
4.0
 • 100 Interviews
View all
Store Manager
109 salaries
unlock blur

₹3.8 L/yr - ₹7 L/yr

Community Operations Specialist
99 salaries
unlock blur

₹2.7 L/yr - ₹4.2 L/yr

Procurement Manager
96 salaries
unlock blur

₹3.5 L/yr - ₹7 L/yr

Inward Executive
93 salaries
unlock blur

₹1.8 L/yr - ₹3.5 L/yr

Delivery Boy
89 salaries
unlock blur

₹0.5 L/yr - ₹4.5 L/yr

Explore more salaries
Compare Dunzo with

Swiggy

3.7
Compare

Zepto

3.5
Compare

Porter

3.8
Compare

Rapido

3.8
Compare
write
Share an Interview