Flipkart
500+ Interview Questions and Answers
Aahad and Harshit always have fun by solving problems. Harshit took a sorted array consisting of distinct integers and rotated it clockwise by an unknown amount. For example, he to...read more
You are given an array/list ‘BINARYNUMS’ that consists of ‘N’ distinct strings which represent all integers from 0 to N in binary representation except one integer. This integer between 0 to ‘N’ w...read more
Q3. Strategy assignment: Assume that Flipkart owned E-kart Logistics was thinking of entering the 'courier' business and how you as a product manager would go about figuring this opportunity?
To assess the opportunity of entering the courier business, I would conduct market research, analyze competition, evaluate logistics capabilities, and develop a business plan.
Conduct market research to identify demand and potential customers
Analyze competition to understand market share and pricing strategies
Evaluate E-kart Logistics' logistics capabilities and infrastructure
Develop a business plan outlining the strategy, financial projections, and operational requirements
Con...read more
Given a string 'S' of length 'L', return the length of the longest substring without repeating characters.
Example:
Suppose given input is "abacb", then the length ...read more
You are given two strings S and X containing random characters. Your task is to find the smallest substring in S which contains all the characters present in X.
Example:
Let S = “abdd” and X = “b...read more
Given an unsorted array ‘arr’ of distinct integers and an integer ‘k’, your task is to find the ‘k-th’ smallest element in the array.
Example:
n = 5, k = 2 and arr[] = {...read more
You have been given an array/list ‘ARR’ of integers consisting of ‘N’ integers. You are also given a size ‘M’. You need to display the median of all the sub...read more
Given a singly linked list of integers. Your task is to return the head of the reversed linked list.
For example:
The given linked list is 1 -> 2 -> 3 -> 4-> NULL. Then the reverse linked lis...read more
You are given an array of n integers (a1, a2,....,an), you need to find if the array contains a pythagorean triplet or not.
An array is said to have a pythagorean triplet if there exists thr...read more
Q10. if you have to make an E way Bill for a shipment, how will you make it and how would you recognize it?
To make an E way Bill for a shipment, you need to register on the E way Bill portal and provide necessary details.
Register on the E way Bill portal
Provide shipment details such as invoice number, date, quantity, etc.
Generate the E way Bill with a unique E way Bill number
Recognize the E way Bill by checking the E way Bill number and verifying the details
You are given the root of a complete binary tree, you need to calculate the number of nodes in the given complete binary tree.
A complete binary tree is a tree in which all the leve...read more
Q12. Given an array, how do you get the count of pairs that sum to even
Count the number of pairs in an array that sum to an even number.
Iterate through the array and check each pair of elements.
If the sum of the pair is divisible by 2, increment the count.
Return the count of pairs that sum to an even number.
Q13. If you have 100 unbiased coins and one of them is defective. You have a weighing balance to check the weight of the coins. What is the minimum number of times you need to weigh the coins to identify the defecti...
read moreThe minimum number of times you need to weigh the coins is 4.
Divide the 100 coins into 3 groups of 33, 33, and 34 coins.
Weigh the first two groups against each other.
If they balance, the defective coin is in the third group.
If they don't balance, the defective coin is in the lighter group.
Divide the lighter group into 11 coins and weigh any 2 groups of 3 coins against each other.
If they balance, the defective coin is one of the remaining 5 coins.
If they don't balance, the def...read more
Your house is located at the origin of a 2-D plane. You have 'N' neighbours who live at 'N' different points on the plane. You want to visit exactly 'K' different neighbours who live c...read more
Given a binary tree with N number of nodes, check if that input tree is BST (Binary Search Tree) or not. If yes, return true, return false otherwise.
A binary search tree (BST) is a binary tree data...read more
You are given a list/array of strings which denotes the contacts that exist in your phone directory. The search query on a string ‘str’ which is a query string displays all the contac...read more
You are given an arbitrary binary tree consisting of N nodes numbered from 1 to N, an integer 'K', and a node 'TARGET_NODE_VAL' from the tree. You need to find the Kth ances...read more
You are given a Singly Linked List of integers. You need to reverse the Linked List by changing the links between nodes.
Input Format :
The first line of input contains a single integer T, re...read more
Given a binary search tree and an integer ‘K’. Your task is to find the ‘K-th’ smallest element in the given BST( binary search tree).
BST ( binary search tree) -
If all the sma...read more
You are given an n-ary tree consisting of ‘N’ nodes. Your task is to return the maximum sum of the path from the root to the leaf node.
For example:
For the given tree:
The path 1 -> 3 -> 7 pr...read more
Consider a directed graph of ‘N’ nodes where each node is labeled from ‘0’ to ‘N - 1’. Each edge of the graph is either ‘red’ or ‘blue’ colored. The graph may contain self-edges o...read more
Ninja is studying sorting algorithms. He has studied all comparison-based sorting algorithms and now decided to learn sorting algorithms that do not require comparisons.
He was learning counting so...read more
You are given an array/list ARR consisting of N integers. Your task is to find the length of the longest decreasing subsequence.
A subsequence is a sequence of numbers obtained by ...read more
Q24. What is the electric current? How is works ?
Electric current is the flow of electric charge through a conductor.
Electric current is measured in amperes (A).
It is caused by the movement of electrons.
The direction of current flow is from positive to negative.
Current can be either direct current (DC) or alternating current (AC).
Examples of conductors include copper wires and water with dissolved ions.
You are given a string 'S'. Your task is to partition 'S' such that every substring of the partition is a palindrome. You need to return all possible palindrome partitioning of 'S'.
Note:...read more
Q26. What is skills matrix of Return center Department?
The skills matrix of Return center Department is a tool that outlines the required skills and competencies for each job position.
The skills matrix helps identify training needs and areas for improvement
It ensures that employees have the necessary skills to perform their job duties effectively
Examples of skills in the matrix may include data entry, inventory management, and customer service
The matrix may also include soft skills such as communication and teamwork
Regular update...read more
You are given a 2-dimensional array/list having N rows and M columns, which is filled with ones(1) and zeroes(0). 1 signifies land, and 0 signifies water.
A cell is said to be connected to...read more
Given the head node of the singly linked list, return a pointer pointing to the middle of the linked list.
If there are an odd number of elements, return the middle element if there are eve...read more
You have been given two singly Linked Lists, where each of them represents a positive number without any leading zeros.
Your task is to add these two numbers and print the summatio...read more
You are given a binary tree of 'N' nodes.
Your task is to find the path from the leaf node to the root node which has the maximum path sum among all the root to leaf paths....read more
You are given an array Arr consisting of n integers, you need to find all the distinct triplets present in the array which adds up to zero.
An array is said to have a triplet {arr...read more
You have been given an array/list ARR consisting of ‘N’ elements. Each element in the array is either 0, 1 or 2.
Now, your task is to sort this array/list in increasing order. For ...read more
Aahad and Harshit always have fun by solving problems. Harshit took a sorted array and rotated it clockwise by an unknown amount. For example, he took a sorted array = [1, 2, 3, 4,...read more
You are given a string (STR) of length N.
Your task is to find the longest palindromic substring. If there is more than one palindromic substring with the maximum length, return the...read more
Given an array ‘ARR’ and an integer ‘K’, your task is to find all the count of all sub-arrays whose sum is divisible by the given integer ‘K’.
Note:
If there exists...read more
You have a robot currently standing at the origin (0, 0) of a two-dimensional grid and facing north direction. You are given a sequence of moves for the robot in the form of a string of size 'N'. Y...read more
You are given a directed graph having ‘N’ nodes. A matrix ‘EDGES’ of size M x 2 is given which represents the ‘M’ edges such that there is an edge directed from node EDGES[i][0] ...read more
Q38. What to do when manpower is short due to any occasion or any weather conditions.
In case of short manpower due to any occasion or weather conditions, there are a few steps that can be taken.
Prioritize tasks and focus on essential operations
Consider outsourcing or hiring temporary staff
Cross-train existing employees to fill in gaps
Adjust work schedules or shift patterns
Utilize technology and automation to reduce workload
Communicate with clients or customers about potential delays or changes
Ensure employee safety and well-being in adverse weather conditions
Given a binary tree, we need to install cameras on the nodes of the tree. Each camera at a node monitors its parent, itself, and its immediate children. Calculate the minimum number of camera...read more
Given a string ’S’ consisting of lower case English letters, you are supposed to return the longest palindromic substring of ‘S’.
Note that in case of more than one longest palindro...read more
Q41. How will you design a Product for an apartment complex where the apartment owners need to use certain club facilities like Gym, Garden, Book club etc?
Designing a product for apartment owners to access club facilities
Conduct a survey to understand the needs and preferences of apartment owners
Create a mobile app or web portal for easy booking and access to facilities
Implement a membership system to ensure fair usage of facilities
Offer incentives for frequent usage or referrals
Partner with local businesses to offer discounts or promotions to members
You are given a binary search tree of integers with 'N' nodes. Your task is to return the K-th largest element of this BST.
If there is no K-th largest element in the BST, return -1.
A bi...read more
Q43. How to handle Floor operation with huge absentism?
To handle floor operations with huge absenteeism, it is important to have a contingency plan in place.
Implement a robust attendance tracking system
Cross-train employees to handle multiple roles
Utilize temporary staff or agency workers
Prioritize tasks and redistribute workload
Communicate effectively with the team
Offer incentives for good attendance
Analyze absenteeism patterns and address underlying issues
Q44. What do you understand by the name customer service
Customer service refers to the support and assistance provided to customers before, during, and after their purchase or interaction with a company.
Customer service involves addressing customer inquiries, concerns, and complaints.
It includes providing information about products or services, helping customers make purchasing decisions, and resolving issues.
Customer service can be provided through various channels such as phone, email, chat, or in-person.
Examples of customer ser...read more
You are given a binary tree with 'N' nodes. Your task is to return the size of the largest subtree of the binary tree which is also a BST.
A binary search tree (BST) is a binary tree data str...read more
Design and implement a data structure for Least Recently Used (LRU) cache to support the following operations:
1. get(key) - Return the value of the key if the key exists in the cache, o...read more
You are given 'N' rectangular buildings in a 2-dimensional city. Your task is to compute the skyline of these buildings, eliminating hidden lines return the skyline formed by these buildings ...read more
You are given an infinite supply of coins of each of denominations D = {D0, D1, D2, D3, ...... Dn-1}. You need to figure out the total number of ways W, in which you can make a change fo...read more
You are given a pattern in the form of a string and a collection of words. Your task is to determine if the pattern string and the collection of words have the same order.
Note :
The strings are...read more
You have been given a long type array/list 'ARR' of size 'N'. It represents an elevation map wherein 'ARR[i]' denotes the elevation of the 'ith' bar. Print the total amount of rainwater that ...read more
You have been given a permutation of ‘N’ integers. A sequence of ‘N’ integers is called a permutation if it contains all integers from 1 to ‘N’ exactly once. Your task is to rearrange the number...read more
Q52. 1) what is java's first name? 2) what is JSE? 3)what is meant by java full stack? Answers: 1) OAK. 2) Java standard edision. 3) Java full stack contains the front end and backend technologies,testing tools,vers...
read more1) OAK. 2) Java Standard Edition. 3) Java full stack includes front end, back end, testing tools, and version control.
Java's first name is OAK.
JSE stands for Java Standard Edition.
Java full stack refers to the combination of front end, back end, testing tools, and version control.
Front end technologies include HTML, CSS, and JavaScript.
Back end technologies include Java, Python, and Ruby.
Testing tools can include JUnit, Selenium, and TestNG.
Version control tools like Git and ...read more
Q53. Flipkart charges a shipping charge if the order amount is less than Rs. 500. How do you avoid it if you have an item which is less than 500 yet you do not want to pay for shipping?
Add more items to the cart to reach the minimum order amount of Rs. 500 and avoid shipping charges.
Check for other items that you may need and add them to the cart
Look for items that are on sale or have discounts to reach the minimum order amount
Consider buying in bulk to save on shipping charges
Check if there are any promo codes or coupons available to waive off shipping charges
You are given an arbitrary binary tree, a node of the tree, and an integer 'K'. You need to find all such nodes which have a distance K from the given node and return ...read more
You have been given a non-empty grid consisting of only 0s and 1s. You have to find the number of islands in the given grid.
An island is a group of 1s (representing land) connected horizontall...read more
You have been given a square chessboard of size ‘N x N’. The position coordinates of the Knight and the position coordinates of the target are also given.
Your task is t...read more
Design Covid-19 Vaccination Booking System
Include features like:
Onboarding states, districts, wards, vaccination centres, slots
1. Users registration
2. Search functionality for finding cen...read more
Q58. Modify this code to find the maximum subtree in tree which is a BST. Maximum subtree means subtree goes upto its leaves from any node. Modify the code again to find the maximum tree which is a BST. BST can lie ...
read moreModify code to find maximum BST subtree and maximum BST tree in a given tree.
Create a function to check if a given tree is a BST
Traverse the tree and check if each subtree is a BST
Keep track of the maximum BST subtree found so far
To find maximum BST tree, check if each node can be the root of a BST
Keep track of the maximum BST tree found so far
Given a binary tree. You need to check if it is a height-balanced binary tree.
Height of a tree is the maximum number of nodes in a path from the node to the leaf node.
An empty tr...read more
Ninja is given a binary search tree and an integer. Now he is given a particular key in the tree and returns its ceil value. Can you help Ninja solve the problem?
Note:
Ceil of an integer is the cl...read more
For a given array/list of integers of size N, print the Next Greater Element(NGE) for every element. The Next Greater Element for an element X is the first element on the right side of X in ...read more
Given a sequence of ‘N’ space-separated non-negative integers A[1],A[2],A[3],......A[i]…...A[n]. Where each number of the sequence represents the height of the line drawn at point 'i'. ...read more
You are given a list of strings, ‘DICTIONARY[]’ that represents the correct spelling of words and a query string ‘QUERY’ that may have incorrect spelling. You have to check whether the spelling of ...read more
Q64. Can you give me the total number of Tubelights in Bangalore?
It is impossible to give an accurate number without conducting a survey or having access to official data.
There is no centralized database or registry of tubelights in Bangalore.
The number of tubelights in Bangalore is constantly changing due to new installations and replacements.
The number of tubelights also varies depending on the type of building and its usage.
Without conducting a survey or having access to official data, it is impossible to give an accurate number.
In a Medical Laboratory, you have 240 Injections, one of which is for Anesthesia for a rat. If Anesthesia injection is injected in a rat, it will faint in exactly 24 hours. You have 5 rats available to d...read more
Q66. There is code like var i; { .. var j; .. } var k; .. var a; { .. var c; { var i; } .. var d; .. } For simplicity you may assume that there is only one variable declaration on 1 line. Now given a line number, yo...
read moreAlgorithm to determine valid variables on a given line of code.
Create a stack to keep track of variable declarations
Traverse the code line by line
When encountering a variable declaration, push it onto the stack
When encountering a closing brace, pop all variables declared within that scope
Return all variables still on the stack when reaching the given line number
You are given a positive integer 'N’. Your task is to find and return the minimum number of steps that 'N' has to take to get reduced to 1.
You can perform any one of the following 3 steps:
1) S...read more
I had to Implement an e-commerce platform application with following features
1. We would be able to onboard (add) users to the system
2. The application allows sellers to list products on the platfo...read more
Design a data structure that stores a mapping of a key to a given value and supports the following operations in constant time.
1. INSERT(key, value): Inserts an integer value to the data...read more
You are given three non-negative integers N, M, and K. Your task is to print the Kth digit from the right in ‘N’ raised to the power ‘M’ that is, in N ^ M.
Note:
1) It is guaranteed that the...read more
Sushant is learning about palindromes. One day his teacher gave him a string ‘STR’ consisting of only the lowercase letters and asked him to modify the string in such a way that the st...read more
Q72. Input : 4 jars and 50 balls of different colors (Red, Green, Yellow, Blue) where each jar can contain a maximum of 100 balls.Problem : When a user draws a red ball he loses his money while if he draws a ball of...
read moreArrange balls in 4 jars to maximize probability of user losing money when drawing a red ball.
Place all red balls in one jar and the rest in the other jars
Ensure that the jar with red balls has the highest probability of being chosen
Randomize the placement of the jars to add an element of chance
Mislabeled Jars :
There are 3 jars, namely, A, B, C. All of them are mislabeled. Following are the labels of each of the jars:
A: Candies
B: Sweets
C: Candies and Sweets (mixed in a random proportion)
You can...read more
Create a online food ordering system with various features:
Restaurants can only serve one specialized dish.
Restaurants can serve in multiple areas.
At a time, users can order from one resta...read more
Q75. What is ms office? What is vlookup?
MS Office is a suite of productivity software. VLOOKUP is a function in Excel used to search for data in a table.
MS Office includes programs like Word, Excel, PowerPoint, and Outlook.
VLOOKUP stands for 'vertical lookup' and is used to find specific data in a table.
It is commonly used in Excel for tasks like matching data from different sheets or tables.
The function requires four arguments: the value to look up, the table to search, the column to return data from, and whether ...read more
Q76. How would you measure the success of Google search results?
Success of Google search results can be measured through various metrics.
Click-through rate (CTR) of top results
Time spent on search results page
Number of searches per user session
Bounce rate of search results page
User satisfaction surveys
Number of repeat searches
Conversion rate of search results
Accuracy of search results
Number of search result pages viewed per session
Q77. How is online business better than offline?
Online business offers greater reach, convenience, cost-effectiveness, and scalability compared to offline business.
Greater reach: Online business allows you to reach a global audience, breaking geographical barriers.
Convenience: Customers can shop anytime, anywhere, without the need to visit a physical store.
Cost-effectiveness: Online businesses often have lower overhead costs, no need for physical retail space, and can leverage digital marketing strategies.
Scalability: Onli...read more
You are given a stream of 'N' integers. For every 'i-th' integer added to the running list of integers, print the resulting median.
Print only the integer part of the median.
Input Format :
The fi...read more
Q79. How do you make 720 with 6 zeroes using mathematical operators?
To make 720 with 6 zeroes, multiply 6! by 1000.
Calculate the factorial of 6 (6! = 6 x 5 x 4 x 3 x 2 x 1 = 720)
Multiply the result by 1000 (720 x 1000 = 720000)
Alternatively, add three zeroes to the end of 720 (720000 = 720000)
Q80. How to maintain delivery boys.,& critical situations in hubs
To maintain delivery boys, provide incentives, clear communication, and a supportive work environment. In critical situations, have contingency plans in place.
Offer incentives such as bonuses or flexible schedules to keep delivery boys motivated and engaged.
Maintain clear communication channels to ensure that delivery boys are aware of their responsibilities and any changes in operations.
Create a supportive work environment by providing training, resources, and opportunities ...read more
Q81. Given an array, how do you get the count of pairs that sum to odd
Count the number of pairs in an array that sum to an odd number.
Iterate through the array and check each pair of elements.
Use a nested loop to compare each element with every other element.
Keep a count of pairs that sum to an odd number.
Q82. How would you give recommendations to Sellers on Flipkart?
I would give recommendations to sellers on Flipkart by analyzing their sales data, identifying areas of improvement, and suggesting strategies to increase sales.
Analyze sales data to identify top-selling products and categories
Suggest pricing strategies to increase sales and profitability
Recommend marketing and advertising campaigns to reach new customers
Provide feedback on product listings and descriptions to improve visibility and sales
Offer guidance on inventory management...read more
Q83. Given n sequences, and starting and stopping point of every sequence with its score. For eg. no of sequences = 5 start stop score 0 4 4 3 10 11 6 8 8 7 15 10 11 15 4 All scores are positive. You have to find th...
read moreGiven n sequences with start, stop and score, find maximum subset of non-overlapping sequences with maximum total score.
Sort the sequences by their end points.
Use dynamic programming to find the maximum sum of non-overlapping sequences.
Keep track of the previous non-overlapping sequence with maximum sum.
Return the maximum sum and the corresponding non-overlapping sequences.
Q84. what are the major transportation issues in warehousing?
Major transportation issues in warehousing include congestion, inefficient routing, and lack of visibility.
Congestion: Warehouses often face congestion due to limited space and high volume of incoming and outgoing shipments.
Inefficient routing: Poor planning and lack of optimized routes can lead to delays and increased transportation costs.
Lack of visibility: Without proper tracking and monitoring systems, it becomes difficult to have real-time visibility of shipments, result...read more
Which is the fastest method to sort an almost sorted array: Insertion Sort , Quick Sort , Bubble Sort , Merge Sort , Shell Sort ?
Q86. A car manufacturer has observed a decline in profits by 40% year over year. What would be the possible reasons for this?
Possible reasons for a car manufacturer's decline in profits by 40% year over year
Decreased demand for cars due to economic downturn
Increased competition from other car manufacturers
Rising production costs and expenses
Decline in consumer confidence and spending
Changes in government regulations impacting the automotive industry
There are 3 mislabeled jars, with apple and oranges in the first and second jar respectively. The third jar contains a mixture of apples and oranges. You can pick as many fruits as required to precisely l...read more
Q88. What is customer service? Is the support you offer ur customer before and after buying ur product.
Customer service is the support provided to customers before and after purchasing a product or service.
Customer service involves assisting customers with their inquiries, concerns, and issues.
It includes providing information about products or services, helping customers make purchasing decisions, and resolving any problems they may encounter.
Customer service can be provided through various channels such as phone, email, chat, or in-person.
Examples of customer service include...read more
Q89. How would you determine the dip in GMV of Flipkart?
To determine dip in GMV of Flipkart, analyze sales data, customer feedback, and market trends.
Analyze sales data to identify any sudden drops or trends over time
Gather customer feedback to understand any issues or concerns affecting sales
Monitor market trends and competition to identify external factors impacting GMV
Consider any changes in pricing, promotions, or product offerings that may affect sales
Use data analysis tools and techniques to identify patterns and insights
Col...read more
Q90. Flipkart Big Billion day sale is ongoing and you are to be vigilant w.r.t scale issues. You see that the time to complete orders is increasing.
I would investigate the root cause of the increase in order completion time and take necessary actions to resolve the issue.
Check if there are any technical issues causing the delay
Analyze the traffic and order volume to ensure the infrastructure can handle the load
Collaborate with the engineering team to optimize the system performance
Communicate with the customer support team to manage customer expectations
Monitor the situation closely and take proactive measures to prevent...read more
Q91. What would you do to get sellers sign up quickly? Take certain baseline assumptions.
To get sellers sign up quickly, offer incentives, simplify the sign-up process, and provide clear benefits.
Offer sign-up bonuses or discounts to incentivize sellers
Simplify the sign-up process by reducing the number of steps and required information
Clearly communicate the benefits of signing up, such as increased visibility and sales potential
Provide excellent customer support to address any concerns or questions
Utilize social media and targeted advertising to reach potential...read more
Q92. Visualize a Uber database of drivers and riders(users) and write a SQL query to get the top 100 drivers by city.
SQL query to get top 100 Uber drivers by city
Join drivers and users tables on city
Aggregate driver ratings and count of rides
Order by rating and count of rides
Limit to top 100
Q93. Basic work flow of operation from IB(Inbound) to OB(Outbound)
The basic work flow of operations from inbound to outbound involves receiving, processing, and delivering goods or services.
Inbound operations involve receiving goods or services from suppliers or customers.
Goods or services are then processed, which may include sorting, inspecting, or assembling.
Outbound operations involve packaging, labeling, and delivering goods or services to customers.
Throughout the process, inventory management and quality control are essential.
Examples...read more
Q94. How do you optimize the listing of Restaurants on Swiggy?
Optimizing the listing of Restaurants on Swiggy involves using data-driven strategies to improve visibility, relevance, and user experience.
Analyze user behavior and preferences to understand their needs and preferences
Implement a ranking algorithm based on factors like ratings, reviews, popularity, and delivery time
Optimize search functionality to ensure accurate and relevant results
Collaborate with restaurants to improve their online presence and menu offerings
Leverage cust...read more
Q95. 1. How to increase inventory 2. Roster Management 3. Inventory Audit 4. How to manage stock discrepancy
Increasing inventory can be achieved through effective demand forecasting, optimizing storage space, and establishing strong supplier relationships.
Implement demand forecasting techniques to accurately predict future inventory needs
Optimize storage space by organizing inventory and utilizing vertical storage solutions
Establish strong relationships with suppliers to ensure timely and reliable delivery of inventory
Regularly review and update inventory levels based on sales tren...read more
What is the complexity of retrieving min element from a max heap?
Q97. if you are given a sorted array of size 7 but only 4 elements in it and a sorted array of 3 elements. How would to combine the elements into the first array in such a way that array is sorted
Combine 4 elements of a sorted array of size 7 and a sorted array of 3 elements to make a sorted array.
Insert the 3 elements of the smaller array into the larger array
Sort the larger array using any sorting algorithm
Q98. In 1 day how many veh can be loaded and unloaded with dock man power count of 14.
The dock can load and unload approximately X number of vehicles in a day with 14 dock workers.
The number of vehicles that can be loaded and unloaded in a day depends on various factors such as the size of the vehicles, the type of goods being transported, and the efficiency of the dock workers.
Assuming an average of 30 minutes per vehicle, 14 dock workers can load and unload approximately 56 vehicles in an 8-hour shift.
However, this number can vary depending on the specific c...read more
Q99. - what is supply chain? difference between logistics and transport?
Supply chain is the process of managing the flow of goods and services from the point of origin to the point of consumption.
Supply chain involves the coordination and integration of various activities such as procurement, production, transportation, warehousing, and distribution.
It includes the planning, execution, and control of the entire process to ensure the right products are delivered to the right place at the right time.
Logistics is a subset of supply chain management ...read more
Q100. - what will you do to double revenue of your organisation
To double revenue, I will focus on expanding our customer base and increasing sales through targeted marketing and strategic partnerships.
Identify target markets and create tailored marketing campaigns
Develop strategic partnerships with complementary businesses
Improve customer experience and satisfaction to increase retention and referrals
Explore new revenue streams and diversify product offerings
Analyze and optimize pricing strategies
Invest in employee training and developme...read more
More about working at Flipkart
Top HR Questions asked in null
Interview Process at null
Top Interview Questions from Similar Companies
Reviews
Interviews
Salaries
Users/Month