Filter interviews by
I applied via LinkedIn and was interviewed in Nov 2022. There were 2 interview rounds.
My current CTC is confidential, but I am open to discussing my salary expectations for this role.
Politely decline to disclose current CTC
Express openness to discussing salary expectations for the new role
Provide a salary range based on research and industry standards
There was multiple questions
Top trending discussions
I applied via Company Website and was interviewed in Oct 2022. There were 3 interview rounds.
Marketing ideas and how to make money
Marketing strategy is a plan of action designed to promote and sell a product or service.
Identifying target audience
Developing a unique selling proposition
Creating a marketing mix
Setting marketing goals and objectives
Analyzing market trends and competition
Implementing and monitoring the strategy
Examples: social media marketing, email marketing, content marketing
To implement plans, break them down into smaller tasks, assign responsibilities, set deadlines, and track progress.
Break down the plan into smaller, achievable tasks
Assign responsibilities to team members based on their strengths
Set deadlines for each task and hold team members accountable
Track progress regularly and make adjustments as needed
Communicate clearly with team members to ensure everyone is on the same page
To sell more, identify customer needs, build relationships, offer solutions, and follow up.
Understand customer needs and tailor your approach
Build relationships and establish trust
Offer solutions that meet their needs
Follow up to ensure satisfaction and address any concerns
Provide excellent customer service to encourage repeat business
I applied via Job Fair and was interviewed before Mar 2022. There were 2 interview rounds.
The first Governor General of India was Warren Hastings.
Warren Hastings served as the Governor General of India from 1773 to 1785.
He was appointed by the East India Company to oversee the British administration in India.
During his tenure, Hastings implemented several administrative and judicial reforms.
He also played a significant role in expanding British territories in India.
Hastings faced impeachment proceedings in ...
India has a population of over 1.3 billion people, making it the second most populous country in the world.
India's population is estimated to be around 1.366 billion as of 2020.
The country has a diverse population with various ethnic, linguistic, and religious groups.
India's population growth rate has been gradually declining over the years.
The states of Uttar Pradesh and Maharashtra have the highest population in Indi...
I applied via Company Website
How to aproch the customers ,And to give good respect to move our product
To sell a pen, highlight its features, demonstrate its quality, create a need, and close the sale.
Highlight the pen's unique features and benefits
Demonstrate the pen's quality and functionality
Create a need by showing how the pen can improve the customer's life or work
Close the sale by asking for the customer's commitment
I applied via Company Website and was interviewed in May 2021. There was 1 interview round.
I was interviewed in Dec 2020.
Round duration - 25 Minutes
Round difficulty - Medium
Very friendly interviewer. Although waiting time was very high
You are given an integer array 'ARR' of size 'N' and an integer 'S'. Your task is to find and return a list of all pairs of elements where each sum of a pair equals 'S'.
Find pairs of elements in an array that sum up to a given value, sorted in a specific order.
Iterate through the array and for each element, check if the complement (S - current element) exists in a hash set.
If the complement exists, add the pair to the result list.
Sort the result list based on the criteria mentioned in the question.
Return the sorted list of pairs.
Tip 1 : be confident about your CV points
Tip 2 : practice consulting cases and how to answer situational questions
Tip 1 : be crisp about achievement
Tip 2 : add data points to support your achievements
I was interviewed before Sep 2020.
Round duration - 90 minutes
Round difficulty - Easy
This is a written round on paper for everyone. Three coding questions were given. Two out of three must be correct covering every single edge case to qualify for the next round. Only the most optimal solution was to be considered.
Given an array arr
of length N
consisting of integers, find the sum of the subarray (including empty subarray) with the maximum sum among all subarrays.
Find the sum of the subarray with the maximum sum among all subarrays in an array of integers.
Iterate through the array and keep track of the maximum sum subarray encountered so far.
Use Kadane's algorithm to efficiently find the maximum subarray sum.
Consider the sum of an empty subarray as 0.
Example: For input arr = [-2, 1, -3, 4, -1], the maximum subarray sum is 4.
You are given 'N' ropes, each of varying lengths. The task is to connect all ropes into one single rope. The cost of connecting two ropes is the sum of their lengths. Yo...
Connect ropes with minimum cost by merging two smallest ropes at a time.
Sort the array of rope lengths in ascending order.
Merge the two smallest ropes at a time and update the cost.
Repeat the process until all ropes are merged.
Return the total cost as the minimum cost to connect all ropes.
Given a binary tree, your task is to print the left view of the tree.
The input will be in level order form, with node values separated by a...
Print the left view of a binary tree given in level order form.
Traverse the tree level by level and print the first node encountered at each level
Use a queue to perform level order traversal
Keep track of the level while traversing the tree
Round duration - 50 minutes
Round difficulty - Easy
This was face to face interview round.
You are given a Binary Tree of integers and an integer 'X'. Your task is to find all the triplets in the tree whose sum is strictly greater than 'X'. Th...
Find all triplets in a binary tree whose sum is greater than a given integer X, with a grandparent-parent-child relationship.
Traverse the binary tree to find all possible triplets with the required relationship.
Keep track of the sum of each triplet and compare it with the given integer X.
Return the triplets that satisfy the condition in any order.
Ensure each triplet follows the format (grand-parent, parent, child).
A thief is planning to steal from several houses along a street. Each house has a certain amount of money stashed. However, the thief cannot loot two adjacent houses. Determi...
Determine the maximum amount of money a thief can steal from houses without looting two consecutive houses.
Use dynamic programming to keep track of the maximum amount of money that can be stolen up to each house.
At each house, the thief can either choose to steal from the current house or skip it and steal from the previous house.
The maximum amount of money that can be stolen at the current house is the maximum of the ...
Round duration - 60 minutes
Round difficulty - Easy
This was face to face interview round.
Tip 1 : Participate in live contests on websites like Codechef, Codeforces, etc as much as possible.
Tip 2 : Practice previous interview questions from LeetCode, GeeksForGeeks.
Tip 3 : Revise Computer Science subjects like DBMS, OOPS thoroughly.
Only write those things in the resume which you are confident of and keep practicing.
Final outcome of the interviewRejectedI was interviewed before Sep 2020.
Round duration - 90 Minutes
Round difficulty - Medium
This is a written round on paper for everyone. Three coding questions were given. Two out of three must be correct covering every single edge case to qualify for the next round. Only the most optimal solution was to be considered.
Given an array ARR
consisting of N
integers, your goal is to determine the maximum possible sum of a non-empty contiguous subarray within this array.
Find the maximum sum of a contiguous subarray in an array of integers.
Use Kadane's algorithm to find the maximum subarray sum in linear time.
Initialize two variables: maxSum and currentSum.
Iterate through the array and update currentSum by adding the current element or starting a new subarray.
Update maxSum if currentSum becomes greater than maxSum.
Return maxSum as the maximum subarray sum.
Round duration - 50 Minutes
Round difficulty - Easy
This was face to face interview round.
You are given a Binary Tree of integers and an integer 'X'. Your task is to find all the triplets in the tree whose sum is strictly greater than 'X'. Th...
Find all triplets in a binary tree whose sum is greater than a given integer X, with a grandparent-parent-child relationship.
Traverse the binary tree to find all possible triplets.
Check if the sum of each triplet is greater than X.
Ensure the relationship of grandparent-parent-child in each triplet.
Return the valid triplets in any order.
Handle constraints and edge cases appropriately.
Round duration - 60 Minutes
Round difficulty - Easy
FACE TO FACE ROUND INTERVIEW
Mutex is used for exclusive access to a resource by only one thread at a time, while Semaphores can allow multiple threads to access a resource simultaneously.
Mutex is binary and allows only one thread to access a resource at a time, while Semaphores can have a count greater than one.
Mutex is used for protecting critical sections of code, while Semaphores can be used for controlling access to a pool of resources.
Exampl...
Tip 1 : Participate in previous interview questions from leetcode, geeksforgeeks
Tip 2 : Revise computer science subjects like dbms and oops thoroughly
Tip 3 : Participate in live contests on CodeChef, Codeforces
Tip 1 : Only write the things on which you are the most confident about
Final outcome of the interviewRejectedbased on 1 interview
Interview experience
Delivery Boy
871
salaries
| ₹0 L/yr - ₹0 L/yr |
Fleet Manager
583
salaries
| ₹0 L/yr - ₹0 L/yr |
Sales Manager
523
salaries
| ₹0 L/yr - ₹0 L/yr |
Assistant Manager
498
salaries
| ₹0 L/yr - ₹0 L/yr |
Assistant Store Manager
450
salaries
| ₹0 L/yr - ₹0 L/yr |
Zomato
Dunzo
FoodPanda
Rapido