Upload Button Icon Add office photos

EatClub

Compare button icon Compare button icon Compare

Filter interviews by

EatClub Interview Questions and Answers

Updated 9 Oct 2024
Popular Designations

6 Interview questions

A Software Developer was asked 8mo ago
Q. There are given N ropes of different lengths, we need to connect these ropes into one rope. The cost to connect two ropes is equal to sum of their lengths. The task is to connect the ropes with minimum cost...
Ans. 

The minimum cost of rope cutting involves dynamic programming to find the optimal solution.

  • Use dynamic programming to find the optimal solution

  • Consider the cost of cutting at each possible point

  • Keep track of the minimum cost as you iterate through the rope

View all Software Developer interview questions
A Business Analyst was asked 12mo ago
Q. Estimate the number of delivery riders required if Domino's wants to open a store in CP Delhi.
Ans. 

The number of delivery riders required for a Domino's store in CP Delhi depends on factors like store size, delivery radius, order volume, and peak hours.

  • Consider the size of the store and the delivery radius to determine the coverage area

  • Analyze the expected order volume based on foot traffic and online orders

  • Factor in peak hours and days with higher demand for delivery services

  • Take into account the average deliv...

View all Business Analyst interview questions
A Software Development Engineer Intern was asked
Q. Given an unsorted integer array nums, find the smallest missing positive integer. You must implement an algorithm that runs in O(n) time and uses constant extra space.
Ans. 

Find the first missing positive integer in an array with O(N) time complexity.

  • Iterate through the array and place each element in its correct position (e.g. place 1 in index 0, 2 in index 1, etc.).

  • After rearranging the array, iterate through it again to find the first missing positive integer.

  • Return the missing positive integer found.

View all Software Development Engineer Intern interview questions
A Software Development Engineer Intern was asked
Q. Write an SQL query based on my project schema.
Ans. 

SQL queries are essential for interacting with databases, allowing data retrieval and manipulation.

  • Use SELECT to retrieve data, e.g., SELECT * FROM users;

  • WHERE clause filters results, e.g., SELECT * FROM orders WHERE status = 'shipped';

  • JOIN combines rows from two or more tables, e.g., SELECT users.name, orders.amount FROM users JOIN orders ON users.id = orders.user_id;

  • GROUP BY aggregates data, e.g., SELECT COUNT(*...

View all Software Development Engineer Intern interview questions
A Software Development Engineer Intern was asked
Q. What is a REST API?
Ans. 

REST API is an architectural style for designing networked applications using HTTP requests to access and manipulate data.

  • REST stands for Representational State Transfer.

  • It uses standard HTTP methods like GET, POST, PUT, DELETE.

  • Resources are identified by URLs, e.g., /users/123.

  • Responses are typically in JSON or XML format.

  • Stateless communication means each request from client to server must contain all the inform...

View all Software Development Engineer Intern interview questions
A Software Development Engineer Intern was asked
Q. What is a decorator?
Ans. 

A decorator is a design pattern in Python that allows adding behavior to functions or methods dynamically.

  • Decorators are functions that take another function as an argument and extend its behavior.

  • They are commonly used for logging, access control, and caching.

  • Example: @app.route('/') in Flask is a decorator that defines a route for a web application.

  • You can create custom decorators using the 'def' keyword and 'wr...

View all Software Development Engineer Intern interview questions

EatClub Interview Experiences

4 interviews found

Interview experience
4
Good
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
-

I applied via Referral and was interviewed in May 2024. There was 1 interview round.

Round 1 - Guesstimates 

(2 Questions)

  • Q1. Estimate the number of delivery rider required I’d domino’s want to open a store in CP Delhi
  • Ans. 

    The number of delivery riders required for a Domino's store in CP Delhi depends on factors like store size, delivery radius, order volume, and peak hours.

    • Consider the size of the store and the delivery radius to determine the coverage area

    • Analyze the expected order volume based on foot traffic and online orders

    • Factor in peak hours and days with higher demand for delivery services

    • Take into account the average delivery t...

  • Answered by AI
  • Q2. Organise a sports event
  • Ans. 

    Organising a sports event involves planning, coordination, and execution of various activities to ensure a successful and enjoyable experience for participants and spectators.

    • Identify the type of sports event (e.g. marathon, football tournament, charity run)

    • Secure a suitable venue with necessary facilities (e.g. fields, courts, changing rooms)

    • Recruit volunteers and staff to assist with event logistics and operations

    • Pro...

  • Answered by AI

Software Developer Interview Questions & Answers

user image MANISH KUMAR SINGH SVNIT

posted on 9 Oct 2024

Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Coding Test 

3 question for 3 hrs , 2 medium and 1 hard level typr

Round 2 - Technical 

(2 Questions)

  • Q1. Minimum cost of rope cutting
  • Ans. 

    The minimum cost of rope cutting involves dynamic programming to find the optimal solution.

    • Use dynamic programming to find the optimal solution

    • Consider the cost of cutting at each possible point

    • Keep track of the minimum cost as you iterate through the rope

  • Answered by AI
  • Q2. OS related questions
Interview experience
3
Average
Difficulty level
Moderate
Process Duration
-
Result
Not Selected

I applied via Campus Placement and was interviewed in Jul 2023. 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 

2 questions both binary search paltform hakerrank

Round 3 - Technical 

(5 Questions)

  • Q1. Sql query on my project schema
  • Ans. 

    SQL queries are essential for interacting with databases, allowing data retrieval and manipulation.

    • Use SELECT to retrieve data, e.g., SELECT * FROM users;

    • WHERE clause filters results, e.g., SELECT * FROM orders WHERE status = 'shipped';

    • JOIN combines rows from two or more tables, e.g., SELECT users.name, orders.amount FROM users JOIN orders ON users.id = orders.user_id;

    • GROUP BY aggregates data, e.g., SELECT COUNT(*), st...

  • Answered by AI
  • Q2. Find first missing positive integer with O(N)
  • Ans. 

    Find the first missing positive integer in an array with O(N) time complexity.

    • Iterate through the array and place each element in its correct position (e.g. place 1 in index 0, 2 in index 1, etc.).

    • After rearranging the array, iterate through it again to find the first missing positive integer.

    • Return the missing positive integer found.

  • Answered by AI
  • Q3. Asked me design patterns i didnt know
  • Q4. Asked me what is a decorator
  • Ans. 

    A decorator is a design pattern in Python that allows adding behavior to functions or methods dynamically.

    • Decorators are functions that take another function as an argument and extend its behavior.

    • They are commonly used for logging, access control, and caching.

    • Example: @app.route('/') in Flask is a decorator that defines a route for a web application.

    • You can create custom decorators using the 'def' keyword and 'wrapper...

  • Answered by AI
  • Q5. Asked me what is rest api
  • Ans. 

    REST API is an architectural style for designing networked applications using HTTP requests to access and manipulate data.

    • REST stands for Representational State Transfer.

    • It uses standard HTTP methods like GET, POST, PUT, DELETE.

    • Resources are identified by URLs, e.g., /users/123.

    • Responses are typically in JSON or XML format.

    • Stateless communication means each request from client to server must contain all the information...

  • Answered by AI

Skills evaluated in this interview

SDE Interview Questions & Answers

user image Anonymous

posted on 13 Oct 2023

Interview experience
3
Average
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via LinkedIn and was interviewed in Sep 2023. There were 2 interview rounds.

Round 1 - Coding Test 

There are 2 simple Binary Search problems like Book allocation and Koko eating banana.

Round 2 - One-on-one 

(1 Question)

  • Q1. Introduction DSA : Reverse a Linked List , reverse between two indexes , reverse in k groups , run all codes on compiler CS : Thread , Paging , TCP / UDP , Indexing , Normalisation Puzzle

Top trending discussions

View All
Salary Discussions, Hike & Promotions
2w
a senior executive
GF salary Vs. My salary
Me and my gf have been dating for 5 years. Back in 2020, I started my career with a package of ₹5 LPA. Over the years, I’ve reached ₹22 LPA in 2025. She started her journey with ₹3 LPA(2020) and is now earning ₹8 LPA(2025). We’ve been in a live-in relationship for around 2 years, and the idea was to share expenses equally. But, equal sharing never really happened. If we go to a café she likes, especially with friends, I will pay the entire bill. We only split the house rent and grocery bills. I told her lots of time to cut down these costly cafe expenses or earn more money, increase your package, study and work hard, but.....she is now in her comfort zone. Being from a tech background, I have seen people upgrade their skills and package for a good life in metro cities. I am ready to support her in her studies, but she is like I am earning enough for myself.... No, you are not. I love her, but I don't know how to overcome this issue between us. Please suggest!
Got a question about EatClub?
Ask anonymously on communities.

Interview questions from similar companies

I applied via Naukri.com and was interviewed in Sep 2019. There were 4 interview rounds.

Interview Questionnaire 

3 Questions

  • Q1. How to increase business?
  • Ans. 

    To increase business, focus on customer satisfaction, expand marketing efforts, and offer promotions.

    • Improve customer service to increase customer satisfaction and loyalty

    • Expand marketing efforts through social media, email marketing, and targeted advertising

    • Offer promotions such as discounts, referral programs, and loyalty rewards

    • Analyze market trends and adjust business strategies accordingly

    • Collaborate with other bu...

  • Answered by AI
  • Q2. Case study and solutions to business problem
  • Q3. Experience

Interview Preparation Tips

Interview preparation tips for other job seekers - There were 40 candidates and 2 posts were there,
The interview was ,
Written test,
Group discussion,
Interview with Manager.

You need to be prepared for ground level questions.

I appeared for an interview before Dec 2015.

Interview Questionnaire 

2 Questions

  • Q1. 1 question from basic data structures and algorithms The question was similar to the one in the given link- -----/
  • Q2. Why do you want to join the company?
  • Ans. 

    I am excited to join the company because of its reputation for innovation and commitment to employee growth.

    • I am impressed by the company's track record of developing cutting-edge software solutions.

    • I appreciate the company's focus on fostering a culture of learning and development.

    • I am excited about the opportunity to work with a talented team of developers and contribute to the company's success.

    • I believe that the co...

  • Answered by AI

Interview Preparation Tips

Round: Resume Shortlist
Experience: Resumes were shortlisted with a short aptitude round where we are asked basic questions about databases, basic programming(C and C ++ questions)

Round: Technical Interview
Experience: The questions were asked were simple - related to arrays and data structures. Some questions were asked regarding my resume and projects.
Tips: Be thorough with geeksForGeeks, and your projects.

Round: HR Interview
Experience: I told him how I found the story of the founder of Infoedge very inspiring.
Tips: This round should be more simpler , be prepared with why you want to join the company and general HR questions

Skills: Basic C/C++, Programming Skills In Any Language Like C
College Name: IIIT Allahabad

Interview Preparation Tips

Round: Technical Interview
Experience: Ques will be based on arrays( duplicate element, missing element in 1 to n array), link list(reverse, remove loop, middle node etc), Hashing, sql join, normalisation, indexing in sql, singlton pattern and sorting and searching.
Tips: Focus will remain on algorithms. Whatever program they will ask to write, they will also ask to optimize the solution.

Skill Tips: Puzzle on mislabled jar, odd weight ball. As I had exp in Java, so some more que on Java, java script and web technology. All you need in interview is to be confident and show your interest in web domain.
Skills: Java, Data structure, Algorithm
College Name: NA
Are these interview questions helpful?

Interview Preparation Tips

Round: Test
Experience: First round was a simple round which involved 10 multiple choice questions and 3 coding questions on hackerrank platform.

Round: Technical Interview
Experience: Mainly on topics like networks, data structures and algorithms, operating systems. The interviewers looked for people who have had prior experience in web development and asked questions regarding web development in depth too.
Tips: I recommend everyone to read the book titled, 'Cracking the Coding Interview' as it was helpful in my approach to an interview.

General Tips: The one major thing that would give you the edge in joining Myntra would definitely be exposure to web development. Since it is not a part of the curriculum , it's all the more important for you to familiarize yourself with web development. In fact, a few projects in the same field would put you in a very advantageous position to get the job.
Skill Tips: 1. Start your placement preparations well ahead, no point regretting later.
2. Keep a concise resume. Do not take your resume to several pages.
3. Do not neglect aptitude preparation. Many people do this mistake and end up not clearing the first round for several companies.
4. Be thorough with your basics across all subjects. (Do not neglect any subject, even they you may like a few and dislike the others.)
5. Keep in mind, the interviewers are really friendly and try to make sure that you're not nervous during the interview. All they want to do is to test you. Be confident and give it your best shot.
Skills:
College Name: NIT Surathkal

Interview Questionnaire 

10 Questions

  • Q1. What do you do when your schedule is interrupted? How you handle it?
  • Q2. PreOrder traversal without recursion?
  • Ans. 

    PreOrder traversal without recursion is done using a stack to simulate the function call stack.

    • Create an empty stack and push the root node onto it.

    • While the stack is not empty, pop a node from the stack and process it.

    • Push the right child of the popped node onto the stack if it exists.

    • Push the left child of the popped node onto the stack if it exists.

  • Answered by AI
  • Q3. Build a bst out of the unsorted array by looping over the array and inserting each element to the tree?
  • Ans. 

    Yes

    • Create an empty binary search tree (BST)

    • Loop over the unsorted array

    • For each element, insert it into the BST using the appropriate insertion logic

    • Repeat until all elements are inserted

    • The resulting BST will be built from the unsorted array

  • Answered by AI
  • Q4. Find 2 elements in array whose sum is equal to given number?
  • Ans. 

    The question asks to find two elements in an array whose sum is equal to a given number.

    • Iterate through the array and for each element, check if the difference between the given number and the current element exists in the array.

    • Use a hash set to store the elements as you iterate through the array for efficient lookup.

    • Return the pair of elements if found, otherwise return a message indicating no such pair exists.

  • Answered by AI
  • Q5. How many types of trigger?
  • Ans. 

    There are two types of triggers: DML triggers and DDL triggers.

    • DML triggers are fired in response to DML (Data Manipulation Language) statements like INSERT, UPDATE, DELETE.

    • DDL triggers are fired in response to DDL (Data Definition Language) statements like CREATE, ALTER, DROP.

    • Examples: A DML trigger can be used to log changes made to a table, while a DDL trigger can be used to enforce certain rules when a table is alt...

  • Answered by AI
  • Q6. Can trigger be used with select statement?
  • Ans. 

    Yes, triggers can be used with select statements in SQL.

    • Triggers are database objects that are automatically executed in response to certain events, such as insert, update, or delete operations.

    • While triggers are commonly used with insert, update, and delete statements, they can also be used with select statements.

    • Using triggers with select statements allows you to perform additional actions or validations before or af...

  • Answered by AI
  • Q7. Indexing in mysql? How many types of indexing in mysql?
  • Ans. 

    Indexing in MySQL improves query performance. There are several types of indexing in MySQL.

    • Indexes are used to quickly locate data without scanning the entire table.

    • Types of indexing in MySQL include B-tree, hash, full-text, and spatial indexes.

    • B-tree indexes are the most common and suitable for most use cases.

    • Hash indexes are used for exact match lookups.

    • Full-text indexes are used for searching text-based data efficie...

  • Answered by AI
  • Q8. Engines in mysql?
  • Ans. 

    Engines in MySQL are the underlying software components that handle storage, indexing, and querying of data.

    • MySQL supports multiple storage engines, each with its own strengths and features.

    • Some commonly used engines in MySQL are InnoDB, MyISAM, and Memory.

    • InnoDB is the default engine in MySQL and provides support for transactions and foreign keys.

    • MyISAM is known for its simplicity and speed but lacks transaction suppo...

  • Answered by AI
  • Q9. Singlton pattern?
  • Q10. Can a constructor be private?
  • Ans. 

    Yes, a constructor can be private.

    • A private constructor can only be accessed within the class itself.

    • It is often used in singleton design pattern to restrict object creation.

    • Private constructors are also useful for utility classes that only contain static methods.

  • Answered by AI

Interview Preparation Tips

Skills: Algorithm, Data structure
College Name: na

Skills evaluated in this interview

Analyst Interview Questions & Answers

Oyo Rooms user image Sushant Dogra

posted on 2 Nov 2015

I applied via Campus Placement

Interview Preparation Tips

Round: Puzzle Interview
Experience: basic Guesstimation questtions,
for eg. estimate the no of sleeping all over the world right now.

Tips: Walk the interviewer through your thinking process.
donot make vague guesses.

Round: HR Interview
Experience: 1 Tell us 5 reasons why we should hire you.
2 being an electrical engineering student, why have you applied for a analytic s/operations job profile.

Skills: Ability To Cope Up With Stress, Guesstimation Cases
Duration: 2
College Name: IIT Madras

EatClub Interview FAQs

How many rounds are there in EatClub interview?
EatClub interview process usually has 2-3 rounds. The most common rounds in the EatClub interview process are Coding Test, Resume Shortlist and Technical.
How to prepare for EatClub 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 EatClub. The most common topics and skills that interviewers at EatClub expect are AWS, SQL, API, Accounting and Business Development.
What are the top questions asked in EatClub interview?

Some of the top questions asked at the EatClub interview -

  1. Estimate the number of delivery rider required I’d domino’s want to open a ...read more
  2. find first missing positive integer with O...read more
  3. asked me what is rest ...read more

Tell us how to improve this page.

Overall Interview Experience Rating

3.8/5

based on 5 interview experiences

Difficulty level

Moderate 100%

Duration

Less than 2 weeks 50%
2-4 weeks 50%
View more

Interview Questions from Similar Companies

Swiggy Interview Questions
3.8
 • 465 Interviews
Meesho Interview Questions
3.7
 • 364 Interviews
Udaan Interview Questions
3.9
 • 346 Interviews
Blinkit Interview Questions
3.7
 • 232 Interviews
Oyo Rooms Interview Questions
3.3
 • 227 Interviews
Myntra Interview Questions
3.9
 • 227 Interviews
Naukri Interview Questions
4.1
 • 200 Interviews
BlackBuck Interview Questions
3.7
 • 193 Interviews
FirstCry Interview Questions
3.6
 • 186 Interviews
Spinny Interview Questions
3.7
 • 182 Interviews
View all

EatClub Reviews and Ratings

based on 21 reviews

3.3/5

Rating in categories

3.4

Skill development

2.8

Work-life balance

3.0

Salary

3.1

Job security

2.8

Company culture

3.3

Promotions

2.8

Work satisfaction

Explore 21 Reviews and Ratings
Software Developer
5 salaries
unlock blur

₹9.8 L/yr - ₹20.5 L/yr

Software Development Engineer
5 salaries
unlock blur

₹12.5 L/yr - ₹22 L/yr

Delivery Boy
5 salaries
unlock blur

₹2.5 L/yr - ₹4.8 L/yr

Senior Operations Manager
5 salaries
unlock blur

₹4.8 L/yr - ₹7 L/yr

Store Manager
4 salaries
unlock blur

₹3 L/yr - ₹4.5 L/yr

Explore more salaries
Compare EatClub with

Udaan

3.9
Compare

Swiggy

3.8
Compare

Oyo Rooms

3.2
Compare

Blinkit

3.7
Compare
write
Share an Interview