i
Zomato
Filter interviews by
Clear (1)
I applied via Company Website and was interviewed in Mar 2024. There were 2 interview rounds.
I applied via LinkedIn and was interviewed in Dec 2023. There were 2 interview rounds.
General questions and current affairs
I was interviewed in Mar 2024.
I am a dedicated and results-driven professional with a proven track record of achieving sales targets and leading successful teams.
Achieved 120% of sales target in the last quarter
Led a team of 15 employees to increase store profitability by 25%
Implemented new training programs resulting in improved customer satisfaction scores
I am drawn to the company's commitment to customer satisfaction and employee development.
I admire the company's strong reputation in the industry.
I appreciate the focus on providing high-quality products/services.
I am impressed by the company's dedication to community involvement.
I believe in the company's values and mission statement.
I see great potential for growth and advancement within the company.
I am currently working as a Sales Manager at XYZ Company with 5 years of experience.
Currently responsible for overseeing sales operations and team performance
Managing inventory, analyzing sales data, and implementing strategies to increase revenue
Training and mentoring sales staff to improve customer service and achieve sales targets
Yes, I have received awards for my performance in previous roles.
Received Employee of the Month award twice at my previous job
Recognized for exceeding sales targets and customer satisfaction goals
Received a certificate of excellence for leadership skills
My present salary per annum is $60,000.
My current salary is $60,000 per year.
I am currently earning $5,000 per month.
I make $1,250 per week at my current job.
Management is the process of planning, organizing, coordinating, and controlling resources to achieve organizational goals.
Management involves setting goals and objectives for the organization.
It includes organizing resources such as people, materials, and finances.
Coordinating activities and tasks to ensure efficient operations.
Controlling and monitoring progress towards goals.
Examples of management roles include deci
To generate a new customer, I will implement various marketing strategies and provide exceptional customer service.
Create targeted advertising campaigns to reach potential customers
Offer promotions and discounts to attract new customers
Utilize social media platforms to engage with potential customers
Provide excellent customer service to encourage word-of-mouth referrals
Participate in community events and sponsorships t
P&L stands for Profit and Loss. It is a financial statement that summarizes the revenues, costs, and expenses incurred during a specific period of time.
P&L is also known as an income statement or statement of earnings.
It shows the company's ability to generate profit by increasing revenue and reducing costs.
The statement includes revenue from sales, cost of goods sold, operating expenses, and taxes.
P&L helps in evaluat...
I would empathize with the customer, actively listen to their concerns, and take immediate action to resolve their issue.
Show empathy and understanding towards the customer's dissatisfaction
Listen attentively to their concerns without interrupting
Apologize for any inconvenience caused and take responsibility
Offer a solution or alternatives to address their dissatisfaction
Follow up with the customer to ensure their sati
I will continue to seek opportunities that align with my skills and experience.
I will thank the interviewer for the opportunity to interview and express my continued interest in the company.
I will ask for feedback on areas where I can improve for future opportunities.
I will continue to network and apply for other positions that match my qualifications.
I will stay positive and motivated in my job search journey.
I was interviewed before Sep 2020.
Round duration - 90 minutes
Round difficulty - Easy
This was MCQ+Coding round.
Check if two strings are anagrams by comparing the sorted versions of the strings.
Sort both strings and compare if they are equal.
Use a hashmap to store the frequency of characters in each string and compare the maps.
Ignore spaces and punctuation when comparing the strings.
Round duration - 90 minutes
Round difficulty - Easy
This was face to face interview round.
Round duration - 90 minutes
Round difficulty - Easy
This was face to face interview round.
Tip 1 : Participate in live contests on websites like Codechef, Codeforces etc as much as possible.
Tip 2 : Practice previous interview questions from LeetCode, GeeksForGeeks.
Tip 3 : Revise Computer Science subjects like DBMS, OOPS thoroughly.
Add projects and Internships if you have done any and add only those things which you really know.
Final outcome of the interviewSelectedI was interviewed before Sep 2020.
Round duration - 90 Minutes
Round difficulty - Medium
Interview started at 11:00 am. It was an online round. During the coding round I submitted optimized solution and got full acceptance of the solutions.
You are provided with a directed graph composed of 'N' nodes. You have a matrix called 'EDGES' with dimensions M x 2, which specifies the 'M' edges in the graph. Each edge...
Detect cycle in a directed graph using depth-first search (DFS) algorithm.
Use DFS to traverse the graph and detect back edges indicating a cycle.
Maintain a visited array to keep track of visited nodes during traversal.
If a node is visited again during traversal and it is not the parent node, then a cycle exists.
Return true if a cycle is detected, false otherwise.
Round duration - 80 Minutes
Round difficulty - Medium
Interview started at 10:00 am. Interview went well, I was able to connect with the interviewer and enjoyed the whole interview
Find the next smallest palindrome strictly greater than a given number 'N' represented as a string 'S'.
You are given a number in string format, a...
Find the next smallest palindrome greater than a given number represented as a string.
Convert the string to an integer, find the next greater palindrome, and convert it back to a string.
Handle cases where the number is a palindrome or has all digits as '9'.
Consider both odd and even length numbers when finding the next palindrome.
Round duration - 80 Minutes
Round difficulty - Medium
Interview started at 11:00 am. Interview went well.
Given a binary tree of integers, your task is to return the boundary nodes of the tree in Anti-Clockwise direction starting from the root node.
The first line ...
Return the boundary nodes of a binary tree in Anti-Clockwise direction starting from the root node.
Traverse the left boundary nodes in a top-down manner
Traverse the leaf nodes from left to right
Traverse the right boundary nodes in a bottom-up manner
Handle cases where duplicates occur in the boundary nodes
Implement the function without printing as printing is already managed
Tip 1 : For Data Structures number of questions doesn't matter. Try to understand the logic behind them and try to apply them in creating multiple scenario's. Learn them by heart.
Tip 2 : For Web.Development Try to learn full stack development. See which part interests you more, Increase your knowledge horizon, Always try to build a system a system considering It will be served to millions of customers. By doing this 1-2 projects will increase and cover all the major things which one should learn in their career/college.
Tip 1 : Always try to make it a single page
Tip 2 : Always make resume company specific. eg. Data Structures part more if you are applying for MNC's eg. Amazon, Google, DE Shaw, browserstack.
I was interviewed before Dec 2019.
I was interviewed in Aug 2017.
Merge Sort is a divide and conquer algorithm that sorts an array by dividing it into two halves, sorting them separately, and then merging the sorted halves.
Divide the array into two halves
Recursively sort the two halves
Merge the sorted halves
Find pairs of integers in a BST whose sum is equal to a given number.
Traverse the BST and store the values in a hash set.
For each node, check if (X - node.value) exists in the hash set.
If yes, add the pair (node.value, X - node.value) to the result.
Continue traversal until all nodes are processed.
Merge overlapping time intervals into mutually exclusive intervals.
Sort the intervals based on their start time.
Iterate through the intervals and merge overlapping intervals.
Output the mutually exclusive intervals.
Example: [(1,3), (2,6), (8,10), (15,18)] -> [(1,6), (8,10), (15,18)]
Different types of hashing and alternative for Linear Chaining
Different types of hashing include division, multiplication, and universal hashing
Alternative for Linear Chaining is Open Addressing
Open Addressing includes Linear Probing, Quadratic Probing, and Double Hashing
An AVL tree is a self-balancing binary search tree where the heights of the left and right subtrees differ by at most one.
AVL tree is a binary search tree with additional balance factor for each node.
The balance factor is the difference between the heights of the left and right subtrees.
Insertion and deletion operations in AVL tree maintain the balance factor to ensure the tree remains balanced.
Rotations are performed ...
Find the minimum number of squares whose sum equals to a given number n.
Use dynamic programming to solve the problem efficiently.
Start with finding the square root of n and check if it is a perfect square.
If not, then try to find the minimum number of squares required for the remaining number.
Repeat the process until the remaining number becomes 0.
Return the minimum number of squares required for the given number n.
Insertion sort for a singly linked list.
Traverse the list and compare each node with the previous nodes
If the current node is smaller, swap it with the previous node
Repeat until the end of the list is reached
Time complexity is O(n^2)
I applied via Company Website and was interviewed in May 2019. There were 5 interview rounds.
Some of the top questions asked at the Zomato Deputy Manager interview -
based on 1 interview
Interview experience
based on 1 review
Rating in categories
Key Account Manager
928
salaries
| ₹0 L/yr - ₹0 L/yr |
Delivery Boy
893
salaries
| ₹0 L/yr - ₹0 L/yr |
Business Analyst
588
salaries
| ₹0 L/yr - ₹0 L/yr |
Accounts Manager
296
salaries
| ₹0 L/yr - ₹0 L/yr |
Senior Associate
273
salaries
| ₹0 L/yr - ₹0 L/yr |
Swiggy
Amazon
Dunzo
Flipkart