"This interviewee had a decent framework but the specifics weren't impressive. I wouldn't post this as an example and would appreciate if you could replace this video."
Anonymous Deer - "This interviewee had a decent framework but the specifics weren't impressive. I wouldn't post this as an example and would appreciate if you could replace this video."See full answer
"I would start by asking a clarifying question - Is there a specific problem we are trying to solve? I want to get some guidance from the interviewer around the type of answer they're looking for or if there's specific paths they want us to take. Ultimately, I would start by identifying the users and moving through the process by identifying pain points and then potential solutions. It is important to start to get into the details of the solutions and features once pain points have been identifie"
Simer S. - "I would start by asking a clarifying question - Is there a specific problem we are trying to solve? I want to get some guidance from the interviewer around the type of answer they're looking for or if there's specific paths they want us to take. Ultimately, I would start by identifying the users and moving through the process by identifying pain points and then potential solutions. It is important to start to get into the details of the solutions and features once pain points have been identifie"See full answer
"To answer this, I will focus my efforts on explaining the most common type of API used in most modern software development applications - the REST API. For the purpose of simplicity, I will also keep the topics of Authorization and Authentication out of the mix.
In essence, an API is a group of logic that takes in a specific set of inputs and responds with a specific set of outputs. This is analogous to going to a drive-thru and placing an order for a meal.
When you give an API a bunch of"
Pathworks P. - "To answer this, I will focus my efforts on explaining the most common type of API used in most modern software development applications - the REST API. For the purpose of simplicity, I will also keep the topics of Authorization and Authentication out of the mix.
In essence, an API is a group of logic that takes in a specific set of inputs and responds with a specific set of outputs. This is analogous to going to a drive-thru and placing an order for a meal.
When you give an API a bunch of"See full answer
"Is the "idea" I'm trying to sell something new or built off an existing service/product we offer?
Interviewer: Let's assume new.
Assuming it's a proper sit-down meeting with senior management to go over the proposal, here is what the slide deck would contain.
Introduction/Description of the problem I'm trying to solve: Before proposing a solution, it is important to first identify the problem we're trying to solve. This section would contain the description of the problem/pain poi"
Harshita G. - "Is the "idea" I'm trying to sell something new or built off an existing service/product we offer?
Interviewer: Let's assume new.
Assuming it's a proper sit-down meeting with senior management to go over the proposal, here is what the slide deck would contain.
Introduction/Description of the problem I'm trying to solve: Before proposing a solution, it is important to first identify the problem we're trying to solve. This section would contain the description of the problem/pain poi"See full answer
"Excellent job Roshan, really liked the explanation. Which software were you using to explain the system design diagrams?"
Krishnan S. - "Excellent job Roshan, really liked the explanation. Which software were you using to explain the system design diagrams?"See full answer
System Design
Technical
🧠Want an expert answer to a question? Saving questions lets us know what content to make next.
"Clarifying questions: what exactly do we mean by travel product?
Travel recommendation.
Travel bookings( airlines/hotels)
Itinerary planning etc.
Is it going to be a completely new digital product or an extension of instagram?
Assuming travel product here means recommendations/bookings, and it going to be an extension within instagram, lets dwell further:
Meta's vision: To make the world a closer place by offering connections; build communities.
Instagram's mission: To capture , c"
Anonymous Boa - "Clarifying questions: what exactly do we mean by travel product?
Travel recommendation.
Travel bookings( airlines/hotels)
Itinerary planning etc.
Is it going to be a completely new digital product or an extension of instagram?
Assuming travel product here means recommendations/bookings, and it going to be an extension within instagram, lets dwell further:
Meta's vision: To make the world a closer place by offering connections; build communities.
Instagram's mission: To capture , c"See full answer
"I've recently worked closely with a product that had both the best and worst performing teams.
The situation is that one team is struggling to deliver within a reasonable timeframe, a few stronger members of the team are carrying the weaker. Work is taking a long time. They aren't listening to each other. They aren't helping each other to get work over the line. They are getting stuck down rabbit holes. They aren't continually improving their processes. They are getting frustrated and at risk o"
James W. - "I've recently worked closely with a product that had both the best and worst performing teams.
The situation is that one team is struggling to deliver within a reasonable timeframe, a few stronger members of the team are carrying the weaker. Work is taking a long time. They aren't listening to each other. They aren't helping each other to get work over the line. They are getting stuck down rabbit holes. They aren't continually improving their processes. They are getting frustrated and at risk o"See full answer
"What is rider cancellation? Is it a rider requesting a ride but hitting the cancel button after the driver is on their way? Yes.
I can see why it's concerning since that affects our # of completed rides and driver earnings. Let's try to understand the root cause.
Rider cancellations have increased in what time period? We noticed it last week.
Was it slowly dropping for a while or did we notice it only last week? It was a sudden drop last week
How did other metrics behave last week? For eg,"
M N. - "What is rider cancellation? Is it a rider requesting a ride but hitting the cancel button after the driver is on their way? Yes.
I can see why it's concerning since that affects our # of completed rides and driver earnings. Let's try to understand the root cause.
Rider cancellations have increased in what time period? We noticed it last week.
Was it slowly dropping for a while or did we notice it only last week? It was a sudden drop last week
How did other metrics behave last week? For eg,"See full answer
"Clarifying Questions :
Am I the PM at google ? Yes,
For which country Airport are we designing this? Lets assume its a new product so we will design it for the US airports and later expand to other countries.
GTM : When do we need to launch this product? Do we have any time constraints ? Lets assume one year
I am assuming why google wants to enter in this space is because it is an untapped market and google can revolutionize the market with some of the most emerging tehnologies by e"
Tanu M. - "Clarifying Questions :
Am I the PM at google ? Yes,
For which country Airport are we designing this? Lets assume its a new product so we will design it for the US airports and later expand to other countries.
GTM : When do we need to launch this product? Do we have any time constraints ? Lets assume one year
I am assuming why google wants to enter in this space is because it is an untapped market and google can revolutionize the market with some of the most emerging tehnologies by e"See full answer
"MOD = 10**9 + 7
def max_stability(reliability, availability):
max_stability = 1
for r, a in zip(reliability, availability):
Compute stability of the current server
stability = r * a
if stability != 0:
Multiply into max_stability and take modulo
maxstability = (maxstability * stability) % MOD
return max_stability
reliability = [1, 2, 2]
availability = [1, 1, 3]
print(max_stability(reliability, availability)) # Output the result mo"
K.nithish K. - "MOD = 10**9 + 7
def max_stability(reliability, availability):
max_stability = 1
for r, a in zip(reliability, availability):
Compute stability of the current server
stability = r * a
if stability != 0:
Multiply into max_stability and take modulo
maxstability = (maxstability * stability) % MOD
return max_stability
reliability = [1, 2, 2]
availability = [1, 1, 3]
print(max_stability(reliability, availability)) # Output the result mo"See full answer
"Required output in the solution not the one requested from the question. only customerid, firstname, last_name and years were required. Please this needs to be very clear.
Otherwise my answer is
with totalorderyear as (
SELECT
o.customer_id,
c.first_name,
c.last_name,
EXTRACT(YEAR FROM o.orderdate) AS orderyear,
COUNT(o.orderid) AS totalorders
FROM orders o
LEFT JOIN customers c
ON c.customerid = o.customerid
GROUP BY o.customerid, c.firstname, c.last"
Gloriose H. - "Required output in the solution not the one requested from the question. only customerid, firstname, last_name and years were required. Please this needs to be very clear.
Otherwise my answer is
with totalorderyear as (
SELECT
o.customer_id,
c.first_name,
c.last_name,
EXTRACT(YEAR FROM o.orderdate) AS orderyear,
COUNT(o.orderid) AS totalorders
FROM orders o
LEFT JOIN customers c
ON c.customerid = o.customerid
GROUP BY o.customerid, c.firstname, c.last"See full answer
"What do we mean by grow the VC feature? I am assuming the goal to be feature adoption.
Goal: Increase VC feature adoption and usage within a timeframe (say, 6 months?)
User Segments:
I am thinking of the following user segments for this problem -
Security conscious users (mostly an overlap with high spending limit card users)
Frequent shoppers with multiple online subscriptions (we could quantify this like >5 subscriptions or so)
Potential CapitalOne users who have shown interest in the"
Ashima S. - "What do we mean by grow the VC feature? I am assuming the goal to be feature adoption.
Goal: Increase VC feature adoption and usage within a timeframe (say, 6 months?)
User Segments:
I am thinking of the following user segments for this problem -
Security conscious users (mostly an overlap with high spending limit card users)
Frequent shoppers with multiple online subscriptions (we could quantify this like >5 subscriptions or so)
Potential CapitalOne users who have shown interest in the"See full answer
"Context
Photo app || Click images, videos via mobile app (android, ios) + editing + share + upload
Who are we? || Startup who wants to build accessibility apps for the disabled people
Why do we want to build this app? || Current apps are not usable by visually impaired, we can bring difference & gain market share.
Constraints || To launch in next 12 months
Is this app exclusively targeted for blind? || Yes but regular people may also use it but not our main target group
**Goa"
FuzzyLogic - "Context
Photo app || Click images, videos via mobile app (android, ios) + editing + share + upload
Who are we? || Startup who wants to build accessibility apps for the disabled people
Why do we want to build this app? || Current apps are not usable by visually impaired, we can bring difference & gain market share.
Constraints || To launch in next 12 months
Is this app exclusively targeted for blind? || Yes but regular people may also use it but not our main target group
**Goa"See full answer
"Mission: Tiktok's mission is to inspire creativity and Joy.
Any business wants to make sure that they are serving the value to their customers:
For TikTok customers are:
Viewers 2. Content Creators 3. Advertisers
So few metrics we could measure are:
Time spent/day
Total no of videos created/day
engagement rate = users who interacted in one of the meaningful action on Tiktok / total users at a day level
either likes, share, watched vide for at least 5 mins, created video
"
Nikita B. - "Mission: Tiktok's mission is to inspire creativity and Joy.
Any business wants to make sure that they are serving the value to their customers:
For TikTok customers are:
Viewers 2. Content Creators 3. Advertisers
So few metrics we could measure are:
Time spent/day
Total no of videos created/day
engagement rate = users who interacted in one of the meaningful action on Tiktok / total users at a day level
either likes, share, watched vide for at least 5 mins, created video
"See full answer
"Product and Mission
To allow users to create events and host on FB pages. It can be one time or recurring. It can include FB users through feeds or referrals or can be shared out with a link. Product objective is to build strong online and offline bonding through connecting people with common interests and ensure continued engagements. Aligns with the core Meta mission.
User Journey and Value + Metrics
Organizers: Finds the value when the many participants share interest or"
Soodong P. - "Product and Mission
To allow users to create events and host on FB pages. It can be one time or recurring. It can include FB users through feeds or referrals or can be shared out with a link. Product objective is to build strong online and offline bonding through connecting people with common interests and ensure continued engagements. Aligns with the core Meta mission.
User Journey and Value + Metrics
Organizers: Finds the value when the many participants share interest or"See full answer