"Assuming for the US
Segment by size of businessNumber of employees per business sizePrice per employee=Revenue
Price per employee should decrease with a larger employee base.
30M businesses in the US
Small Business
60% of businesses are small=18M
Average number of employees=50
Price per employee=$5
Small Business Revenue=$2.7B
Medium Business
30% of them are medium=9M
Average number of employees=1000
Price per employee=$3
Medium Business Revenue=$8.1B
Large Business
10% of th"
Anonymous Puma - "Assuming for the US
Segment by size of businessNumber of employees per business sizePrice per employee=Revenue
Price per employee should decrease with a larger employee base.
30M businesses in the US
Small Business
60% of businesses are small=18M
Average number of employees=50
Price per employee=$5
Small Business Revenue=$2.7B
Medium Business
30% of them are medium=9M
Average number of employees=1000
Price per employee=$3
Medium Business Revenue=$8.1B
Large Business
10% of th"See full answer
"If 0's aren't a concern, couldn't we just
multiply all numbers.
and then divide product by each number in the list ?
if there's more than one zero, then we just return an array of 0s
if there's one zero, then we just replace 0 with product and rest 0s.
what am i missing?"
Sachin R. - "If 0's aren't a concern, couldn't we just
multiply all numbers.
and then divide product by each number in the list ?
if there's more than one zero, then we just return an array of 0s
if there's one zero, then we just replace 0 with product and rest 0s.
what am i missing?"See full answer
"As a product manager, my first step in designing a free product would be to define the product's target audience and the problem it aims to solve. Once these factors are established, I can then determine the best way to monetize the product.
One way to monetize a free product is through advertising. This involves displaying ads to users as they use the product, and earning revenue based on the number of clicks or impressions the ads receive. This model is commonly used by social media platforms,"
Anonymous Flamingo - "As a product manager, my first step in designing a free product would be to define the product's target audience and the problem it aims to solve. Once these factors are established, I can then determine the best way to monetize the product.
One way to monetize a free product is through advertising. This involves displaying ads to users as they use the product, and earning revenue based on the number of clicks or impressions the ads receive. This model is commonly used by social media platforms,"See full answer
Product Manager
Analytical
🧠Want an expert answer to a question? Saving questions lets us know what content to make next.
"Engineering Managers (EMs) juggle multiple responsibilities, which can vary significantly depending on the company, team, and organizational needs. One of the most critical skills for an EM is strategic thinking. This includes setting a clear vision for the team, participating in roadmap planning meetings, and crafting actionable roadmaps to guide the team toward its goals.
In addition to strategic thinking, an EM must excel in three key areas:
People Management: This involves ensuring te"
Pramod S. - "Engineering Managers (EMs) juggle multiple responsibilities, which can vary significantly depending on the company, team, and organizational needs. One of the most critical skills for an EM is strategic thinking. This includes setting a clear vision for the team, participating in roadmap planning meetings, and crafting actionable roadmaps to guide the team toward its goals.
In addition to strategic thinking, an EM must excel in three key areas:
People Management: This involves ensuring te"See full answer
"\# Definition for a binary tree node.
class TreeNode:
def init(self, val=0, left=None, right=None):
self.val = val
self.left = left
self.right = right
class Solution:
def maxPathSum(self, root: TreeNode) -> int:
self.max_sum = float('-inf')"
Jerry O. - "\# Definition for a binary tree node.
class TreeNode:
def init(self, val=0, left=None, right=None):
self.val = val
self.left = left
self.right = right
class Solution:
def maxPathSum(self, root: TreeNode) -> int:
self.max_sum = float('-inf')"See full answer
"Me: First, let's design our product and then we will calculate the estimated amount of units sold. Before we begin, is there anything specific about this refrigerator, is this a 'smart refrigerator'?
Interviewer: Yes, you can consider this is a smart refrigerator but the overall design is up to you.
Me: Thank you, one more question, do we have a specific user in mind? Younger people? Retirees?
Interviewer: No, you can select the user base based on your prioritization, but theoretically it cou"
Talles S. - "Me: First, let's design our product and then we will calculate the estimated amount of units sold. Before we begin, is there anything specific about this refrigerator, is this a 'smart refrigerator'?
Interviewer: Yes, you can consider this is a smart refrigerator but the overall design is up to you.
Me: Thank you, one more question, do we have a specific user in mind? Younger people? Retirees?
Interviewer: No, you can select the user base based on your prioritization, but theoretically it cou"See full answer
"Clarifying and assumption
When we say financial security, are we talking about authentication, fraud detection or money laundering? Assumption: Fraud detection. Focusing specifically on transaction-level fraud.
Is this an internal AI implementation or an external third-party service we provide to multiple financial businesses? Assumption: External Third-party AI financial security product.
Requirements
Need to detect when fraudulent transactions happen.
**Detection stra"
Darpan D. - "Clarifying and assumption
When we say financial security, are we talking about authentication, fraud detection or money laundering? Assumption: Fraud detection. Focusing specifically on transaction-level fraud.
Is this an internal AI implementation or an external third-party service we provide to multiple financial businesses? Assumption: External Third-party AI financial security product.
Requirements
Need to detect when fraudulent transactions happen.
**Detection stra"See full answer
"I had multiple RCA to complete and each one had a deadline but the process to complete them wasn't streamlined which cause some of them to miss SLA and point of contact felt frustrated as she has no information to give to customer. I received feedback that what blocked me to move forward on those and how can I do better next time?"
Anjesh D. - "I had multiple RCA to complete and each one had a deadline but the process to complete them wasn't streamlined which cause some of them to miss SLA and point of contact felt frustrated as she has no information to give to customer. I received feedback that what blocked me to move forward on those and how can I do better next time?"See full answer
"I will use the following approach for this situation:
Understand Current Status of the Program: Program Goals, Schedule, How many teams, what are their deliverables, dependencies between teams
Team level view of progress: Through tools like Burn down charts, Gantt charts etc. Identify laggards (lagging teams).
Trend analysis for lagging teams: Understand at what point, the decline started.
If the decline has started around same time, then following may be the potential issues:
-"
Saket S. - "I will use the following approach for this situation:
Understand Current Status of the Program: Program Goals, Schedule, How many teams, what are their deliverables, dependencies between teams
Team level view of progress: Through tools like Burn down charts, Gantt charts etc. Identify laggards (lagging teams).
Trend analysis for lagging teams: Understand at what point, the decline started.
If the decline has started around same time, then following may be the potential issues:
-"See full answer
"-- Write your query here
select
p.id,
p.title,
p.budget,
count(e.id) as num_employees,
sum(e.salary) as total_salaries
from projects p
join employeesprojects ep on p.id = ep.projectid
join employees e on ep.employee_id = e.id
group by 1
order by 5 desc;
`"
Anonymous Roadrunner - "-- Write your query here
select
p.id,
p.title,
p.budget,
count(e.id) as num_employees,
sum(e.salary) as total_salaries
from projects p
join employeesprojects ep on p.id = ep.projectid
join employees e on ep.employee_id = e.id
group by 1
order by 5 desc;
`"See full answer
"Proposed Solution: Awareness and Control Features
Algorithm Awareness Campaign Educational Content: Create short videos explaining how the algorithm works to enhance user experience.
Transparency Reports: Regular updates on algorithm changes to keep users informed.
User-Controlled Engagement Settings Customizable Feed Options: Allow users to adjust content preferences and limit certain types of videos.
Time Management Tools: Introduce reminders for screen time limits an"
Jaswanth P. - "Proposed Solution: Awareness and Control Features
Algorithm Awareness Campaign Educational Content: Create short videos explaining how the algorithm works to enhance user experience.
Transparency Reports: Regular updates on algorithm changes to keep users informed.
User-Controlled Engagement Settings Customizable Feed Options: Allow users to adjust content preferences and limit certain types of videos.
Time Management Tools: Introduce reminders for screen time limits an"See full answer
"Situation:
As a Product Manager at Cisco, I was leading the development of a new highly critical product for enterprise customers. Midway through the project, a key engineering team was reassigned due to an urgent security patch, leaving us understaffed with only six weeks left before a critical customer pilot.
Task:
I had to ensure the product launched on time without sacrificing key features, despite losing half of our engineering team. The challenge was to"
fuzzyicecream14 - "Situation:
As a Product Manager at Cisco, I was leading the development of a new highly critical product for enterprise customers. Midway through the project, a key engineering team was reassigned due to an urgent security patch, leaving us understaffed with only six weeks left before a critical customer pilot.
Task:
I had to ensure the product launched on time without sacrificing key features, despite losing half of our engineering team. The challenge was to"See full answer
"Situation: COVID has impacted everyone's lives, especially small businesses. Earlier this year, during the second lockdown in Malaysia, it was estimated that 50%-70% of small businesses have closed.
It got me thinking, beyond the existing training programmes, what can my company do to support small businesses?
Task:
So, I took the initiative to gather our Comms and Government Affairs team, to work together and explore how we can:
1) meaningfully demonstrate our company's commitment in"
Judy W. - "Situation: COVID has impacted everyone's lives, especially small businesses. Earlier this year, during the second lockdown in Malaysia, it was estimated that 50%-70% of small businesses have closed.
It got me thinking, beyond the existing training programmes, what can my company do to support small businesses?
Task:
So, I took the initiative to gather our Comms and Government Affairs team, to work together and explore how we can:
1) meaningfully demonstrate our company's commitment in"See full answer