"function biggestNumber(array) {
if (!array) return null;
let number = array[0]
for(let i; i < array.length; i++) {
if (number <= array[i]) number = array[i];
}
return number
}
`"
Arinze O. - "function biggestNumber(array) {
if (!array) return null;
let number = array[0]
for(let i; i < array.length; i++) {
if (number <= array[i]) number = array[i];
}
return number
}
`"See full answer
"This is a Fermi problem — an estimation or approximation problem with limited information and back-of-the-envelope calculations. There's no right answer: interviewers want to understand how you think and how well you can explain your reasoning, rather than what you already know.
Recall the formula for Fermi problems:
Ask clarifying questions
Catalog what you know
Make equation(s)
Think about edge cases to add to equation
**Breakdown components of your equat"
Exponent - "This is a Fermi problem — an estimation or approximation problem with limited information and back-of-the-envelope calculations. There's no right answer: interviewers want to understand how you think and how well you can explain your reasoning, rather than what you already know.
Recall the formula for Fermi problems:
Ask clarifying questions
Catalog what you know
Make equation(s)
Think about edge cases to add to equation
**Breakdown components of your equat"See full answer
Product Manager
🧠Want an expert answer to a question? Saving questions lets us know what content to make next.
"This is a Technical question. It tests your ability to understand high level technical concepts. Even though your job won't have any coding involved, you'll still need to understand these concepts. Being able to cover all these topics with clarity communicates confidence in your interviewer.
Unfortunately, there's no formula for technical questions, but some general tips are:
Use analogies when you can
Break your solution into clear, bite-size steps
Don't be afraid to use examples to b"
Exponent - "This is a Technical question. It tests your ability to understand high level technical concepts. Even though your job won't have any coding involved, you'll still need to understand these concepts. Being able to cover all these topics with clarity communicates confidence in your interviewer.
Unfortunately, there's no formula for technical questions, but some general tips are:
Use analogies when you can
Break your solution into clear, bite-size steps
Don't be afraid to use examples to b"See full answer
"This many not look like it, but this is actually a Diagnosis problem. The twist here is that it's asking you to diagnose something positive. The approach is the same, so don't panic! Use our framework (along with the TROPIC method) to be as thorough as possible. The framework is as follows:
Ask clarifying questions
List potential high level reasons
Gather Context (TROPIC)Time
Region
Other features / products (internal)
Platform
Industry / Competition
Cannibalization
"
Exponent - "This many not look like it, but this is actually a Diagnosis problem. The twist here is that it's asking you to diagnose something positive. The approach is the same, so don't panic! Use our framework (along with the TROPIC method) to be as thorough as possible. The framework is as follows:
Ask clarifying questions
List potential high level reasons
Gather Context (TROPIC)Time
Region
Other features / products (internal)
Platform
Industry / Competition
Cannibalization
"See full answer
"function findMinMax(array){
array.sort((a,b) => a - b);
let min = array[0];
let max = array.slice(-1);
return [min,max];
}
`"
Adam S. - "function findMinMax(array){
array.sort((a,b) => a - b);
let min = array[0];
let max = array.slice(-1);
return [min,max];
}
`"See full answer
"Few clarifications questions,
RealSelf is a platform/place where people go to look for best doctors for cosmetic surgeries and procedures? Am I correct?
Interviewer: Yes.
Cool. So as far as I know RealSelf has a very well designed experience where users can find best suitable treatments, procedures, reviews from the users who have undergone treatments and reviews of doctors/clinics.
As a PM at RealSelf, I need to build a product which is not there already and which adds value to the mission o"
Piyush D. - "Few clarifications questions,
RealSelf is a platform/place where people go to look for best doctors for cosmetic surgeries and procedures? Am I correct?
Interviewer: Yes.
Cool. So as far as I know RealSelf has a very well designed experience where users can find best suitable treatments, procedures, reviews from the users who have undergone treatments and reviews of doctors/clinics.
As a PM at RealSelf, I need to build a product which is not there already and which adds value to the mission o"See full answer
"I collaborate with the marketing team by understanding their goals and making sure my work aligns with their needs. If we're working on a website or app, I ask them about branding, target audience, and key messaging.
For example, if they want to increase user engagement, I help by improving UI/UX, adding interactive elements, or making the site load faster. I also take their feedback seriously—if they need changes in design or content placement, I adjust accordingly."
Umesh V. - "I collaborate with the marketing team by understanding their goals and making sure my work aligns with their needs. If we're working on a website or app, I ask them about branding, target audience, and key messaging.
For example, if they want to increase user engagement, I help by improving UI/UX, adding interactive elements, or making the site load faster. I also take their feedback seriously—if they need changes in design or content placement, I adjust accordingly."See full answer