Upload Button Icon Add office photos
Premium Employer

i

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

Zomato Verified Tick

Compare button icon Compare button icon Compare
3.8

based on 2.2k Reviews

Filter interviews by

Zomato SDE (Software Development Engineer) Interview Questions and Answers

Updated 27 Aug 2022

Zomato SDE (Software Development Engineer) Interview Experiences

3 interviews found

I was interviewed in Jul 2016.

Interview Questionnaire 

4 Questions

  • Q1. One with the group I'm going to work with
  • Q2. One with the project lead
  • Q3. One with the CTO
  • Q4. One with the Head, HR

Interview Preparation Tips

Round: Resume Shortlist
Experience: Resumes were shortlisted and based on that 100 students got to the next round

Round: Test
Experience: 3 programming questions were given
Tips: Prepare algorithms and data structures well
Duration: 1 hour 30 minutes
Total Questions: 3

Skills: Data Strrutures, Algorithmic Approach To Problem Solving, Knowledge About Database Managements Systems, Operating Systems, Computer Networking, Inter Person Communication Skills
College Name: NIT Durgapur

I applied via Campus Placement and was interviewed before Aug 2021. There were 3 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 tips
Round 2 - Coding Test 

1 hour round, DSA questions on stacks and hash maps

Round 3 - Coding Test 

1 hr round, DSA Q's and Puzzle

Interview Preparation Tips

Interview preparation tips for other job seekers - Be well versed with Data structures like hashmap, trees, linked list, arrays and SQL.

SDE (Software Development Engineer) Interview Questions Asked at Other Companies

asked in Carwale
Q1. A string is given consisting of lowercase alphabets. Write a func ... read more
asked in Carwale
Q2. Given a balance and 100 coins;out of which,one is heavier. Find m ... read more
Q3. Given a binary search tree , print the path which has the sum equ ... read more
asked in Housing.com
Q4. Given a square area of 1024x1024 on a map with some flats (housin ... read more
asked in Carwale
Q5. Delete nodes in linkedlist which have a greater value on right si ... read more

SDE (Software Development Engineer) interview

user image Coding Blocks

posted on 21 Nov 2021

Interview questions from similar companies

Round 1 - Coding Test 

It was a 60 min coding test, with 2 dsa questions.

Round 2 - One-on-one 

(1 Question)

  • Q1. Round 2 was a code pair round. Whith question around DP, Trees and heaps.
Round 3 - LLD 

(1 Question)

  • Q1. They as me the LLD of library management system, with afuntional code

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare well on DSA and LLD. The questions were from Trees, DP and heaps.

Interview Questionnaire 

3 Questions

  • Q1. 1. Describe your work experience.
  • Q2. 2. Are you aware of high and low level design principles
  • Ans. 

    Yes, high and low level design principles are important in software development.

    • High level design principles focus on overall architecture and system organization.

    • Low level design principles focus on implementation details and code structure.

    • Examples of high level design principles include SOLID, DRY, and KISS.

    • Examples of low level design principles include naming conventions, code commenting, and code formatting.

    • Both ...

  • Answered by AI
  • Q3. 3. Preferred job location

Interview Preparation Tips

General Tips: Be prepared to answer questions like why flipkart? , why shouldn't I hire you? , why did you choose cs?, which is your proudest moment.
Choose wisely the questions you attempt.
Skill Tips: Solve the course lab questions on your own. Pick a site that suits you and practice there. Read about the company before you go for interviews. If the interviewer asks you to ask a question use that opportunity to learn more about the company. AmbitionBox helps in getting familiar with the type of questions that the company asks.
Skills:
College Name: NIT Surathkal

Interview Preparation Tips

Round: Test
Experience: The selection procedure consisted of one online round followed by 4 face to face interviews.
1st round consisted of 20 MCQs of C/C++ and general aptitude. They shortlisted only 11 B.Techs after first round. Then we had 4 separate interviews out of which one was Bar Raiser round (which is most important).

Round: Technical Interview
Experience: Each interview was of around an hour. They mainly emphasized on data structure part. I got a lot of questions from tree and linked list and few were based on Operating System's concepts. For most of the questions, they asked me to come up with more than one approach and also they introduced many variations in between. After the discussion of approach, I was supposed to write the complete code on paper.Each round was kind of elimination round and the Bar Raiser round was most important of all.

General Tips: For improving coding skills, first code basic searching, sorting and graph algorithms.Then try to program few random questions of trees and linked list while studying there concepts. Then practice some questions from sites like codechef or codeforces and also try to participate in the competitions that take place on these sites.For Operating Systems, just go through the book written by "S Galvin" and try to clear concepts of memory management part.
Apart from these main topics, just have a glance at these few topics:
Database : Basic Queries, Indexing, Transaction
OOP : Definition with understanding of four features of OOPs.Among non-technical stuffs, practice some famous puzzles (just Google it).
After all these done, just keep on solving interviews questions being updated regularly at geeksforgeeks
Overall Experience was very good and challenging as it was the very first day of placement and our interviews went till 4 in the morning. So when the result came, we were very excited.
Skills:
College Name: NIT Surathkal

I was interviewed before Jan 2016.

Interview Preparation Tips

Round: Test
Duration: 1 hour 30 minutes
Total Questions: 22

College Name: Manipal University Jaipur

I was interviewed before May 2016.

Interview Questionnaire 

1 Question

  • Q1. Write a program to calculate the sum of level order tree
  • Ans. 

    Program to calculate sum of level order tree

    • Traverse the tree level by level using BFS

    • Add the values of each level and return the sum

    • Use a queue to store the nodes at each level

    • Handle edge cases like empty tree or null root

  • Answered by AI

Interview Preparation Tips

Round: Resume Shortlist
Experience: Applied through referral and after the review my resume gets shortlisted.

Round: Test
Experience: 6 program and their outputs are given. We have debug the program to get the desired output.
Duration: 11 hours 20 minutes
Total Questions: 6

Round: Test
Experience: Have to write a code for 2 problems.
Duration: 1 hour
Total Questions: 2

Skills: Behavioural Skills, LOGICAL THINKING ABILITIES, Technical Skill

Skills evaluated in this interview

I was interviewed in Aug 2016.

Interview Questionnaire 

3 Questions

  • Q1. A variant of Longest Increasing Subsequence
  • Ans. 

    Find the length of longest increasing subsequence in an array.

    • Use dynamic programming to solve the problem efficiently.

    • Maintain an array to store the length of longest increasing subsequence ending at each index.

    • Traverse the array and update the array for each index.

    • Return the maximum value in the array as the length of longest increasing subsequence.

  • Answered by AI
  • Q2. Maximum of every window of size K in an array
  • Ans. 

    Find maximum of every window of size K in an array

    • Iterate through the array and maintain a deque of indices of elements in the current window

    • Remove indices from the front of the deque if they are outside the current window

    • Remove indices from the back of the deque if their corresponding elements are smaller than the current element

    • The front of the deque will always contain the index of the maximum element in the current

  • Answered by AI
  • Q3. Binary Search in a semi infinite array
  • Ans. 

    Implement binary search in a semi-infinite array.

    • Start with the first element and keep doubling the index until the target element is less than the current element.

    • Perform binary search on the subarray from the last doubled index to the current index.

    • If the target element is not found, repeat the process by doubling the last index and searching again.

    • Handle edge cases where the target element is at the first index or n

  • Answered by AI

Interview Preparation Tips

Round: Test
Experience: Some MCQs on Networking,OS,etc. were asked and 3 coding questions on linked list,etc. were asked.
Tips: Be fast and confident.
Duration: 1 hour 30 minutes
Total Questions: 32

Round: Technical Interview
Experience: Interviewer asked my name and interests and then went about with the questions.
Tips: Must be strong in algorithms and data structures.

Round: Technical Interview
Experience: I was initially unable to solve it but I asked for some hints which were enough.
Tips: Take your time and ask for hints if required.

College Name: IIT Varanasi

Skills evaluated in this interview

Zomato Interview FAQs

How many rounds are there in Zomato SDE (Software Development Engineer) interview?
Zomato interview process usually has 3 rounds. The most common rounds in the Zomato interview process are Coding Test and Resume Shortlist.
What are the top questions asked in Zomato SDE (Software Development Engineer) interview?

Some of the top questions asked at the Zomato SDE (Software Development Engineer) interview -

  1. One with the project l...read more
  2. One with the Head,...read more

Tell us how to improve this page.

Interview Questions from Similar Companies

Amazon Interview Questions
4.1
 • 5k Interviews
Flipkart Interview Questions
4.0
 • 1.4k Interviews
Swiggy Interview Questions
3.8
 • 428 Interviews
PolicyBazaar Interview Questions
3.6
 • 342 Interviews
Udaan Interview Questions
4.0
 • 335 Interviews
Meesho Interview Questions
3.7
 • 329 Interviews
JustDial Interview Questions
3.5
 • 328 Interviews
Info Edge Interview Questions
3.9
 • 318 Interviews
Myntra Interview Questions
4.0
 • 215 Interviews
View all
Zomato SDE (Software Development Engineer) Salary
based on 9 salaries
₹12 L/yr - ₹35 L/yr
25% less than the average SDE (Software Development Engineer) Salary in India
View more details

Zomato SDE (Software Development Engineer) Reviews and Ratings

based on 3 reviews

3.2/5

Rating in categories

2.9

Skill development

2.9

Work-life balance

3.9

Salary

2.4

Job security

2.4

Company culture

3.5

Promotions

3.3

Work satisfaction

Explore 3 Reviews and Ratings
Delivery Boy
1k salaries
unlock blur

₹0.4 L/yr - ₹5.4 L/yr

Key Account Manager
902 salaries
unlock blur

₹4.5 L/yr - ₹14.2 L/yr

Business Analyst
516 salaries
unlock blur

₹5 L/yr - ₹16 L/yr

Accounts Manager
297 salaries
unlock blur

₹4 L/yr - ₹13.2 L/yr

Senior Associate
274 salaries
unlock blur

₹3.2 L/yr - ₹11 L/yr

Explore more salaries
Compare Zomato with

Swiggy

3.8
Compare

Amazon

4.1
Compare

Dunzo

3.4
Compare

Flipkart

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