Upload Button Icon Add office photos

Meta

Compare button icon Compare button icon Compare

Filter interviews by

Meta Interview Questions, Process, and Tips

Updated 1 Mar 2025

Top Meta Interview Questions and Answers

View all 20 questions

Meta Interview Experiences

Popular Designations

59 interviews found

Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
More than 8 weeks
Result
Not Selected

I applied via Company Website and was interviewed in May 2024. There were 2 interview rounds.

Round 1 - Coding Test 

(2 Questions)

  • Q1. Graph related question from leetcode medium
  • Q2. 2 pointers question from leetcode medium
Round 2 - Coding Test 

This was a panel interview with 2 DSA questions, 1 hiring manager round and 1 system design

Senior Software Engineer Interview Questions asked at other Companies

Q1. Find Nth PrimeYou are given a number 'N'. Your task is to find Nth prime number. A prime number is a number greater than 1 that is not a product of two smaller natural numbers. Prime numbers have only two factors – 1 and the number itself. ... read more
View answer (6)

Analyst Interview Questions & Answers

user image Anonymous

posted on 16 Jan 2025

Interview experience
2
Poor
Difficulty level
Hard
Process Duration
4-6 weeks
Result
Not Selected

I applied via LinkedIn and was interviewed in Jul 2024. There was 1 interview round.

Round 1 - HR 

(2 Questions)

  • Q1. Why do you want to work here?
  • Q2. What is your favorite product and why?

Analyst Interview Questions asked at other Companies

Q1. N-th Fibonacci NumberYou are given an integer ‘N’, your task is to find and return the N’th Fibonacci number using matrix exponentiation. Since the answer can be very large, return the answer modulo 10^9 +7. Fibonacci number is calculated u... read more
View answer (5)
Interview experience
5
Excellent
Difficulty level
Hard
Process Duration
2-4 weeks
Result
Not Selected

I applied via LinkedIn and was interviewed in Apr 2024. There were 2 interview rounds.

Round 1 - Coding Test 

DSA, java, python, basic problem solving

Round 2 - One-on-one 

(2 Questions)

  • Q1. Tell me about yourself
  • Q2. Why did you leave your previous company

Interview Preparation Tips

Interview preparation tips for other job seekers - Be well prepared

Top Meta Software Engineer Interview Questions and Answers

Q1. How would you efficiently calculate the sum of such a matrix?
View answer (1)

Software Engineer Interview Questions asked at other Companies

Q1. Bridge and torch problem : Four people come to a river in the night. There is a narrow bridge, but it can only hold two people at a time. They have one torch and, because it's night, the torch has to be used when crossing the bridge. Person... read more
View answer (169)
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
4-6 weeks
Result
Not Selected

I applied via Company Website and was interviewed in Feb 2024. There were 2 interview rounds.

Round 1 - One-on-one 

(2 Questions)

  • Q1. 5 SQL based questions.
  • Q2. 5 DSA based questions.
Round 2 - Technical 

(2 Questions)

  • Q1. 3 SQL questions to solve
  • Q2. 3 DSA questions to solve

Interview Preparation Tips

Topics to prepare for Meta Data Engineer interview:
  • List
  • Dictionary
Interview preparation tips for other job seekers - Practice LeetCode...

Data Engineer Interview Questions asked at other Companies

Q1. Optimal Strategy for a GameYou and your friend Ninjax are playing a game of coins. Ninjax place the 'N' number of coins in a straight line. The rule of the game is as follows: 1. Each coin has a value associated with it. 2. It’s a two-playe... read more
View answer (6)

Meta interview questions for popular designations

 Software Engineer

 (16)

 Senior Software Engineer

 (4)

 Analyst

 (3)

 Network Engineer

 (3)

 Data Analyst

 (2)

 Software Developer

 (2)

 Software Engineer Intern

 (2)

 Analytics Engineer

 (1)

Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(2 Questions)

  • Q1. Coding assessment of distance
  • Ans. 

    Calculate the distance between two points in a 2D plane.

    • Use the distance formula: sqrt((x2 - x1)^2 + (y2 - y1)^2)

    • Ensure input validation for coordinates

    • Consider edge cases like points being the same or on the same axis

  • Answered by AI
  • Q2. Code assess of measure
  • Ans. 

    Code assessment measures the ability of a software developer to write efficient and effective code.

    • Code quality and readability are important factors in code assessment.

    • Efficiency and performance of the code are also key aspects to consider.

    • Ability to solve complex problems and think critically is evaluated through code assessment.

    • Knowledge of programming languages, algorithms, and data structures is tested in code ass...

  • Answered by AI

Skills evaluated in this interview

Software Developer Interview Questions asked at other Companies

Q1. Maximum Subarray SumGiven an array of numbers, find the maximum sum of any contiguous subarray of the array. For example, given the array [34, -50, 42, 14, -5, 86], the maximum sum would be 137, since we would take elements 42, 14, -5, and ... read more
View answer (39)

Get interview-ready with Top Meta Interview Questions

Data Analyst Interview Questions & Answers

user image Anonymous

posted on 18 Sep 2024

Interview experience
3
Average
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
-

I applied via Company Website and was interviewed in Aug 2024. There was 1 interview round.

Round 1 - HR 

(2 Questions)

  • Q1. How would you rate your SQL skills
  • Ans. 

    I would rate my SQL skills as advanced.

    • Proficient in writing complex SQL queries

    • Experienced in optimizing database performance

    • Skilled in data manipulation and analysis using SQL

    • Familiar with stored procedures and functions

    • Have worked on large datasets in previous projects

  • Answered by AI
  • Q2. How would you rate your Python skills
  • Ans. 

    I would rate my Python skills as advanced.

    • Proficient in data manipulation and analysis using pandas and numpy

    • Experience with data visualization libraries like matplotlib and seaborn

    • Familiar with machine learning libraries such as scikit-learn

    • Comfortable working with APIs and web scraping using requests and BeautifulSoup

  • Answered by AI

Skills evaluated in this interview

Data Analyst Interview Questions asked at other Companies

Q1. Suppose there is a room in the office and X people enter room throughout the day, Y people leave throughout the day [continuously people are entering the room, some are staying there, and rest are going out] .. so tell me the code to calcul... read more
View answer (11)
Interview experience
4
Good
Difficulty level
Hard
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via Job Portal and was interviewed in Mar 2024. There was 1 interview round.

Round 1 - One-on-one 

(2 Questions)

  • Q1. Is a valid decimal
  • Q2. Return the substring in a main string, which is composition of given string
  • Ans. 

    Find and return all substrings in a main string that match a given string.

    • Iterate through the main string and check for matches with the given string

    • Use substring function to extract potential matches

    • Store all matching substrings in an array and return it

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - 45 mins interview. 2 interview questions, 1st one easy, 2nd one is leet code medium. Solving with in the time is important. I couldn't able to complet the 2nd one.

Top Meta Software Engineer Interview Questions and Answers

Q1. How would you efficiently calculate the sum of such a matrix?
View answer (1)

Software Engineer Interview Questions asked at other Companies

Q1. Bridge and torch problem : Four people come to a river in the night. There is a narrow bridge, but it can only hold two people at a time. They have one torch and, because it's night, the torch has to be used when crossing the bridge. Person... read more
View answer (169)

SWE Interview Questions & Answers

user image Anonymous

posted on 21 Oct 2024

Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(2 Questions)

  • Q1. Weighted Random
  • Q2. DFS and tree based
Interview experience
3
Average
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
Not Selected

I applied via Company Website and was interviewed in Feb 2024. There were 2 interview rounds.

Round 1 - Coding Test 

Standard data structure and algorithms round. 2 questions to solve in 45 minutes

Round 2 - One-on-one 

(2 Questions)

  • Q1. Binary Search Tree - Root to leaf max sum path
  • Q2. Make balanced parenthesis
  • Ans. 

    Use a stack to ensure balanced parenthesis in a string

    • Iterate through each character in the string

    • If the character is an opening parenthesis, push it onto the stack

    • If the character is a closing parenthesis, pop from the stack and check if they match

    • If at the end the stack is empty, the parenthesis are balanced

  • Answered by AI

Skills evaluated in this interview

Top Meta Software Engineer Interview Questions and Answers

Q1. How would you efficiently calculate the sum of such a matrix?
View answer (1)

Software Engineer Interview Questions asked at other Companies

Q1. Bridge and torch problem : Four people come to a river in the night. There is a narrow bridge, but it can only hold two people at a time. They have one torch and, because it's night, the torch has to be used when crossing the bridge. Person... read more
View answer (178)
Interview experience
3
Average
Difficulty level
Hard
Process Duration
2-4 weeks
Result
Not Selected

I applied via Recruitment Consulltant and was interviewed in Mar 2024. There was 1 interview round.

Round 1 - One-on-one 

(1 Question)

  • Q1. What is the Traceroute and how it perform?
  • Ans. 

    Traceroute is a network diagnostic tool used to track the path that a packet takes from the source to the destination.

    • Traceroute sends out packets with increasing TTL values to elicit ICMP Time Exceeded messages from each router along the path.

    • It displays the IP addresses of the routers along with the round-trip time for each hop.

    • Traceroute helps in identifying network issues such as packet loss, latency, and routing l...

  • Answered by AI

Engineer - Network Operations Interview Questions asked at other Companies

Q1. How would you diagnose a STP loop in a switches network ?
View answer (1)

Meta Interview FAQs

How many rounds are there in Meta interview?
Meta interview process usually has 1-2 rounds. The most common rounds in the Meta interview process are Coding Test, Technical and One-on-one Round.
How to prepare for Meta interview?
Go through your CV in detail and study all the technologies mentioned in your CV. Prepare at least two technologies or languages in depth if you are appearing for a technical interview at Meta. The most common topics and skills that interviewers at Meta expect are Computer science, Python, Visual Basic, C++ and Automation Testing.
What are the top questions asked in Meta interview?

Some of the top questions asked at the Meta interview -

  1. How would you efficiently calculate the sum of such a matr...read more
  2. what will happen when the browser first visit the facebook.com ( different prot...read more
  3. Return the substring in a main string, which is composition of given str...read more
How long is the Meta interview process?

The duration of Meta interview process can vary, but typically it takes about 2-4 weeks to complete.

Tell us how to improve this page.

Meta Interview Process

based on 57 interviews

Interview experience

4.2
  
Good
View more

Interview Questions from Similar Companies

TCS Interview Questions
3.7
 • 10.5k Interviews
Infosys Interview Questions
3.6
 • 7.6k Interviews
Wipro Interview Questions
3.7
 • 5.7k Interviews
Amazon Interview Questions
4.1
 • 5.1k Interviews
HCLTech Interview Questions
3.5
 • 3.8k Interviews
Google Interview Questions
4.4
 • 873 Interviews
Apple Interview Questions
4.3
 • 141 Interviews
Facebook Interview Questions
4.4
 • 70 Interviews
View all

Meta Reviews and Ratings

based on 64 reviews

4.4/5

Rating in categories

4.2

Skill development

4.2

Work-life balance

4.6

Salary

3.3

Job security

4.2

Company culture

4.1

Promotions

4.0

Work satisfaction

Explore 64 Reviews and Ratings
Software Engineer
18 salaries
unlock blur

₹6.5 L/yr - ₹13.9 L/yr

Senior Software Engineer
15 salaries
unlock blur

₹33.3 L/yr - ₹53.8 L/yr

Software Developer
12 salaries
unlock blur

₹17 L/yr - ₹43.9 L/yr

Data Scientist
6 salaries
unlock blur

₹36.2 L/yr - ₹37.4 L/yr

Marketing Manager
6 salaries
unlock blur

₹25 L/yr - ₹36 L/yr

Explore more salaries
Compare Meta with

Google

4.4
Compare

Facebook

4.3
Compare

Amazon

4.1
Compare

Apple

4.3
Compare
Did you find this page helpful?
Yes No
write
Share an Interview