Upload Button Icon Add office photos

Filter interviews by

EatClub Interview Questions, Process, and Tips

Updated 9 Oct 2024

Top EatClub Interview Questions and Answers

EatClub Interview Experiences

Popular Designations

4 interviews found

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

Software Developer Interview Questions asked at other Companies

Q1. Maximum Subarray Sum Problem Statement Given an array of integers, determine the maximum possible sum of any contiguous subarray within the array. Example: Input: array = [34, -50, 42, 14, -5, 86] Output: 137 Explanation: The maximum sum is... read more
View answer (38)
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

Business Analyst Interview Questions asked at other Companies

Q1. You have 10 boxes of balls (each ball weighing exactly10 gm) with one box with defective balls (each one of the defective balls weigh 9 gm). You are given an electronic weighing machine and only one chance at it. How will you find out which... read more
View answer (9)
Interview experience
3
Average
Difficulty level
Moderate
Process Duration
-
Result
Not Selected

I applied via campus placement at The LNM Institute of information Technology, Jaipur 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
  • 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
  • Q5. Asked me what is rest api

Skills evaluated in this interview

Software Development Engineer Intern Interview Questions asked at other Companies

Q1. Say you're dealing with really long integers. They're too long to fit into a regular datatype, so linked lists are used to store them, with each node of the list containing one digit. Now the problem is, given two linked lists, i.e. two rea... read more
View answer (2)

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

SDE Interview Questions asked at other Companies

Q1. Longest Increasing Subsequence Problem Statement Given an array of integers with 'N' elements, determine the length of the longest subsequence where each element is greater than the previous element. This subsequence must be in strictly inc... read more
Add answer

EatClub interview questions for popular designations

 Business Analyst

 (1)

 SDE

 (1)

 Software Developer

 (1)

 Software Development Engineer Intern

 (1)

Interview questions from similar companies

I applied via Walk-in and was interviewed before Jan 2020. There was 1 interview round.

Round 1 - HR 

(1 Question)

  • Q1. Self introduction that's all

Interview Preparation Tips

Interview preparation tips for other job seekers - Be confident and essay writing

Interview Questionnaire 

3 Questions

  • Q1. Tell me something about ourselves
  • Q2. What you know about the company
  • Q3. Vocabulary test , spelling correction test

I applied via Recruitment Consultant and was interviewed in May 2021. There were 3 interview rounds.

Interview Questionnaire 

2 Questions

  • Q1. There are three divs, grandparent,parent, child. Center all three divs one into another in middle
  • Ans. 

    Use flexbox to center three nested divs

    • Set display:flex; on grandparent div

    • Set justify-content:center; and align-items:center; on grandparent div

    • Set width and height on parent and child divs

    • Add margin:auto; to parent and child divs

  • Answered by AI
  • Q2. Implement event bubbling on three divs, one into another i.e grandparent, parent,child
  • Ans. 

    Event bubbling can be implemented by attaching event listeners to the child, parent, and grandparent divs.

    • Add event listeners to the child, parent, and grandparent divs

    • Use the event.stopPropagation() method to stop the event from bubbling up to the parent and grandparent divs

    • Handle the event in each div's event listener function

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Learn javascript basics like hoisting , event bubbling, event delegation. And also CSS basics linke css positions.

Skills evaluated in this interview

Interview Questionnaire 

4 Questions

  • Q1. Basics. based on resume.
  • Q2. Diff between cookie and sesssion
  • Ans. 

    Cookies are stored on the client-side and sessions are stored on the server-side.

    • Cookies are small text files that are stored on the client-side and can be accessed by the server.

    • Sessions are server-side data storage that can be used to store user-specific data.

    • Cookies can be used to store user preferences, login information, and shopping cart data.

    • Sessions can be used to store user authentication data, user-specific d...

  • Answered by AI
  • Q3. About your projects
  • Q4. Error handling, debugging skills.

Skills evaluated in this interview

Interview Questionnaire 

3 Questions

  • Q1. When the interview itself should inform the employee it's a sales , and I have job in feb in March is corona lockdown ,before I understood the there is lockdown I cant able to understand and get back to wo...
  • Q2. One month to three to settle in a job how would you judge in my performance
  • Q3. Please understand the employees feeling and what they want

I applied via LinkedIn and was interviewed in Nov 2020. There were 3 interview rounds.

Interview Questionnaire 

2 Questions

  • Q1. Process related queries will be asked specially around how do you handle any particular situation they provide.
  • Q2. Question related to what you have mentioned in your resume.

Interview Preparation Tips

Interview preparation tips for other job seekers - Interviews now days are no longer about testing your technical skills albeit they test your patience, communication skills, problem solving attitude, attitude towards Life and how do you show them your ready to go instinct.

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. Organise a sports ev...read more

Tell us how to improve this page.

EatClub Interview Process

based on 5 interviews

Interview experience

3.8
  
Good
View more

Interview Questions from Similar Companies

Swiggy Interview Questions
3.8
 • 432 Interviews
Udaan Interview Questions
4.0
 • 335 Interviews
Meesho Interview Questions
3.7
 • 329 Interviews
Zomato Interview Questions
3.8
 • 320 Interviews
Myntra Interview Questions
4.0
 • 215 Interviews
Naukri Interview Questions
4.0
 • 184 Interviews
Box8 Interview Questions
3.5
 • 13 Interviews
Uber eats Interview Questions
4.3
 • 9 Interviews
FoodPanda Interview Questions
3.7
 • 8 Interviews
View all

EatClub Reviews and Ratings

based on 13 reviews

3.6/5

Rating in categories

3.9

Skill development

3.0

Work-life balance

3.0

Salary

2.9

Job security

3.0

Company culture

3.1

Promotions

3.0

Work satisfaction

Explore 13 Reviews and Ratings
Senior Operations Manager
6 salaries
unlock blur

₹5 L/yr - ₹7 L/yr

Software Development Engineer
5 salaries
unlock blur

₹12.5 L/yr - ₹22 L/yr

Business Analyst
4 salaries
unlock blur

₹10 L/yr - ₹20 L/yr

Chef
4 salaries
unlock blur

₹1.7 L/yr - ₹3.4 L/yr

Delivery Boy
4 salaries
unlock blur

₹1 L/yr - ₹3.5 L/yr

Explore more salaries
Compare EatClub with

Zomato

3.8
Compare

Swiggy

3.8
Compare

Uber eats

4.3
Compare

FoodPanda

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