Skip to main content

Meta Interview Questions

Review this list of 732 Meta interview questions and answers verified by hiring managers and candidates.
  • Meta logoAsked at Meta 
    3 answers

    "The correct question is: Build a product for celebrities to engage with their followers."

    Tony A. - "The correct question is: Build a product for celebrities to engage with their followers."See full answer

    Product Manager
    Product Design
  • Meta logoAsked at Meta 
    11 answers
    Video answer for 'Design Uber Eats.'
    +8

    "basic drew the diagram"

    Aswath B. - "basic drew the diagram"See full answer

    Software Engineer
    System Design
    +2 more
  • Meta logoAsked at Meta 
    4 answers
    +1

    "A high level framework Clarifications: Reactions already exist in Instagram? Any specific region or user group we try to target for the launch? ... Product description: IG is ... Reactions are Emoji alike icons users can use to reply to posts/photos/comments FB's mission: Help people stay connected and build communities IG's mission/goal: Allow users to capture world's moments and share with friends Reactions Goal: To provide users an easier way to react to the content and to bet"

    Kai W. - "A high level framework Clarifications: Reactions already exist in Instagram? Any specific region or user group we try to target for the launch? ... Product description: IG is ... Reactions are Emoji alike icons users can use to reply to posts/photos/comments FB's mission: Help people stay connected and build communities IG's mission/goal: Allow users to capture world's moments and share with friends Reactions Goal: To provide users an easier way to react to the content and to bet"See full answer

    Behavioral
    Product Strategy
  • Meta logoAsked at Meta 
    3 answers

    "Situation: I led a critical initiative to re-architect the high volume customer data platform. The system handled over 90 PB of records handling around 70 billion customer records daily and was foundational to customer data capabilities across multiple enterprise products. The existing architecture faced significant challenges around latency, accuracy, and scalability, and any disruption would directly impact global customers and downstream systems. Task: I was responsible for leading t"

    Krish M. - "Situation: I led a critical initiative to re-architect the high volume customer data platform. The system handled over 90 PB of records handling around 70 billion customer records daily and was foundational to customer data capabilities across multiple enterprise products. The existing architecture faced significant challenges around latency, accuracy, and scalability, and any disruption would directly impact global customers and downstream systems. Task: I was responsible for leading t"See full answer

    Technical Program Manager
    Behavioral
    +2 more
  • "Prompt: Define success of reels How do I investigate if reels engagement is up by x, posts are down by y Clarification: What is reels: video experience on explore page, play page. Can have comments, likes etc. Why was it launched: to promote engagement on the app, 'addictive sessions back to back. Product goal: Increase in app time, drive stickiness. Big picture: Instagram launched reels post tiktok style success, way to saving market share Define success"

    Geet B. - "Prompt: Define success of reels How do I investigate if reels engagement is up by x, posts are down by y Clarification: What is reels: video experience on explore page, play page. Can have comments, likes etc. Why was it launched: to promote engagement on the app, 'addictive sessions back to back. Product goal: Increase in app time, drive stickiness. Big picture: Instagram launched reels post tiktok style success, way to saving market share Define success"See full answer

    Product Manager
    Analytical
    +1 more
  • 🧠 Want an expert answer to a question? Saving questions lets us know what content to make next.

  • Meta logoAsked at Meta 
    9 answers
    Video answer for 'Define a meaningful social interaction metric for Facebook.'
    +6

    "First, I would like to discuss and align what is meaningful social interaction. Given facebook's mission to empower users to build communities and get people closer, it is important that users have "meaningful social interaction" The goal of defining this metric is to use this as a north star or success metric around any efforts to increase engagement. It can also help with ads targeting/monetization by showing ads only during deeper interactions and hence might get better yield. Given faceb"

    Praveen - "First, I would like to discuss and align what is meaningful social interaction. Given facebook's mission to empower users to build communities and get people closer, it is important that users have "meaningful social interaction" The goal of defining this metric is to use this as a north star or success metric around any efforts to increase engagement. It can also help with ads targeting/monetization by showing ads only during deeper interactions and hence might get better yield. Given faceb"See full answer

    Analytical
  • Meta logoAsked at Meta 
    2 answers

    "Clarifying Questions and possible responses: both audio and video goals: increase engagement time among groups/communitites and not require another platform to do group call (be one-stop for communication) region-TBD ios/android only available to users in a group to call users within the group who can intitiate these calls?- only admin? or anyone? metrics:NSM: feature engagement (C), number of calls made in a week per user (C). PM: % of people joining the call in a group"

    theproductguy - "Clarifying Questions and possible responses: both audio and video goals: increase engagement time among groups/communitites and not require another platform to do group call (be one-stop for communication) region-TBD ios/android only available to users in a group to call users within the group who can intitiate these calls?- only admin? or anyone? metrics:NSM: feature engagement (C), number of calls made in a week per user (C). PM: % of people joining the call in a group"See full answer

    Data Scientist
    Data Analysis
    +2 more
  • Meta logoAsked at Meta 
    3 answers

    "average time spent attending event, number of sign up for the event, attendees/signups"

    Anuradha T. - "average time spent attending event, number of sign up for the event, attendees/signups"See full answer

    Product Manager
    Analytical
  • Meta logoAsked at Meta 
    3 answers

    "Redefining the question as: How will you solve the problem of misinformation on FB? Clarifying questions: Are we talking about building a product? (Up to you) What exactly is misinformation? (Fake news, inaccurate facts being shared on social media) Goal: Reduce the amount of misinformation spread on the platform and improve user trust. Key users associated with misinformation: News Accounts (eg CNN) - They may get involved in some controversy about a fake photoshopped artic"

    P K. - "Redefining the question as: How will you solve the problem of misinformation on FB? Clarifying questions: Are we talking about building a product? (Up to you) What exactly is misinformation? (Fake news, inaccurate facts being shared on social media) Goal: Reduce the amount of misinformation spread on the platform and improve user trust. Key users associated with misinformation: News Accounts (eg CNN) - They may get involved in some controversy about a fake photoshopped artic"See full answer

    Product Design
  • Meta logoAsked at Meta 
    7 answers
    +3

    "General Approach (using Max-Heap) Use a max-heap (priority queue) of size k. For each point: Compute the distance to P. Push it into the heap. If heap size > k, remove the farthest point. The heap will contain the k closest points to P. import java.util.*; public class KClosestPoints { static class Point { int x, y; public Point(int x, int y) { this.x = x; this.y = y; } // Euclidean distance squared (no need to take square root) p"

    Khushbu R. - "General Approach (using Max-Heap) Use a max-heap (priority queue) of size k. For each point: Compute the distance to P. Push it into the heap. If heap size > k, remove the farthest point. The heap will contain the k closest points to P. import java.util.*; public class KClosestPoints { static class Point { int x, y; public Point(int x, int y) { this.x = x; this.y = y; } // Euclidean distance squared (no need to take square root) p"See full answer

    Software Engineer
    Data Structures & Algorithms
    +2 more
  • Meta logoAsked at Meta 
    2 answers

    "demonstrate your ability to recognize and nurture talent, provide growth opportunities, and create an environment that supports and challenges high-performing individuals. Use a real-life example to illustrate your approach and showcase your leadership skills. Managing high performers is an exciting and rewarding aspect of being an engineering manager. These individuals are often the driving force behind innovation, productivity, and success within a team. As a manager, it's crucial to recogni"

    Sam T. - "demonstrate your ability to recognize and nurture talent, provide growth opportunities, and create an environment that supports and challenges high-performing individuals. Use a real-life example to illustrate your approach and showcase your leadership skills. Managing high performers is an exciting and rewarding aspect of being an engineering manager. These individuals are often the driving force behind innovation, productivity, and success within a team. As a manager, it's crucial to recogni"See full answer

    Engineering Manager
    Behavioral
  • Meta logoAsked at Meta 
    Add answer
    Product Manager
    Product Design
  • Meta logoAsked at Meta 
    5 answers
    +2

    "Question #1 Imagine you were in charge of Facebook Watch, what metric would you want to measure? Clarify: Facebook Watch offers users video content including news, sports, live stream shopping and gaming, etc. it works on both desktops and mobiles. It's a fairly recent feature. Mission: Facebook's overall mission is to connect people and help them build communities, and Facebook Watch can help Facebook achieve this by keeping users up to date with local news, or conn"

    Brit L. - "Question #1 Imagine you were in charge of Facebook Watch, what metric would you want to measure? Clarify: Facebook Watch offers users video content including news, sports, live stream shopping and gaming, etc. it works on both desktops and mobiles. It's a fairly recent feature. Mission: Facebook's overall mission is to connect people and help them build communities, and Facebook Watch can help Facebook achieve this by keeping users up to date with local news, or conn"See full answer

    Analytical
    Execution
  • Meta logoAsked at Meta 
    3 answers
    Video answer for 'Design a product for parenting.'

    "Clarifying questions Target market: parents Geo: USA Key value proposition: help people in parenting Target market assessment Reach: Every year, millions of people become parents and they need to take majority of decisions for their children till the child is 18. Frequency: The decision making and guidance is needed on almost every aspect of the child's life - so the frequency is high Importance: Making decision and managing children is one of the most important aspect of people"

    Rahul J. - "Clarifying questions Target market: parents Geo: USA Key value proposition: help people in parenting Target market assessment Reach: Every year, millions of people become parents and they need to take majority of decisions for their children till the child is 18. Frequency: The decision making and guidance is needed on almost every aspect of the child's life - so the frequency is high Importance: Making decision and managing children is one of the most important aspect of people"See full answer

    Product Manager
    Product Design
  • Meta logoAsked at Meta 
    5 answers
    +2

    "Implemented a recursive function which returns the length of the list so far. when the returned value equals k + 1 , assign current.next = current.next.next. If I made it back to the head return root.next as the new head of the linked list."

    דניאל ר. - "Implemented a recursive function which returns the length of the list so far. when the returned value equals k + 1 , assign current.next = current.next.next. If I made it back to the head return root.next as the new head of the linked list."See full answer

    Machine Learning Engineer
    Data Structures & Algorithms
    +2 more
  • Meta logoAsked at Meta 
    20 answers
    Video answer for 'How would you build an audio product for Facebook?'
    +16

    "The pain points articulated (no contextual recs, isolating experience, etc.) are pain points in the broader audio listening industry - there's no existing audio product at Meta already and assuming this is a net new product, wouldn't it have made more sense to have pain points specific to Meta? E.g. "there's no sense of real-time community in FB Groups" or "the barrier to engage in FB groups feels high" It almost feels like she just regurgitated things she's learned from her time working on Alex"

    Michael N. - "The pain points articulated (no contextual recs, isolating experience, etc.) are pain points in the broader audio listening industry - there's no existing audio product at Meta already and assuming this is a net new product, wouldn't it have made more sense to have pain points specific to Meta? E.g. "there's no sense of real-time community in FB Groups" or "the barrier to engage in FB groups feels high" It almost feels like she just regurgitated things she's learned from her time working on Alex"See full answer

    Product Manager
    Product Design
    +1 more
  • "Did a quick 30 min writeup on this and I'm submitting before I review/edit. Success metrics for Spotify Podcasts Clarify Focus is on Spotify Podcasts, which are audio content posted by Spotify Content creators Spotify Podcasts exists across all devices Spotify as a company is at a mature state and is looking to enhance retention and revenue (monetization) Spotify makes money through ads, Spotify Podcasts too - Assuming that Spotify Podcasts has some sort of ad product where adv"

    Bryan K. - "Did a quick 30 min writeup on this and I'm submitting before I review/edit. Success metrics for Spotify Podcasts Clarify Focus is on Spotify Podcasts, which are audio content posted by Spotify Content creators Spotify Podcasts exists across all devices Spotify as a company is at a mature state and is looking to enhance retention and revenue (monetization) Spotify makes money through ads, Spotify Podcasts too - Assuming that Spotify Podcasts has some sort of ad product where adv"See full answer

    Product Manager
    Analytical
    +1 more
  • Meta logoAsked at Meta 
    2 answers

    "To address this question, I'll assume that Horizon Worlds is a virtual reality platform offering immersive experiences and content to users. As a Product Manager at HW, my approach would be to focus on metrics that align with the growth stages of the product. I'll use the AARRR framework (Acquisition, Activation, Retention, Revenue, Referral) to guide our analysis. Assumptions: Horizon Worlds is primarily a content-driven virtual reality platform. The business model includes both free"

    Shivam B. - "To address this question, I'll assume that Horizon Worlds is a virtual reality platform offering immersive experiences and content to users. As a Product Manager at HW, my approach would be to focus on metrics that align with the growth stages of the product. I'll use the AARRR framework (Acquisition, Activation, Retention, Revenue, Referral) to guide our analysis. Assumptions: Horizon Worlds is primarily a content-driven virtual reality platform. The business model includes both free"See full answer

    Product Manager
    Analytical
  • Meta logoAsked at Meta 
    11 answers
    Video answer for 'Design a fitness app for Facebook.'
    +7

    "My answer- A. Clarifying questions- External factors- Timelines, Geography, Competition Internal factors- Meta's goals for entering into fitness space, full-fledged app or part of any existing Meta app Goals- Will go after engagement, since it is a new app. B. Identifying users- Heavily/ Professionally into fitness Casual fitness enthusiasts Not interested in fitness C. Prioritizing user segments- I will prioritize #2. Segment #1 does not really need external motivati"

    Aakanksha R. - "My answer- A. Clarifying questions- External factors- Timelines, Geography, Competition Internal factors- Meta's goals for entering into fitness space, full-fledged app or part of any existing Meta app Goals- Will go after engagement, since it is a new app. B. Identifying users- Heavily/ Professionally into fitness Casual fitness enthusiasts Not interested in fitness C. Prioritizing user segments- I will prioritize #2. Segment #1 does not really need external motivati"See full answer

    Product Manager
    Product Design
  • Meta logoAsked at Meta 
    2 answers

    "I liked the role of a TPM due to the opportunity to contribute to the multiple dimensions of software product development. As a TPM I need to collaborate with multiple teams like Engineering, Product, and other business functions, but I also get the opportunity to contribute to the technical aspects of the program/project. I can use my sharp analytical skills to identify/anticipate problems, and leverage my problem solving skills to unblock the teams. I orchestrate multiple teams effort to del"

    A R. - "I liked the role of a TPM due to the opportunity to contribute to the multiple dimensions of software product development. As a TPM I need to collaborate with multiple teams like Engineering, Product, and other business functions, but I also get the opportunity to contribute to the technical aspects of the program/project. I can use my sharp analytical skills to identify/anticipate problems, and leverage my problem solving skills to unblock the teams. I orchestrate multiple teams effort to del"See full answer

    Technical Program Manager
    Behavioral
Showing 221-240 of 732
Exponent

Get updates in your inbox with the latest tips, job listings, and more.

Follow Us

Products
Courses
Interview Questions
Interview Experiences
Popular articles
Guides
Coaching
For Partners
Company
Exponent © 2026
Terms of Service | Privacy