Filter interviews by
I applied via Approached by Company and was interviewed in Jul 2024. There was 1 interview round.
I had to make a tough decision when prioritizing features for a tight deadline project.
Prioritized features based on impact and feasibility
Communicated with stakeholders to explain the decision-making process
Managed expectations and ensured alignment with project goals
I addressed the issue directly with the teammate and worked together to identify areas for improvement.
Had a one-on-one conversation with the teammate to discuss performance concerns
Provided constructive feedback and set clear expectations for improvement
Offered support and resources to help the teammate succeed
Monitored progress and provided ongoing feedback and guidance
Celebrated improvements and successes to boost m
Ask to share the assignment based on a problem statment
I applied via LinkedIn and was interviewed before Aug 2021. There was 1 interview round.
I had an uncooperative team member and successfully resolved the issue.
Identified the root cause of the team member's uncooperative behavior
Had a one-on-one conversation to understand their concerns and perspective
Offered support and resources to address any challenges they were facing
Established clear expectations and communicated the impact of their behavior on the team
Worked together to find common ground and develo...
I keep myself organized by using a combination of digital tools and time management techniques.
I use a digital calendar to schedule and prioritize tasks.
I create to-do lists and break down larger tasks into smaller, manageable steps.
I use project management software to track progress and deadlines.
I regularly review and update my task list to ensure nothing falls through the cracks.
I practice effective time management ...
I applied via Job Portal and was interviewed in Mar 2022. There were 3 interview rounds.
I applied via Campus Placement
I am a highly motivated and experienced Product Manager with a strong background in technology and a passion for creating innovative solutions.
I have 5+ years of experience in product management, leading cross-functional teams to successfully launch new products and features.
I have a deep understanding of user needs and market trends, which allows me to identify opportunities and drive product strategy.
I have a track r...
Product management combines my passion for technology and problem-solving with my ability to drive business growth.
I am drawn to the intersection of technology and business strategy
I enjoy identifying customer needs and translating them into innovative product solutions
I thrive in cross-functional collaboration and leading teams towards a common goal
Magicpin's focus on local commerce and its innovative approach to conn...
My favorite product is the iPhone. I love its sleek design, user-friendly interface, and seamless integration with other Apple devices.
Sleek design: The iPhone's slim and elegant design sets it apart from other smartphones.
User-friendly interface: The intuitive interface makes it easy for users to navigate and access features.
Seamless integration: The iPhone seamlessly integrates with other Apple devices, allowing for ...
My favorite product is the iPhone. I love its sleek design, user-friendly interface, and seamless integration with other Apple devices.
Sleek design: The iPhone's slim and elegant design sets it apart from other smartphones.
User-friendly interface: The intuitive interface makes it easy for users to navigate and access features.
Seamless integration: The iPhone seamlessly integrates with other Apple devices, allowing for ...
Magicpin is a social rewards and discovery platform that connects local merchants with consumers.
Users can discover local businesses and earn rewards for visiting and making purchases.
Merchants can use the platform to attract new customers and increase loyalty.
The app also features social sharing and recommendations from friends.
Magicpin operates in several cities across India, including Delhi, Mumbai, and Bangalore.
WhatsApp has more MAUs due to its simplicity, cross-platform availability, and end-to-end encryption. It differs from Facebook Messenger in its focus on privacy and lack of ads.
WhatsApp is available on both iOS and Android, as well as desktop, making it accessible to a wider audience.
The app's end-to-end encryption ensures user privacy, which is a major concern for many people.
WhatsApp's interface is simple and easy to...
My favorite app is Spotify.
Likes: Wide variety of music, personalized playlists, and easy-to-use interface.
Dislikes: Limited free version features and occasional glitches.
Improvements: Enhance the free version with more features and fix any bugs.
Competitive Advantage: Extensive music library, algorithm-based recommendations, and seamless cross-platform experience.
To increase DAUs of Google Maps, we can focus on improving user engagement and expanding the app's functionality.
Introduce gamification elements to encourage users to explore new places and leave reviews
Partner with local businesses to offer exclusive deals and promotions to Google Maps users
Add new features such as real-time traffic updates and public transportation schedules
Improve the accuracy and completeness of bu...
Retailers can benefit from Magicpin by increasing footfall, customer loyalty, and cost savings through targeted promotions.
Magicpin can help retailers increase footfall by promoting their business to nearby users
Retailers can improve customer loyalty by offering rewards and discounts through the platform
Targeted promotions can help retailers save costs by reducing wasteful advertising spend
Retailers can also gain insig...
I would improve Magicpin's platform by enhancing user engagement and personalization.
Introduce a loyalty program to incentivize users to engage more with the platform
Implement machine learning algorithms to personalize recommendations for each user
Improve the user interface to make it more intuitive and user-friendly
Add more social features to encourage users to share their experiences with friends
Expand the platform t...
I did not mention my GPA because it is not a strong indicator of my abilities as a Product Manager.
GPA does not accurately reflect real-world skills and experiences
Product management requires a diverse skill set beyond academic performance
I have relevant work experience and achievements that demonstrate my capabilities
Focus on my accomplishments and contributions rather than a single number
I chose ISB over IIMs because of its focus on experiential learning and global exposure.
ISB offers a unique one-year program that allows me to quickly gain the necessary skills and knowledge to excel as a Product Manager.
ISB's curriculum emphasizes experiential learning, which means I will have the opportunity to work on real-world projects and apply my learnings in a practical setting.
ISB has a diverse and internation...
Product management offers the opportunity to create and shape innovative products, while consulting focuses on providing advice and recommendations.
Product management allows me to be involved in the entire product lifecycle, from ideation to launch and beyond.
I enjoy the challenge of understanding customer needs and translating them into successful products.
Product management offers the chance to work cross-functionall...
I applied via LinkedIn and was interviewed before Oct 2022. There were 3 interview rounds.
Panel interview with hiring manager and associate managers.
Function to return mutual friends given two ids and getFriends(id) function
Call getFriends(id) for both ids to get their respective friend lists
Iterate through both lists and compare to find mutual friends
Return the list of mutual friends
Function to return list of friends of friends in decreasing order of mutual friends
Use a set to store all friends of friends
Iterate through the list of friends of the given id
For each friend, iterate through their list of friends and count mutual friends
Sort the set of friends of friends by decreasing number of mutual friends
Given time slots, find a specific time with maximum overlap. Prove solution.
Create a list of all start and end times
Sort the list in ascending order
Iterate through the list and keep track of the number of overlaps at each time
Return the time with the maximum number of overlaps
Prove solution by testing with different input sizes and edge cases
Find the longest sub-array with increasing order of integers.
Iterate through the array and keep track of the current sub-array's start and end indices.
Update the start index whenever the current element is smaller than the previous element.
Update the end index whenever the current element is greater than or equal to the next element.
Calculate the length of the sub-array and compare it with the longest sub-array found s
Find the length of longest increasing subsequence and print the sequence from an array of integers.
Use dynamic programming to solve the problem
Create an array to store the length of longest increasing subsequence ending at each index
Traverse the array and update the length of longest increasing subsequence for each index
Print the sequence by backtracking from the index with the maximum length
Time complexity: O(n^2)
Exam...
Code to find a given integer in a rotated sorted array.
Use binary search to find the pivot point where the array is rotated.
Divide the array into two subarrays and perform binary search on the appropriate subarray.
Handle edge cases such as the target integer not being present in the array.
Use a min-heap to keep track of the largest K numbers seen so far.
Create a min-heap of size K.
For each incoming integer, add it to the heap if it's larger than the smallest element in the heap.
If the heap size exceeds K, remove the smallest element.
At the end, the heap will contain the largest K numbers in the input.
LRU Cache is a data structure that stores the most recently used items and discards the least recently used items.
Use a doubly linked list to keep track of the order of items in the cache
Use a hash map to store the key-value pairs for fast access
When an item is accessed, move it to the front of the linked list
When the cache is full, remove the least recently used item from the back of the linked list and the hash map
posted on 7 Jan 2015
based on 1 interview
Interview experience
Application Development Analyst
11
salaries
| ₹11 L/yr - ₹16 L/yr |
Senior Claims Representative
10
salaries
| ₹4 L/yr - ₹6.5 L/yr |
Senior Analyst
10
salaries
| ₹12 L/yr - ₹25 L/yr |
Application Development - Senior Analyst
9
salaries
| ₹17 L/yr - ₹24.2 L/yr |
Architect
9
salaries
| ₹42.8 L/yr - ₹46.3 L/yr |
Anthem
UnitedHealth
Aetna
Humana