"I would like to speak loud to narrow the scope of this question so I can be effective in identifying a solution to the problem on hand. Hope that is OK.
You mentioned, “Re-design the airport experience”. Is there a goal for this re-design exercise? Some top goals that come to my mind are the following. Please guide me so I can set it and we can proceed from there.
“Increase the number of passengers who travel to and from this airport”
“Improve customer satisfaction”
**“Get in"
Tara J. - "I would like to speak loud to narrow the scope of this question so I can be effective in identifying a solution to the problem on hand. Hope that is OK.
You mentioned, “Re-design the airport experience”. Is there a goal for this re-design exercise? Some top goals that come to my mind are the following. Please guide me so I can set it and we can proceed from there.
“Increase the number of passengers who travel to and from this airport”
“Improve customer satisfaction”
**“Get in"See full answer
"Clarifying questions:
What city/ country are we talking about?
Indian metro.
What all counts as a grocery store? Do have to cover dark stores as well which are not open to public?
Only consider all grocery stores where public pick up is allowed.
Do we have to include hyper markets/ super markets as well or only smaller stores?
Include both.
Okay, so I would be considering the Indian metro of Bangalore here.
The overall equation is , **total number of grocery stores = Number of small grocer"
Kartikeya N. - "Clarifying questions:
What city/ country are we talking about?
Indian metro.
What all counts as a grocery store? Do have to cover dark stores as well which are not open to public?
Only consider all grocery stores where public pick up is allowed.
Do we have to include hyper markets/ super markets as well or only smaller stores?
Include both.
Okay, so I would be considering the Indian metro of Bangalore here.
The overall equation is , **total number of grocery stores = Number of small grocer"See full answer
"WITH ActiveUsersYesterday AS (
SELECT DISTINCT user_id
FROM user_activity
WHERE activity_date = CAST(GETDATE() - 1 AS DATE)
),
VideoCallUsersYesterday AS (
SELECT DISTINCT user_id
FROM video_calls
WHERE call_date = CAST(GETDATE() - 1 AS DATE)
)
SELECT
(CAST(COUNT(DISTINCT v.userid) AS FLOAT) / NULLIF(COUNT(DISTINCT a.userid), 0)) * 100 AS percentagevideocall_users
FROM
ActiveUsersYesterday a
LEFT JOIN
VideoCallUsersYesterday v ON a.userid = v.userid;"
Bala G. - "WITH ActiveUsersYesterday AS (
SELECT DISTINCT user_id
FROM user_activity
WHERE activity_date = CAST(GETDATE() - 1 AS DATE)
),
VideoCallUsersYesterday AS (
SELECT DISTINCT user_id
FROM video_calls
WHERE call_date = CAST(GETDATE() - 1 AS DATE)
)
SELECT
(CAST(COUNT(DISTINCT v.userid) AS FLOAT) / NULLIF(COUNT(DISTINCT a.userid), 0)) * 100 AS percentagevideocall_users
FROM
ActiveUsersYesterday a
LEFT JOIN
VideoCallUsersYesterday v ON a.userid = v.userid;"See full answer
"1. Understand the "Why" (Deep Dive) - Before jumping to solutions, as a PM needs to precisely understand why users are unhappy. NPS gives us a score, but not the reasons. (0 -4 weeks)
Analyze Feedback: Go beyond the score. What are Detractors (0-6) saying? What do Promoters (9-10) love?
Qualitative Research:(VOC- voice of the customer) Conduct user interviews, analyze support tickets, and observe product usage. Pinpoint specific pain points (e.g., slow p"
Vishnu G. - "1. Understand the "Why" (Deep Dive) - Before jumping to solutions, as a PM needs to precisely understand why users are unhappy. NPS gives us a score, but not the reasons. (0 -4 weeks)
Analyze Feedback: Go beyond the score. What are Detractors (0-6) saying? What do Promoters (9-10) love?
Qualitative Research:(VOC- voice of the customer) Conduct user interviews, analyze support tickets, and observe product usage. Pinpoint specific pain points (e.g., slow p"See full answer
"Described a scenario where I joined an established project as an EM
Typical medium sized team - 6 devs, 2 testers, PO, PM (part time) Scrum master (very hands off)
The product was well established and already being used by circa 30000 single country based users for the companies own products (personal banking capabilities)
We were due to go live with a BIG change about 2 months after I joined - this change meant a user could manage multiple personal banking accounts from the 1 interface. We w"
Hans - "Described a scenario where I joined an established project as an EM
Typical medium sized team - 6 devs, 2 testers, PO, PM (part time) Scrum master (very hands off)
The product was well established and already being used by circa 30000 single country based users for the companies own products (personal banking capabilities)
We were due to go live with a BIG change about 2 months after I joined - this change meant a user could manage multiple personal banking accounts from the 1 interface. We w"See full answer
Customer Success Manager
Behavioral
+1 more
🧠 Want an expert answer to a question? Saving questions lets us know what content to make next.
"App I Don’t Like: Electrify America
What Electrify America Is Supposed to Do
Electrify America is an app designed to help electric vehicle (EV) owners locate, access, and pay for fast-charging stations across the U.S. The app provides real-time station availability, allows users to initiate and monitor charging sessions, and offers membership plans for discounted rates. Ideally, it should enable a seamless charging experience, especially for long-distance travelers relying on i"
fuzzyicecream14 - "App I Don’t Like: Electrify America
What Electrify America Is Supposed to Do
Electrify America is an app designed to help electric vehicle (EV) owners locate, access, and pay for fast-charging stations across the U.S. The app provides real-time station availability, allows users to initiate and monitor charging sessions, and offers membership plans for discounted rates. Ideally, it should enable a seamless charging experience, especially for long-distance travelers relying on i"See full answer
"Clarifying Questions
Are we an EdTech company adding this as a new arm, or building a new product? → New product
Is the learning mode online or offline? → User can choose
Are we focusing on any specific instruments? → No, any instrument
Does our product include a marketplace for purchasing instruments? → No
Are we building a mobile app or web platform? → Both, for India location
User Personas
Music Enthusiasts – Full-time learners aim"
Preetham m P. - "Clarifying Questions
Are we an EdTech company adding this as a new arm, or building a new product? → New product
Is the learning mode online or offline? → User can choose
Are we focusing on any specific instruments? → No, any instrument
Does our product include a marketplace for purchasing instruments? → No
Are we building a mobile app or web platform? → Both, for India location
User Personas
Music Enthusiasts – Full-time learners aim"See full answer
"#include
#include
#include
using namespace std;
vector diff(const vector& A, const vector& B) {
unordered_set elements;
vector result;
for (const auto& element : A) {
elements.insert(element);
}
for (const auto& element : B) {
if (elements.find(element) == elements.end()) {
result.push_back(element);
} else {
elements.erase(element);
}
}
for"
Warrenbuff - "#include
#include
#include
using namespace std;
vector diff(const vector& A, const vector& B) {
unordered_set elements;
vector result;
for (const auto& element : A) {
elements.insert(element);
}
for (const auto& element : B) {
if (elements.find(element) == elements.end()) {
result.push_back(element);
} else {
elements.erase(element);
}
}
for"See full answer
"Modernizing banking legacy systems and applications
The modernization process typically involves moving from mainframe-based legacy platforms to solutions based on cloud and other modern digital technologies"
Teja G. - "Modernizing banking legacy systems and applications
The modernization process typically involves moving from mainframe-based legacy platforms to solutions based on cloud and other modern digital technologies"See full answer
"Clarifying questions
Define ride sharing app: An app for people who wish to go from one place to another and they prefer to share the ride with fellow riders who are heading to the common route. This app provides a way to book a shared cab or Auto.
Type of rides: Does not include luxury cars
We are trying to enhance customer experience by ensuring less cancellations from user's side rather then cancellation from driver's side.
No timelines involved
Need to consider competitors"
Madhuri J. - "Clarifying questions
Define ride sharing app: An app for people who wish to go from one place to another and they prefer to share the ride with fellow riders who are heading to the common route. This app provides a way to book a shared cab or Auto.
Type of rides: Does not include luxury cars
We are trying to enhance customer experience by ensuring less cancellations from user's side rather then cancellation from driver's side.
No timelines involved
Need to consider competitors"See full answer
"In my organization, I was given a initiative to improve the time spent by users on web application so that we can improve the quality of engagement on the website.
Overview of a business model:
We are a research organization that delivers where users (B2B clients) consume research content in form of research reports. Clients has specifically subscription for a year and if clients engage continuously and they spend more time on research they will retain.
Success metrics:
Improve time spe"
Harshit J. - "In my organization, I was given a initiative to improve the time spent by users on web application so that we can improve the quality of engagement on the website.
Overview of a business model:
We are a research organization that delivers where users (B2B clients) consume research content in form of research reports. Clients has specifically subscription for a year and if clients engage continuously and they spend more time on research they will retain.
Success metrics:
Improve time spe"See full answer
"Context:
While working as a Senior Systems Engineer at Indra on a project for BBVA, I was primarily responsible for building ETLs and optimizing data pipelines using Spark and Scala.
Action:
During a critical deployment phase, our QA lead had to leave unexpectedly due to a personal emergency. With no one available to manage testing coordination, I volunteered to step in — even though it wasn’t my formal responsibility. I quickly reviewed the test cases, communicated with stakeholders, an"
Otto yhoda A. - "Context:
While working as a Senior Systems Engineer at Indra on a project for BBVA, I was primarily responsible for building ETLs and optimizing data pipelines using Spark and Scala.
Action:
During a critical deployment phase, our QA lead had to leave unexpectedly due to a personal emergency. With no one available to manage testing coordination, I volunteered to step in — even though it wasn’t my formal responsibility. I quickly reviewed the test cases, communicated with stakeholders, an"See full answer
"My Least Favorite Product: Amazon Kindle
I have both: amazon kindle 8th generation (with backlight) and without backlight for many years now and also part of kindle unlimited program. And would be having more than 200-300 books on it already ranging across various topics
What i don't like about kindle is that, its operating system has not evolved since many years. It's as difficult to operate as it was when it was launched. Infact now i don't prefer to browse the books on kindle, instead buy t"
P D. - "My Least Favorite Product: Amazon Kindle
I have both: amazon kindle 8th generation (with backlight) and without backlight for many years now and also part of kindle unlimited program. And would be having more than 200-300 books on it already ranging across various topics
What i don't like about kindle is that, its operating system has not evolved since many years. It's as difficult to operate as it was when it was launched. Infact now i don't prefer to browse the books on kindle, instead buy t"See full answer
"Notes from the Video.
1-1s are two way feedback. Important tool to discuss things that are not possible in group setting
feedback to employee by manager
feedback to manager by employee
Feedback to employee can vary by the type of performer the employee is
(a) high performer
(b) meets expectations
(c) under performing
Dos and Don't
Avoid project discussion as they can be obtained else where. Focus on feedback to employee. Unless there is a critical project item to be d"
Adib M. - "Notes from the Video.
1-1s are two way feedback. Important tool to discuss things that are not possible in group setting
feedback to employee by manager
feedback to manager by employee
Feedback to employee can vary by the type of performer the employee is
(a) high performer
(b) meets expectations
(c) under performing
Dos and Don't
Avoid project discussion as they can be obtained else where. Focus on feedback to employee. Unless there is a critical project item to be d"See full answer
"First, let’s discuss why this is important for any platform business
Think of platform businesses like Amazon or YouTube as matchmakers. They connect people who want something with those who provide it, whether it's products or content.
But here's the catch: users trust these platforms to make sure they're getting good stuff. They want genuine products, safe content, and no scams.
So, platforms need to be like guardians. They check suppliers and content creators to make sure they're not"
Jay K. - "First, let’s discuss why this is important for any platform business
Think of platform businesses like Amazon or YouTube as matchmakers. They connect people who want something with those who provide it, whether it's products or content.
But here's the catch: users trust these platforms to make sure they're getting good stuff. They want genuine products, safe content, and no scams.
So, platforms need to be like guardians. They check suppliers and content creators to make sure they're not"See full answer
"Great question. My favourite product is YouTube Music. Let's see on what its strategy should be for next year.
Clarifying questions
No clarifying questions on this as I will be working with my favourite products. I will have few assumptions which I will state out before we proceed.
Assumptions
Assuming that we need to come up with strategy for YouTube Music app - not considering YouTube as a whole as part of this.
I am considering overall audio streaming as the space to come up with the s"
Harshit G. - "Great question. My favourite product is YouTube Music. Let's see on what its strategy should be for next year.
Clarifying questions
No clarifying questions on this as I will be working with my favourite products. I will have few assumptions which I will state out before we proceed.
Assumptions
Assuming that we need to come up with strategy for YouTube Music app - not considering YouTube as a whole as part of this.
I am considering overall audio streaming as the space to come up with the s"See full answer
"So first, I have some clarifying questions, what is Facebook lite?
If I understand correctly this is a version of the Facebook application for Android, with the same functionality but lighter in terms of size. It is aimed to be used in emerging markets where the bandwidth is limited
What are the tradeoffs for the size of the app?
I guess that some visual elements are stripped down from the app and reduced its size
Is this application exist or I am launching it
The timeframe of the product?"
Gadi R. - "So first, I have some clarifying questions, what is Facebook lite?
If I understand correctly this is a version of the Facebook application for Android, with the same functionality but lighter in terms of size. It is aimed to be used in emerging markets where the bandwidth is limited
What are the tradeoffs for the size of the app?
I guess that some visual elements are stripped down from the app and reduced its size
Is this application exist or I am launching it
The timeframe of the product?"See full answer
"Clarifying questions:
Do we want to focus on front end or backend?
Front end
Do we want to focus on any particular platform? For ex: Site, mobile, apps
Interviewer: Desktop
Is there anything tools on gmail that you'd like me to focus on? For ex: Meet, Hangouts, Notes
Interviewer: Just the main product
Are there any specific product buckets that you'd like me to go through? For ex: Sign up flows, login flows, security, product experience, sign out flow, recommend"
Amy M. - "Clarifying questions:
Do we want to focus on front end or backend?
Front end
Do we want to focus on any particular platform? For ex: Site, mobile, apps
Interviewer: Desktop
Is there anything tools on gmail that you'd like me to focus on? For ex: Meet, Hangouts, Notes
Interviewer: Just the main product
Are there any specific product buckets that you'd like me to go through? For ex: Sign up flows, login flows, security, product experience, sign out flow, recommend"See full answer