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

Filter interviews by

Zomato Logistics Executive Interview Questions and Answers

Updated 25 May 2021

Zomato Logistics Executive Interview Experiences

2 interviews found

Interview Questionnaire 

1 Question

  • Q1. How can you hire and how many people, can you complete targets.

Interview Questionnaire 

1 Question

  • Q1. Salary work timing and designation

Logistics Executive Interview Questions Asked at Other Companies

Q1. Did you work on busy software and advance excel before?. How much ... read more
Q2. If you apply wrong gst 12 % instead of 28% but client says making ... read more
Q3. How do you maintain the inventory?How do you do the stock count? ... read more
Q4. How many do you make invoice bill per day? If there is requiremen ... read more
asked in Redington
Q5. Are you aware with latest CRM as well as the technical knowledge ... read more

Interview questions from similar companies

Interview Questionnaire 

3 Questions

  • Q1. What you do your previous roll?
  • Q2. Majorly my roll is as Assistant Team Leader I'm always help my team and most of I'm spread the time with my team and solving there query.
  • Q3. Why you leave the job?
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected
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 - One-on-one 

(1 Question)

  • Q1. What are the handling support in your team
Round 3 - HR 

(1 Question)

  • Q1. My experience implement questions as critical handling support and good idea friendly Handle my team

I applied via Naukri.com and was interviewed in Mar 2020. There were 4 interview rounds.

Interview Questionnaire 

5 Questions

  • Q1. 1. Losses in Logistics Management
  • Ans. 

    Losses in logistics management can occur due to various reasons.

    • Inefficient inventory management

    • Poor communication between stakeholders

    • Inaccurate demand forecasting

    • Transportation delays or damages

    • Theft or pilferage

    • Inadequate packaging or handling

    • Lack of contingency planning

    • Inadequate training of personnel

    • Inefficient use of technology

    • Inadequate quality control measures

  • Answered by AI
  • Q2. Warehouse Management
  • Q3. How capacity planning is done?
  • Ans. 

    Capacity planning involves forecasting demand and allocating resources to meet that demand.

    • Forecasting demand based on historical data and market trends

    • Allocating resources such as labor, equipment, and inventory

    • Using tools such as ERP systems and simulation models

    • Adjusting plans based on changes in demand or resource availability

    • Collaborating with suppliers and customers to optimize capacity

    • Examples include production...

  • Answered by AI
  • Q4. How relevant is your previous experience with the current profile?
  • Q5. Define 5S and 8 pillars of TPM
  • Ans. 

    5S is a workplace organization method and TPM has 8 pillars to improve equipment effectiveness.

    • 5S stands for Sort, Set in Order, Shine, Standardize, and Sustain.

    • It aims to improve efficiency, safety, and productivity by organizing the workplace.

    • TPM's 8 pillars are focused on improving equipment effectiveness and reducing downtime.

    • The pillars include Autonomous Maintenance, Planned Maintenance, Quality Maintenance, Trai...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Keep your calm. Answer to-the-point, 5 round interviews were there... having patience is the key.

Skills evaluated in this interview

I applied via Naukri.com and was interviewed in Feb 2022. There were 2 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 - Aptitude Test 

Grammer test

Interview Preparation Tips

Interview preparation tips for other job seekers - Are you finding it difficult to clear interviews even though you have a background in technical knowledge? Does it seem like you aren’t understanding how companies are seeking new employees? During an interview, demonstrating your best qualities, and making a positive impression increases your chances of landing a job. The hiring team can be impressed by the interviewer if you prepare beforehand and follow certain steps afterward. Here’s what you need to know to get ready for your interview.

I applied via Company Website and was interviewed in Jan 2022. 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 - Aptitude Test 

Working

Round 3 - Group Discussion 

Working experience

Interview Preparation Tips

Interview preparation tips for other job seekers - Work ability is good way of logistics

I appeared for an interview in Aug 2017.

Interview Questionnaire 

7 Questions

  • Q1. Implement Merge Sort.
  • Ans. 

    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

  • Answered by AI
  • Q2. Given a BST containing distinct integers, and a number ‘X’, find all pairs of integers in the BST whose sum is equal to ‘X’.
  • Ans. 

    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.

  • Answered by AI
  • Q3. Given a set of time intervals in any order, merge all overlapping intervals into one and output the result which should have only mutually exclusive intervals.
  • Ans. 

    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)]

  • Answered by AI
  • Q4. What are the different types of hashing? Suggest an alternative and a better way for Linear Chaining.
  • Ans. 

    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

  • Answered by AI
  • Q5. Implement AVL Tree.
  • Ans. 

    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 ...

  • Answered by AI
  • Q6. Minimum number of squares whose sum equals to given number n.
  • Ans. 

    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.

  • Answered by AI
  • Q7. Insertion sort for a singly linked list.
  • Ans. 

    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)

  • Answered by AI

Interview Preparation Tips

Round: Test
Experience: There were 2 coding questions (no penalty for wrong submission) and 20 Multiple Choice Questions(with negative marking). We were given 90 minutes to solve them. MCQs were based on Data Structures, OS, CN, C outputs, OOP etc.
Tips: Experience in Competitive Programming might help in solving coding questions. No constraints were mentioned and detailed Instructions related to problem were stated vaguely. So code carefully.
Duration: 1 hour 30 minutes
Total Questions: 22

Round: Technical Interview
Experience: The interviewer asked me to introduce myself and a brief introduction of the projects that I have done. She first asked me questions related to my project. After that she moved on to the data structures part.
Tips: Take your time to approach the problems and if the question is not clear ask the interviewer to explain it again.

Round: Technical Interview
Experience: The interviewer asked me about how my previous round went. After that, he asked me to introduce myself and a brief introduction of the projects that I have done. He first asked me a few questions related to my project. Then he moved on to the data structures part. In this round the interviewer gave me strict time limit for coding the solution on paper for each problem and as soon as I was done coding he gave me 2-3 minutes every time to find errors and debug my code.
Tips: Do not panic even if the interviewer sets time limit while solving problems. If the question is not clear ask the interviewer to explain it again.

College Name: The LNM Institute Of Information Technology, Jaipur

Skills evaluated in this interview

I applied via Naukri.com

Interview Questionnaire 

2 Questions

  • Q1. Why Amazon?
  • Q2. What do you expect from Amazon?

Interview Preparation Tips

Interview preparation tips for other job seekers - Be open to anything, and keep your expectations low as your expectations might kill you. Just relax and take everything in a healthy way

Interview Questionnaire 

3 Questions

  • Q1. General HR questions, some based on the CV
  • Q2. A marketing specific question
  • Q3. Weight of an aircraft
  • Ans. 

    The weight of an aircraft is crucial for its performance and safety.

    • The weight of an aircraft includes the weight of the aircraft itself, fuel, passengers, cargo, and any other equipment on board.

    • The weight of an aircraft is measured in pounds or kilograms.

    • The weight of an aircraft affects its takeoff and landing performance, as well as its fuel efficiency and range.

    • Aircraft manufacturers provide maximum takeoff and la...

  • Answered by AI

Interview Preparation Tips

Round: Test
Experience: The test basically tests your ability to solve questions as quickly as possible as it's a 60 minute test for 60 questions. The level of difficulty is pretty decent, so one just needs to be focused right from the beginning. English can trouble a bit, so some practice in English sections is also advisable.
Tips: Prepare from Arun Sharma Quantitative Aptitude and Logical Reasoning for CAT. It's a wholesome book and has enough questions to practice and build concepts. Join a test series so that you get a timed analysis of your performance, the ability to skip tough questions and to score as many marks as possible.

Round: Group Discussion
Experience: It went pretty well. We had a great discussion. The approach was to list out all the problems one by one and think of probable solutions for each of them. During this, general group dynamics should be taken in consideration. Respect the views and thoughts of other people. Add value to the discussion by thinking critically and bringing new content every now and then. Always be specific and speak to the point.
Tips: Read. Read and Read.
Follow google news, read relevant articles in newspapers, magazines, social media sites or any other place.
Follow Quora, It'a an amazing source to boost your knowledge around any topic.

Round: HR Interview
Experience: Be spontaneous, little humorous and lastly very confident. Communication skills improve with time, so start as early as possible. Take part in discussions. Speak up !
Tips: Have a sound knowledge about the industry and the company. They just check your approach. So be very clear and critical on the approach. Have good reasons to back what ever you present. Rest will be fine.

Round: Guesstimate Interview
Experience: A very commonly asked guesstimate problem. Ask as many questions as possible to clear out the situation for yourself and get enough hints to solve the problem. Break it down into smaller sections and solve each section individually.
Tips: Follow "case in point", Analytics Vidya and similar blogs and websites to practice more and more guesstimates.

General Tips: There are so many opportunities. You just need one. Be focused on that ONE.
Skill Tips: Take part in discussions among your friends. Read books and quora to get more content. Practice as many questions as possible for aptitude. Discuss problems and have critical analysis sessions to understand things with a company's perspective.
Skills: Communication , Aptitude, Business Acumen
College Name: IIT GUWHATI
Motivation: To learn the operations and Logistics of the e-commerce industry.
Funny Moments: There will be many while you'll be preparing with your friends. :D
All the best.

Tell us how to improve this page.

Interview Questions from Similar Companies

Amazon Interview Questions
4.1
 • 5k Interviews
Flipkart Interview Questions
3.9
 • 1.3k Interviews
Swiggy Interview Questions
3.8
 • 431 Interviews
PolicyBazaar Interview Questions
3.6
 • 366 Interviews
Udaan Interview Questions
4.0
 • 334 Interviews
JustDial Interview Questions
3.5
 • 330 Interviews
Meesho Interview Questions
3.7
 • 329 Interviews
Info Edge Interview Questions
3.9
 • 318 Interviews
Naukri Interview Questions
4.0
 • 185 Interviews
View all
Zomato Logistics Executive Salary
based on 75 salaries
₹1.6 L/yr - ₹4.2 L/yr
17% less than the average Logistics Executive Salary in India
View more details

Zomato Logistics Executive Reviews and Ratings

based on 27 reviews

4.0/5

Rating in categories

3.6

Skill development

3.5

Work-life balance

4.1

Salary

3.0

Job security

3.5

Company culture

3.3

Promotions

3.1

Work satisfaction

Explore 27 Reviews and Ratings
Key Account Manager
944 salaries
unlock blur

₹4.5 L/yr - ₹16 L/yr

Delivery Boy
898 salaries
unlock blur

₹0.4 L/yr - ₹5.3 L/yr

Business Analyst
568 salaries
unlock blur

₹5 L/yr - ₹20 L/yr

Senior Associate
300 salaries
unlock blur

₹3 L/yr - ₹10 L/yr

Accounts Manager
296 salaries
unlock blur

₹4 L/yr - ₹13.2 L/yr

Explore more salaries
Compare Zomato with

Swiggy

3.8
Compare

Amazon

4.1
Compare

Dunzo

3.4
Compare

Flipkart

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