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 Interview Questions, Process, and Tips

Updated 31 Dec 2024

Top Dunzo Interview Questions and Answers

  • 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 siz ...read more
    asked in Software Developer Intern interview
  • Q2. Container with Most Water Problem Statement Given a sequence of 'N' space-separated non-negative integers A[1], A[2], ..., A[i], ..., A[n], where each number in the sequ ...read more
    asked in SDE-2 interview
  • Q3. Maximum Coins Collection Problem Imagine a two-dimensional grid with 'N' rows and 'M' columns, where each cell contains a certain number of coins. Alice and Bob want to ...read more
    asked in Software Developer interview
View all 31 questions

Dunzo Interview Experiences

Popular Designations

69 interviews found

Interview experience
5
Excellent
Difficulty level
Easy
Process Duration
-
Result
Selected Selected

I applied via Walk-in and was interviewed before Oct 2022. There were 2 interview rounds.

Round 1 - Aptitude Test 

It's really easy and easy to crack

Round 2 - HR 

(1 Question)

  • Q1. Just about the work experience

Technical Subject Matter Expert Interview Questions asked at other Companies

Q1. Causes of inflation and what does the government do to control the situation?
View answer (1)

Interview Questions & Answers

user image Sushmita Talageri

posted on 6 Jan 2021

I applied via Recruitment Consulltant and was interviewed in Nov 2021. There were 3 interview rounds.

Interview Questionnaire 

1 Question

  • Q1. Previous experience related questions
Dunzo Interview Questions and Answers for Freshers
illustration image

I applied via Walk-in and was interviewed before Oct 2021. There were 2 interview rounds.

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 Resume tips
Round 2 - HR 

(5 Questions)

  • Q1. About yourself in English?
  • Q2. About previous experience?
  • Q3. What you have Computer skills
  • Q4. What is your previous CTC
  • Q5. What is your expected CTC
  • Ans. 

    My expected CTC is in line with industry standards and commensurate with my experience and skills.

    • I have researched the market and have a good understanding of the salary range for this position

    • I am open to negotiation based on the overall compensation package

    • I am looking for a fair and competitive salary that reflects my qualifications and contributions to the company

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Be confident. Don't be nervous. Try to speak in English max .

Inventory Executive Interview Questions asked at other Companies

Q1. What is the Planogram and Receiving process?
View answer (2)
Interview experience
2
Poor
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Company Website and was interviewed before Feb 2022. There were 4 interview rounds.

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 Resume tips
Round 2 - HR 

(1 Question)

  • Q1. JD about the catalog executive work
Round 3 - Gooogle Meet 

(1 Question)

  • Q1. Asked about my previous experience, and excel skills
Round 4 - One-on-one 

(1 Question)

  • Q1. One-on-one with the manager asked me about my experience and work, explained my KRA, and discussed it within a week; I joined the company.

Interview Preparation Tips

Interview preparation tips for other job seekers - Be yourself, and stay confident and answer whatever you know, that's about it.

Catalogue Executive Interview Questions asked at other Companies

Q1. What documents are required for vendor registration
View answer (1)

Dunzo interview questions for popular designations

 Community Operations Specialist

 (4)

 Procurement Manager

 (3)

 Software Developer Intern

 (3)

 Inward Executive

 (2)

 Store Executive

 (2)

 Operations Associate

 (2)

 MIS Analyst

 (2)

 Store Manager

 (2)

I applied via Monster and was interviewed in Oct 2021. There were 2 interview rounds.

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 Resume tips
Round 2 - HR 

(3 Questions)

  • Q1. Where do you see yourself in 5 years?
  • Q2. What are your salary expectations?
  • Q3. Tell me about yourself.

Interview Preparation Tips

Topics to prepare for Dunzo Operations Associate interview:
  • New Product Introduction
Interview preparation tips for other job seekers - prepare yourself before attending any interviews

Operations Associate Interview Questions asked at other Companies

Q1. How do you get use to bulk of invoices comes at a time and how do you work on it
View answer (7)

Get interview-ready with Top Dunzo Interview Questions

I was interviewed 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

Top Dunzo Software Developer Intern Interview Questions and Answers

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 direction (+ve means moving right, -ve ... read more
View answer (1)

Software Developer Intern Interview Questions asked at other Companies

Q1. Sum of Maximum and Minimum Elements Problem Statement Given an array ARR of size N, your objective is to determine the sum of the largest and smallest elements within the array. Follow Up: Can you achieve the above task using the least numb... read more
View answer (5)

I was interviewed 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 Dunzo Software Developer Intern Interview Questions and Answers

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 direction (+ve means moving right, -ve ... read more
View answer (1)

Software Developer Intern Interview Questions asked at other Companies

Q1. Sum of Maximum and Minimum Elements Problem Statement Given an array ARR of size N, your objective is to determine the sum of the largest and smallest elements within the array. Follow Up: Can you achieve the above task using the least numb... read more
View answer (5)

Interview Questions & Answers

user image Anonymous

posted on 6 Jan 2021

Interview Questionnaire 

1 Question

  • Q1. Asked about previous company experience

SDE-2 Interview Questions & Answers

user image Anonymous

posted on 15 Sep 2021

I was interviewed before Sep 2020.

Round 1 - Coding Test 

(1 Question)

Round duration - 60 minutes
Round difficulty - Medium

  • Q1. 

    Container with Most Water Problem Statement

    Given a sequence of 'N' space-separated non-negative integers A[1], A[2], ..., A[i], ..., A[n], where each number in the sequence represents the height of a lin...

  • Ans. 

    Find two lines to form a container with maximum water area on a Cartesian plane.

    • Iterate through the array from both ends to find the maximum area.

    • Calculate the area using the formula: (min(height[left], height[right]) * (right - left)).

    • Update the pointers based on the height of the lines to maximize the area.

  • Answered by AI
Round 2 - Face to Face 

(2 Questions)

Round duration - 45 minutes
Round difficulty - Easy

  • Q1. 

    Anagram Substring Search

    Given two strings 'STR' and 'PTR', identify all starting indices of 'PTR' anagram substrings in 'STR'. Two strings are anagrams if one can be rearranged to form the other.

    Input:

    ...
  • Ans. 

    Identify starting indices of anagram substrings of 'PTR' in 'STR'.

    • Use a sliding window approach to check for anagrams of 'PTR' in 'STR'.

    • Create a frequency map of characters in 'PTR' and 'STR' to compare.

    • Slide the window along 'STR' and check if the frequency maps match.

    • Return the starting indices where anagrams are found.

  • Answered by AI
  • Q2. 

    Maximum Size Rectangle Binary Sub-Matrix with All 1s

    Given a binary-valued matrix of size N x M, your task is to determine the largest area of a submatrix that contains only 1's.

    Input:

    The first line c...
  • Ans. 

    Find the largest area of a submatrix containing only 1's in a binary matrix.

    • Iterate over each cell in the matrix and calculate the maximum area of submatrix with all 1's ending at that cell.

    • Use dynamic programming to keep track of the maximum area ending at each cell.

    • Update the maximum area as you iterate through the matrix.

    • Return the overall maximum area found in the matrix.

  • Answered by AI
Round 3 - Face to Face 

(2 Questions)

Round duration - 60 minutes
Round difficulty - Medium

  • Q1. 

    Number of Subsequences with Even and Odd Sum

    Your task is to determine the number of subsequences with odd sums and the number of subsequences with even sums from a given array of positive integers. As res...

  • Ans. 

    Count the number of subsequences with odd and even sums in a given array of positive integers modulo 10^9 + 7.

    • Use dynamic programming to keep track of the count of subsequences with odd and even sums.

    • Consider the parity of each element in the array to determine the count of subsequences with odd and even sums.

    • Apply modulo 10^9 + 7 to handle large resulting numbers.

    • Example: For input [1, 2, 3], there are 3 subsequences

  • Answered by AI
  • Q2. 

    Minimum Cost to Reduce Array Problem Statement

    You are given an array ARR containing N positive integers. Your task is to reduce the size of this array to 1 by repetitively merging adjacent elements. Each...

  • Ans. 

    Find the minimum cost to reduce an array to a single element by merging adjacent elements with their sum.

    • Iteratively merge adjacent elements to minimize total cost

    • Choose pairs to merge strategically to reduce cost

    • Calculate sum of adjacent elements and update array size

  • Answered by AI
Round 4 - Face to Face 

(1 Question)

Round duration - 60 Minutes
Round difficulty - Medium

  • Q1. 

    Next Greater Element Problem Statement

    You are given an array arr of length N. For each element in the array, find the next greater element (NGE) that appears to the right. If there is no such greater ele...

  • Ans. 

    The task is to find the next greater element for each element in an array to its right, if no greater element exists return -1.

    • Use a stack to keep track of elements for which the next greater element is not found yet.

    • Iterate through the array from right to left, popping elements from the stack until a greater element is found.

    • Store the next greater element for each element in a separate array.

  • Answered by AI

Interview Preparation Tips

Professional and academic backgroundI applied for the job as SDE - 2 in BangaloreEligibility criteriaPrior experience as SDEDunzo interview preparation:Topics to prepare for the interview - Data structures and algorithms, Databases, Design patterns, System design.Time required to prepare for the interview - 1 monthInterview preparation tips for other job seekers

Tip 1 : Do some basic research about the interview process and types of rounds while appearing for a company interview. Narrow down the topics and draft a realistic plan afterwards.
Tip 2 : Try to solve as many problems as possible topic wise.
Tip 3 : Please cover the breadth of topics first to get an early estimate of strong and weak topics.

Application resume tips for other job seekers

Tip 1 : Tailor your resume as per expectations from the role you are applying for.
Tip 2 : Order your experiences and skills by relevance.
Tip 3 : Try to fit the content in a single page.

Final outcome of the interviewSelected

Skills evaluated in this interview

Top Dunzo SDE-2 Interview Questions and Answers

Q1. Container with Most Water Problem Statement Given a sequence of 'N' space-separated non-negative integers A[1], A[2], ..., A[i], ..., A[n], where each number in the sequence represents the height of a line drawn at point 'i'. On the Cartesi... read more
View answer (1)

SDE-2 Interview Questions asked at other Companies

Q1. Maximum Frequency Number Problem Statement Given an array of integers with numbers in random order, write a program to find and return the number which appears the most frequently in the array. If multiple elements have the same maximum fre... read more
View answer (5)
Contribute & help others!
anonymous
You can choose to be anonymous

Dunzo Interview FAQs

How many rounds are there in Dunzo interview?
Dunzo interview process usually has 2-3 rounds. The most common rounds in the Dunzo interview process are Resume Shortlist, One-on-one Round and HR.
How to prepare for Dunzo interview?
Go through your CV in detail and study all the technologies mentioned in your CV. Prepare at least two technologies or languages in depth if you are appearing for a technical interview at Dunzo. The most common topics and skills that interviewers at Dunzo expect are Operations, Management, Logistics, E-commerce and Excel.
What are the top questions asked in Dunzo interview?

Some of the top questions asked at the Dunzo interview -

  1. How challenging is handling blue coloured employ...read more
  2. What tools are required to run a smooth operat...read more
  3. What would be the ideal EPH for any ci...read more
How long is the Dunzo interview process?

The duration of Dunzo interview process can vary, but typically it takes about less than 2 weeks to complete.

Recently Viewed

JOBS

Browse jobs

Discover jobs you love

COMPANY BENEFITS

KNR Constructions

20 benefits

COMPANY BENEFITS

IRB Infrastructure

60 benefits

COMPANY BENEFITS

Dilip Buildcon

304 benefits

COMPANY BENEFITS

Dilip Buildcon

304 benefits

SALARIES

Amadeus Media

SALARIES

JUSPAY

SALARIES

Fynd

Tell us how to improve this page.

Dunzo Interview Process

based on 61 interviews

Interview experience

4
  
Good
View more

Interview Questions from Similar Companies

Amazon Interview Questions
4.1
 • 5k Interviews
Flipkart Interview Questions
4.0
 • 1.3k Interviews
Paytm Interview Questions
3.3
 • 752 Interviews
Swiggy Interview Questions
3.8
 • 428 Interviews
BigBasket Interview Questions
3.9
 • 359 Interviews
Zomato Interview Questions
3.8
 • 312 Interviews
Blinkit Interview Questions
3.7
 • 181 Interviews
Uber Interview Questions
4.2
 • 149 Interviews
Ola Cabs Interview Questions
3.4
 • 139 Interviews
Urban Company Interview Questions
3.4
 • 134 Interviews
View all

Dunzo Reviews and Ratings

based on 741 reviews

3.4/5

Rating in categories

3.2

Skill development

3.4

Work-life balance

3.4

Salary

2.4

Job security

3.3

Company culture

2.9

Promotions

3.3

Work satisfaction

Explore 741 Reviews and Ratings
Community Operations Specialist
116 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Store Manager
104 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Procurement Manager
104 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Delivery Boy
91 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Inward Executive
90 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Explore more salaries
Compare Dunzo with

Swiggy

3.8
Compare

Zepto

3.5
Compare

Porter

3.9
Compare

Rapido

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