"TikTok → short-form video platform where users share, post, comment, and like each other’s videos
Clarifying Questions
Define Active → Users who are opening the app at least once a day for a particular duration say 1 min
Geography? Consider India for this case
Is the source/BI Tool where we saw the drop valid enough?
TikTok is both on the app as well as browser - Where are we seeing the drop?
Is there a particular platform wherein we are seeing the drop? Android or iOS
New"
Disha - "TikTok → short-form video platform where users share, post, comment, and like each other’s videos
Clarifying Questions
Define Active → Users who are opening the app at least once a day for a particular duration say 1 min
Geography? Consider India for this case
Is the source/BI Tool where we saw the drop valid enough?
TikTok is both on the app as well as browser - Where are we seeing the drop?
Is there a particular platform wherein we are seeing the drop? Android or iOS
New"See full answer
"Clarifying Questions:
By “down”, do we mean creation of messages (activation), engagement, or both?
My assumed answer: engagement
How are “messages” defined? Is it comments to posts, DMs, or posts themselves?
My assumed answer: DMs
How is engagement of DMs defined? Is it by number of DMs viewed, created, replied to?
My assumed answer: all of that
Quick Product Strategy Discussion:
Why messaging is important to LinkedIn
LinkedIn’s mission is"
Arthur Y. - "Clarifying Questions:
By “down”, do we mean creation of messages (activation), engagement, or both?
My assumed answer: engagement
How are “messages” defined? Is it comments to posts, DMs, or posts themselves?
My assumed answer: DMs
How is engagement of DMs defined? Is it by number of DMs viewed, created, replied to?
My assumed answer: all of that
Quick Product Strategy Discussion:
Why messaging is important to LinkedIn
LinkedIn’s mission is"See full answer
"I would like to understand the reason why the conclusion was made to even have google maps for kids, assumption here is kids are aged 1 to 5.
Some clarifying questions
Are the kids in this scenario traveling all alone or accompanied by their parents
Kids are using google maps to let their parents know the directions (at times parents want to educate kids)
Kids are helping others with directions to their destination.
The consideration here is that kids would use maps for following s"
Rakesh K. - "I would like to understand the reason why the conclusion was made to even have google maps for kids, assumption here is kids are aged 1 to 5.
Some clarifying questions
Are the kids in this scenario traveling all alone or accompanied by their parents
Kids are using google maps to let their parents know the directions (at times parents want to educate kids)
Kids are helping others with directions to their destination.
The consideration here is that kids would use maps for following s"See full answer
"CQs:
Uber - which business? → Ride hailing
Business - B2B or B2C? → B2C
Geo - India
Revenue/profit → revenue
Revenue sources
Rides - bike, car, shuttle
Ads
Partnerships
Rides revenue = number of rides x average price
Ads revenue = ad impressions x conversion rate x CPC
Partnerships = number of partnerships x average income
Considering I am a PM, do you want me to focus on tech focused enablement only? No, assume you are a VP of product
*"
Sumit P. - "CQs:
Uber - which business? → Ride hailing
Business - B2B or B2C? → B2C
Geo - India
Revenue/profit → revenue
Revenue sources
Rides - bike, car, shuttle
Ads
Partnerships
Rides revenue = number of rides x average price
Ads revenue = ad impressions x conversion rate x CPC
Partnerships = number of partnerships x average income
Considering I am a PM, do you want me to focus on tech focused enablement only? No, assume you are a VP of product
*"See full answer
Product Manager
Product Design
+1 more
🧠 Want an expert answer to a question? Saving questions lets us know what content to make next.
"First, why are we building the system? What are the requirements we must meet - Do customers care about data being read/written from a single set of tables or multiple tables, do they care about cost allocation, do they need backups/storage to happen slow or fast, do they foresee a lot of data movement from one table to another?
Based on this, there are a few options using some common design choices. Shared disk, or Shared nothing. Both have pros and cons. Based on latency, performance, and cos"
Glados - "First, why are we building the system? What are the requirements we must meet - Do customers care about data being read/written from a single set of tables or multiple tables, do they care about cost allocation, do they need backups/storage to happen slow or fast, do they foresee a lot of data movement from one table to another?
Based on this, there are a few options using some common design choices. Shared disk, or Shared nothing. Both have pros and cons. Based on latency, performance, and cos"See full answer
"Clarifying Questions: Does parking mean a parking area where vehicles have a space to park? - Yes
Are we looking at a particular geography? - UK market
Roadmap of the answer: I am going to look at different users, their use cases on when they would want to park their vehicle, their pain points, the possible solution for this product, the MVP of the product along with the features and the metrics to be tracked
Different User Personas: Private car owners: Park car when they go out for socializing"
Rahul B. - "Clarifying Questions: Does parking mean a parking area where vehicles have a space to park? - Yes
Are we looking at a particular geography? - UK market
Roadmap of the answer: I am going to look at different users, their use cases on when they would want to park their vehicle, their pain points, the possible solution for this product, the MVP of the product along with the features and the metrics to be tracked
Different User Personas: Private car owners: Park car when they go out for socializing"See full answer
"Imagine you're playing with a big box of colorful building blocks. You know how sometimes you want to build a tall tower, and other times you want to make a cool car or a cozy house?
Well, a product manager is like the person who helps decide what kind of things we should build with those blocks. They talk to all your friends and ask, "Hey, what would be the most fun to make with these blocks?" Then they tell the builders what to do, like which blocks to use and how to put them together.
And g"
Jonah S. - "Imagine you're playing with a big box of colorful building blocks. You know how sometimes you want to build a tall tower, and other times you want to make a cool car or a cozy house?
Well, a product manager is like the person who helps decide what kind of things we should build with those blocks. They talk to all your friends and ask, "Hey, what would be the most fun to make with these blocks?" Then they tell the builders what to do, like which blocks to use and how to put them together.
And g"See full answer
"I broke the vehicles down by regions in the world. Designed a wireless api interface to sync with a database backend that linked to google maps through another service and api."
James H. - "I broke the vehicles down by regions in the world. Designed a wireless api interface to sync with a database backend that linked to google maps through another service and api."See full answer
"
from typing import List
def find_first(array: List[int], num: int) -> int:
left = 0
right = len(array) - 1
result = -1 # keep track of leftmost occurence found so far
while left <= right:
mid = (left + right) // 2
if array[mid] == num:
result = mid #Found a potential result
right = mid - 1
elif array[mid] < num:
left = mid + 1
else:
right = mid - 1
return result
debug your code"
Akash C. - "
from typing import List
def find_first(array: List[int], num: int) -> int:
left = 0
right = len(array) - 1
result = -1 # keep track of leftmost occurence found so far
while left <= right:
mid = (left + right) // 2
if array[mid] == num:
result = mid #Found a potential result
right = mid - 1
elif array[mid] < num:
left = mid + 1
else:
right = mid - 1
return result
debug your code"See full answer
"Estimate Google ads revenue.
Clarifications:
Google ads: only includes ads shown on Google search pages. It does not include any other ads such as display advertisement etc.
Google makes money everytime a user clicks on an ad.
Market - US
Monthly / Yearly - Yearly
Revenue in $
For 2020 ? - yes
So to state the Q again, I have to estimate Google’s annual search ads revenue for 2020.
Ads revene =( $ads clicked everyday * avg price per ad ) * 360
$ads clicked every"
D S. - "Estimate Google ads revenue.
Clarifications:
Google ads: only includes ads shown on Google search pages. It does not include any other ads such as display advertisement etc.
Google makes money everytime a user clicks on an ad.
Market - US
Monthly / Yearly - Yearly
Revenue in $
For 2020 ? - yes
So to state the Q again, I have to estimate Google’s annual search ads revenue for 2020.
Ads revene =( $ads clicked everyday * avg price per ad ) * 360
$ads clicked every"See full answer
"To make sure we are on the same page, this is a feature in the current FB app that would make it easier for people to volunteer? Or more broadly, the feature would aim to expand the base of volunteers.
To start I want to dive deeper on the objective of the feature. Then we can look at possible users, pick a segment and outline their needs, then look at some solutions. We can then prioritize and see how we might roll something like this out. If I look at FB mission of building community and brin"
Anonymous Sparrow - "To make sure we are on the same page, this is a feature in the current FB app that would make it easier for people to volunteer? Or more broadly, the feature would aim to expand the base of volunteers.
To start I want to dive deeper on the objective of the feature. Then we can look at possible users, pick a segment and outline their needs, then look at some solutions. We can then prioritize and see how we might roll something like this out. If I look at FB mission of building community and brin"See full answer
"During my internship at Inceptra Analytics, our team was working on improving the monthly reporting process for the operations department. I proposed switching from manual Excel reports to a Power BI dashboard to automate and visualize key metrics. However, some team members were hesitant—they felt the current process, although tedious, was more familiar and controllable. My task was to get buy-in from the team to adopt a more efficient reporting method without causing disruption or resistance."
Dhruv M. - "During my internship at Inceptra Analytics, our team was working on improving the monthly reporting process for the operations department. I proposed switching from manual Excel reports to a Power BI dashboard to automate and visualize key metrics. However, some team members were hesitant—they felt the current process, although tedious, was more familiar and controllable. My task was to get buy-in from the team to adopt a more efficient reporting method without causing disruption or resistance."See full answer
"Would like to ask some clarifying questions:
Is it a digital product?
Yes? Application or website?
Geography we are targeting?
Assuming it is an app.
Are we a new company or startup?
Do we have any tie ups with other companies to reach a wider audience?
Assuming I am the product manager of this application – goal of the application is to encourage voting
more questions:
Are we in the election year? Nearing the voting phase?
If yes, then it will be easier for us to get users fo"
Prerak B. - "Would like to ask some clarifying questions:
Is it a digital product?
Yes? Application or website?
Geography we are targeting?
Assuming it is an app.
Are we a new company or startup?
Do we have any tie ups with other companies to reach a wider audience?
Assuming I am the product manager of this application – goal of the application is to encourage voting
more questions:
Are we in the election year? Nearing the voting phase?
If yes, then it will be easier for us to get users fo"See full answer
"I would very confidently say - Never.
Did I failed with a Product? - Yes.
Did I launch a product that was sub-par? - Yes.
Did I failed to launch a product? - Never.
Also, I don't see it as part of growing up as PM to Fail to launch a Product.
I think it's a tricky quesion, better to be avoided."
Tarun K. - "I would very confidently say - Never.
Did I failed with a Product? - Yes.
Did I launch a product that was sub-par? - Yes.
Did I failed to launch a product? - Never.
Also, I don't see it as part of growing up as PM to Fail to launch a Product.
I think it's a tricky quesion, better to be avoided."See full answer
"I would start with few clarifying questions for the investigation and diagnosis of the problem.
Timing and volume:
For how long is the peak surge being noticed? Past few days / weeks / months?
Clarify about 'certain times'. Is it weekday Morning (Peak), Morning (off peak), Afternoon, Afternoon (peak), Evening (peak), Evening (off peak) or weekend?
Do we info on vehicle type that have the most volume? Cars, trucks, commercial vehicles, etc.,
Location and convenience of the gas st"
Krishnan S. - "I would start with few clarifying questions for the investigation and diagnosis of the problem.
Timing and volume:
For how long is the peak surge being noticed? Past few days / weeks / months?
Clarify about 'certain times'. Is it weekday Morning (Peak), Morning (off peak), Afternoon, Afternoon (peak), Evening (peak), Evening (off peak) or weekend?
Do we info on vehicle type that have the most volume? Cars, trucks, commercial vehicles, etc.,
Location and convenience of the gas st"See full answer