"I told a story about having good intentions to help out a superior with a problem but I did so without seeking buy-in (permission) first. While I did solve the problem and provided value to him and my other colleagues, I was reprimanded for crossing boundaries and not respecting his privacy (I accessed his computer without his permission to deliver a resolution to a problem).
While I had good intentions and the outcome was good, my approach left me with a negative mark and a life long lesson r"
Zakery K. - "I told a story about having good intentions to help out a superior with a problem but I did so without seeking buy-in (permission) first. While I did solve the problem and provided value to him and my other colleagues, I was reprimanded for crossing boundaries and not respecting his privacy (I accessed his computer without his permission to deliver a resolution to a problem).
While I had good intentions and the outcome was good, my approach left me with a negative mark and a life long lesson r"See full answer
"What are some of the Tradeoff stories Amazon prefers? Do they prefer the Feature Prioritization type of tradeoff or technology/platform type of tradeoffs?
"
Imran R. - "What are some of the Tradeoff stories Amazon prefers? Do they prefer the Feature Prioritization type of tradeoff or technology/platform type of tradeoffs?
"See full answer
"Reinforcement Learning is a type of machine learning where an agent learns to make decisions by trying out different actions and receiving rewards or penalties in return. The goal is to learn, over time, which actions yield the highest rewards.
There are three core components in RL:
The agent — the learner or decision-maker (e.g., an algorithm or robot),
The environment — everything the agent interacts with,
Actions and rewards — the agent takes actions, and the environmen"
Constantin P. - "Reinforcement Learning is a type of machine learning where an agent learns to make decisions by trying out different actions and receiving rewards or penalties in return. The goal is to learn, over time, which actions yield the highest rewards.
There are three core components in RL:
The agent — the learner or decision-maker (e.g., an algorithm or robot),
The environment — everything the agent interacts with,
Actions and rewards — the agent takes actions, and the environmen"See full answer
"I'm interpreting this question as "what's the process you'd go through to launch a new product". I'd approach it this way, assuming we haven't yet made any determinations around the what/how:
Step 1: Pick an industry of interest with Industry criteria based on
Industry growth rate
VC investments (pitchbook is a good resource)
Step 2: Evaluate the various industry verticals and select the vertical with the most opportunity evaluated by
Age of companies
New entrants
Existing
-"
Diamonde H. - "I'm interpreting this question as "what's the process you'd go through to launch a new product". I'd approach it this way, assuming we haven't yet made any determinations around the what/how:
Step 1: Pick an industry of interest with Industry criteria based on
Industry growth rate
VC investments (pitchbook is a good resource)
Step 2: Evaluate the various industry verticals and select the vertical with the most opportunity evaluated by
Age of companies
New entrants
Existing
-"See full answer
"Clarifying question
Why? Does booking.com have data on demand for this new feature? Let's say no
Does booking.com have any specific goal with this new feature? Improve revenue or Improve user experience ( provide flexibility in payments or expand user base dealing with crypto, etc.) Let's say targetting new users who want to deal with crypto
(I don't know if this is to be approached as a product design question) I would approach the introduction of cryptocurrency as a new payment method i"
Mudit B. - "Clarifying question
Why? Does booking.com have data on demand for this new feature? Let's say no
Does booking.com have any specific goal with this new feature? Improve revenue or Improve user experience ( provide flexibility in payments or expand user base dealing with crypto, etc.) Let's say targetting new users who want to deal with crypto
(I don't know if this is to be approached as a product design question) I would approach the introduction of cryptocurrency as a new payment method i"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.
"Clarification:
What does "share" imply? is it the action of sharing the app or website ? My assumption here we are not talking about stock market share :P, other factors come into play there.
Diving-in:
I would like to classify the questions into 2 buckets
Internal
Do we have data on which platform the shares increases and split up by Mobile and if mobile via app or via browser, split by apple/android, split via desktop, tablet . Essentially source of the shares. What this will t"
Pm P. - "Clarification:
What does "share" imply? is it the action of sharing the app or website ? My assumption here we are not talking about stock market share :P, other factors come into play there.
Diving-in:
I would like to classify the questions into 2 buckets
Internal
Do we have data on which platform the shares increases and split up by Mobile and if mobile via app or via browser, split by apple/android, split via desktop, tablet . Essentially source of the shares. What this will t"See full answer
"A/B testing is used when one wishes to only test minor front-end changes on the website.
Consider a scenario where an organization wishes to make significant changes to its existing page, such as wants to create an entirely new version of an existing web page URL and wants to analyze which one performs better. Obviously, the organization will not be willing to touch the existing web page design for comparison purposes.
In the above scenario, performing Split URL testing would be beneficial. T"
Sangeeta P. - "A/B testing is used when one wishes to only test minor front-end changes on the website.
Consider a scenario where an organization wishes to make significant changes to its existing page, such as wants to create an entirely new version of an existing web page URL and wants to analyze which one performs better. Obviously, the organization will not be willing to touch the existing web page design for comparison purposes.
In the above scenario, performing Split URL testing would be beneficial. T"See full answer
"Tag all new members in the welcome post
Use Facebook live videos
Play fun Facebook group games and offer rewards
Run contests that include giveaways
Conduct polls
Facebook group engagement posts – Only use the formats that work
Post at the most engaging times
Create Facebook group posts on what your members are talking about
Encourage success posts – the best engagement posts for Facebook groups
Facebook group marketing – Allow members to promote something
Facebook group marketing – Collaborate"
Sadhana U. - "Tag all new members in the welcome post
Use Facebook live videos
Play fun Facebook group games and offer rewards
Run contests that include giveaways
Conduct polls
Facebook group engagement posts – Only use the formats that work
Post at the most engaging times
Create Facebook group posts on what your members are talking about
Encourage success posts – the best engagement posts for Facebook groups
Facebook group marketing – Allow members to promote something
Facebook group marketing – Collaborate"See full answer
"Here is my first shot at it. Please excuse formatting.
To find the maximum depth of the dependencies given a list of nodes, each having a unique string id and a list of subnodes it depends on, you can perform a depth-first search (DFS) to traverse the dependency graph. Here's how you can implement this:
Represent the nodes and their dependencies using a dictionary.
Perform a DFS on each node to find the maximum depth of the dependencies.
Keep track of the maximum depth encountered dur"
Tes d H. - "Here is my first shot at it. Please excuse formatting.
To find the maximum depth of the dependencies given a list of nodes, each having a unique string id and a list of subnodes it depends on, you can perform a depth-first search (DFS) to traverse the dependency graph. Here's how you can implement this:
Represent the nodes and their dependencies using a dictionary.
Perform a DFS on each node to find the maximum depth of the dependencies.
Keep track of the maximum depth encountered dur"See full answer
"-- Write your query here
With base as(
select
player_name
, team_id
, max(scores.gamescore) as gamescore
from players
join scores on players.playerid = scores.playerid
group by playername, teamid)
Select team_id
, player_name
, game_score
from (
Select teamid , playername ,gamescore, DenseRank() Over (Partition by teamid order by gamescore desc ) as rnk
from base) a where rnk <=2
`"
Palak S. - "-- Write your query here
With base as(
select
player_name
, team_id
, max(scores.gamescore) as gamescore
from players
join scores on players.playerid = scores.playerid
group by playername, teamid)
Select team_id
, player_name
, game_score
from (
Select teamid , playername ,gamescore, DenseRank() Over (Partition by teamid order by gamescore desc ) as rnk
from base) a where rnk <=2
`"See full answer
"Clarifying Questions:
Product → It is a online Professional Services platforms where jobs are made much easier for both recruiters and for job-seekers
Goal → Increase Number of Users/ Any other Business Goal?
Mission → It is to make job-posting/seeking completely hassle free and accessible to everyone.
Do we have any timeframe to do this and is there any growth rate that I should be targeting? - 5x in 5 years
Students → Are we focusing on Full-time or Part-time students?
Any"
Adhitya G. - "Clarifying Questions:
Product → It is a online Professional Services platforms where jobs are made much easier for both recruiters and for job-seekers
Goal → Increase Number of Users/ Any other Business Goal?
Mission → It is to make job-posting/seeking completely hassle free and accessible to everyone.
Do we have any timeframe to do this and is there any growth rate that I should be targeting? - 5x in 5 years
Students → Are we focusing on Full-time or Part-time students?
Any"See full answer
"Question: Design a CookBook app
A few questions I’d ask the interviewer are: what’s the purpose/goal of the app, who are the user segments, and any primary geography we’re targeting as the first launch of the product.
Answers/assumptions to the questions: let’s say below are the answers the interviewer provides:
what’s the purpose/goal of the app: to help people to follow a recipe, follow it while cooking, and also request a recipe
who are the user segments: considering people who’r"
Anamitra - "Question: Design a CookBook app
A few questions I’d ask the interviewer are: what’s the purpose/goal of the app, who are the user segments, and any primary geography we’re targeting as the first launch of the product.
Answers/assumptions to the questions: let’s say below are the answers the interviewer provides:
what’s the purpose/goal of the app: to help people to follow a recipe, follow it while cooking, and also request a recipe
who are the user segments: considering people who’r"See full answer
"Sales and Delivery app:
Ask Clarifying questions:
What all parts of the user journey does this app play a role in?
All delivery notifications go through this app.
Tesla while completing sales does ask its customer to download this app.
Sales can be completely done through the app.
Sales person at Tesla could be reached through app.
App can be used to buy other peripherals for Tesla.
Success Metrics:
Revenue:
\# of car sales completed through the delivery app.
\# of peripheral"
Anonymous Caribou - "Sales and Delivery app:
Ask Clarifying questions:
What all parts of the user journey does this app play a role in?
All delivery notifications go through this app.
Tesla while completing sales does ask its customer to download this app.
Sales can be completely done through the app.
Sales person at Tesla could be reached through app.
App can be used to buy other peripherals for Tesla.
Success Metrics:
Revenue:
\# of car sales completed through the delivery app.
\# of peripheral"See full answer
"
To start, I'm going to make sure I understand the product correctly and also define what specific business metric we're trying to improve. Second, I will focus on defining the target user for which we want to improve the product and brainstorm what additional user problems we could solve. And third, I will generate solutions for these problems, prioritize them, and make a recommendation."
First I want to understand if this product will aim to help me find the pet I want, or help me discover wh"
Anonymous Sparrow - "
To start, I'm going to make sure I understand the product correctly and also define what specific business metric we're trying to improve. Second, I will focus on defining the target user for which we want to improve the product and brainstorm what additional user problems we could solve. And third, I will generate solutions for these problems, prioritize them, and make a recommendation."
First I want to understand if this product will aim to help me find the pet I want, or help me discover wh"See full answer