i
Dunzo
Filter interviews by
Be the first one to contribute and help others!
50 min general aptitude
I was interviewed before Aug 2016.
I applied via Approached by Company and was interviewed before Mar 2021. There was 1 interview round.
I applied via Recruitment Consultant and was interviewed before Dec 2019. There were 3 interview rounds.
Swiggy is an Indian food delivery company that operates through a website and mobile app.
Swiggy was founded in 2014 and is headquartered in Bangalore, India.
It partners with local restaurants to provide food delivery services to customers.
Swiggy's business model is based on charging a commission fee from the restaurants for every order placed through their platform.
It has expanded to over 500 cities in India and has ov...
I applied via Referral and was interviewed before Apr 2021. There were 2 interview rounds.
How to maintain control spillage
F&V stages refer to the different stages of fruits and vegetables from harvesting to consumption.
The first stage is harvesting, where the produce is picked from the plant.
The second stage is grading, where the produce is sorted based on quality and size.
The third stage is packaging, where the produce is packed for transportation and storage.
The fourth stage is transportation, where the produce is transported to the mar...
I applied via Naukri.com and was interviewed before Sep 2020. There were 4 interview rounds.
I was interviewed before Dec 2020.
To make revenue, a sales manager can focus on increasing sales, expanding customer base, and optimizing pricing strategies.
Implement effective sales strategies and techniques
Identify and target potential customers
Build and maintain strong customer relationships
Optimize pricing strategies to maximize profit
Offer additional products or services to existing customers
Provide exceptional customer service
Analyze market trend
To handle a team effectively, a sales manager should provide clear goals, effective communication, support and motivation, and foster a positive team culture.
Set clear goals and expectations for the team
Communicate effectively and regularly with the team
Provide support and resources to help the team succeed
Motivate and inspire team members through recognition and rewards
Foster a positive team culture by encouraging col...
I was interviewed in Dec 2020.
Round duration - 90 minutes
Round difficulty - Easy
This round had 2 coding problems and we had to code it on hackerearth only.
The use of Outside IDE was forbidden.
The timing of test was 12:00 PM to 1:30 PM.
Ninja is tasked with organizing a meeting in an office that starts at time ‘0’ and ends at time ‘LAST’. There are ‘N’ presentations scheduled with given start and end times....
Reschedule at most K presentations to maximize gap without overlap.
Iterate through presentations and calculate the gaps between them
Sort presentations by end time and reschedule K presentations to maximize gap
Return the longest gap achieved
You are located at point ‘A’, the top-left corner of an M x N matrix, and your target is point ‘B’, the bottom-right corner of the same matrix. Your task is to calcula...
Calculate total unique paths from top-left to bottom-right corner of a matrix by moving only right or down.
Use dynamic programming to solve this problem efficiently.
Create a 2D array to store the number of unique paths for each cell.
Initialize the first row and first column with 1 as there is only one way to reach them.
For each cell, the number of unique paths is the sum of paths from the cell above and the cell to the...
Round duration - 90 minutes
Round difficulty - Medium
This round was coding round with discussion .
The interviewer tried to trick the questions and wanted to test how we respond if something is asked out of preparation.
The code we ran on Google Docs was checked on Online IDE if it ran for sample inputs.
Timing : 12:00 PM to 1:30 PM
You are given a graph with 'N' vertices labeled from 1 to 'N' and 'M' edges. In one operation, you can shift an edge from being between two directly connected vertice...
Determine the minimum number of operations to connect a graph by shifting edges between disconnected vertices.
Use a disjoint set union (DSU) data structure to keep track of connected components.
Count the number of connected components in the graph.
The minimum number of operations required is equal to the number of connected components minus 1.
Given a 'Snake and Ladder' board with N rows and N columns, where positions are numbered from 1 to (N*N) starting from the bottom left, alternating direction each row, f...
Find the minimum number of dice throws required to reach the last cell on a 'Snake and Ladder' board.
Use Breadth First Search (BFS) algorithm to find the shortest path on the board.
Create a mapping of each cell to its corresponding row and column on the board.
Consider the presence of snakes and ladders while calculating the next possible moves.
Handle the case where the last cell is unreachable by returning -1.
Optimize ...
Round duration - 75 minutes
Round difficulty - Hard
This was a problem solving round and lasted for 75 minutes. The interviewer gave me a very complicated question.
The round was held on Google Meet and I was supposed to tell him the approach and write code on shared Google Docs.
Assume you initially have an empty array called ARR
. You are required to return the updated array after executing Q
number of queries on this array.
There are two types of que...
Implement a function to update an array based on XOR queries.
Create an empty array to store the elements.
Iterate through each query and update the array accordingly.
Use bitwise XOR operation to update the elements.
Ensure to handle both types of queries - insert and XOR operation.
Tip 1 : prepare all Topics from Coding Ninjas of Course Competitive Programming. Also I practiced atleast one question everyday from sites like Leetcode,Interviewbit and also took part in Codeforces Contest.
Tip 2 : Though Data Structure is the base for any tech interview, one must know some other subjects as well like Operating System, Networking, and Database Management System for which I took help from Coding Ninja’s notes and from GeeksforGeeks.
Tip 1 : Keep your resume up to date and mention 2-3 good level projects which will give a good impression to the interviewer .
Tip 2 : Don't put false things on the resume.
I was interviewed in Sep 2020.
Round duration - 90 mintues
Round difficulty - Medium
Goes good no problem at all exam is between 10 to 11:30.
Rafiq loves to play with piles of dominoes, especially when they are of equal heights. His father gifted him 'N' piles of dominoes, each with a positive number of stacke...
Calculate minimum cost to make consecutive windows of domino piles equal in height.
Iterate through each window of size 'K' and calculate the minimum cost to make all piles in that window equal in height.
Keep track of the running sum of domino heights in each window to minimize cost.
Return the minimum cost for each window as the output.
You are given an integer array 'ARR' of size 'N' and an integer 'S'. Your task is to find and return a list of all pairs of elements where each sum of a pair equals 'S'.
Find pairs of elements in an array that sum up to a given value, sorted in a specific order.
Iterate through the array and for each element, check if the complement (S - current element) exists in a hash set.
If the complement exists, add the pair (current element, complement) to the result list.
Sort the result list based on the first element of each pair, and then based on the second element if the first elements are eq
Round duration - 90 minutes
Round difficulty - Hard
Goes good no problem at all exam at same time between 10 to 11:30.
You are given two sorted integer arrays, ARR1
and ARR2
, with sizes M
and N
, respectively. Merge these arrays into ARR1
as a single sorted array. Assume ARR1
has a size equa...
Merge two sorted arrays into one sorted array in place.
Iterate from the end of both arrays and compare elements, placing the larger element at the end of ARR1
Continue this process until all elements from ARR2 are merged into ARR1
Ensure to handle cases where one array is fully merged before the other
Tip 1 : Do atleast 1 good projects
Tip 2 : Practice Atleast 300 Questions
Tip 3 : Should be able to explain your project
Tip 1 : Always be true with the resume
Tip 2 : Do not put false things on resume.
Community Operations Specialist
116
salaries
| ₹0 L/yr - ₹0 L/yr |
Store Manager
104
salaries
| ₹0 L/yr - ₹0 L/yr |
Procurement Manager
104
salaries
| ₹0 L/yr - ₹0 L/yr |
Delivery Boy
91
salaries
| ₹0 L/yr - ₹0 L/yr |
Inward Executive
90
salaries
| ₹0 L/yr - ₹0 L/yr |
Swiggy
Zepto
Porter
Rapido