Upload Button Icon Add office photos

Facebook

Compare button icon Compare button icon Compare

Filter interviews by

Facebook Interview Questions, Process, and Tips

Updated 15 Jan 2025

Top Facebook Interview Questions and Answers

  • Q1. Saving Money Problem Statement Ninja is adventurous and loves traveling while being mindful of his expenses. Given a set of 'N' stations connected by 'M' trains, each tr ...read more
    asked in Software Developer interview
  • Q2. Given a hashmap M which is a mapping of characters to arrays of substitute characters, and an input string S, return an array of all possible mutations of S (where any ch ...read more
    asked in SDE interview
  • Q3. Given an “id” and a function getFriends(id) to get the list of friends of that person id, write a function that returns the list of “friends of friends” in the order of d ...read more
    asked in Software Engineer interview
View all 67 questions

Facebook Interview Experiences

Popular Designations

70 interviews found

SWE Intern Interview Questions & Answers

user image Anonymous

posted on 20 Sep 2021

I was interviewed before Sep 2020.

Round 1 - Video Call 

(2 Questions)

Round duration - 45 minutes
Round difficulty - Medium

It was a 45 min coding interview which has 3 sections, the first 5 min are reserved for you & your interviewer to introduce each other. After which you're expected to solve 2-3 coding problems with bug-free code and while solving make sure you think out loud and discuss your approach with your interviewer before start coding.
At the end of the interview, you'll be asked to discuss any questions or doubts if you've any.

  • Q1. 

    Arithmetic Progression Queries Problem Statement

    Given an integer array ARR of size N, perform the following operations:

    - update(l, r, val): Add (val + i) to arr[l + i] for all 0 ≤ i ≤ r - l.

    - rangeSu...

  • Q2. 

    Arithmetic Expression Evaluation Problem Statement

    You are provided with a string expression consisting of characters '+', '-', '*', '/', '(', ')' and digits '0' to '9', representing an arithmetic express...

Round 2 - Video Call 

(2 Questions)

Round duration - 60 minutes
Round difficulty - Hard

It was a 60 min interview of which the first 15 min were dedicated to behavioral questions and the remaining 45 min was the same as the last round.

The way behavioral round works is that your interviewer will give you a situation and will seek your inputs on how would you tackle this or may ask you to share some incidents from your past where you exhibited a few leadership skills. I would suggest being prepared upfront with 1-2 stories from your past internships or college life where you led a team or handled a tough situation.

  • Q1. 

    Interleaving Two Strings Problem Statement

    You are given three strings 'A', 'B', and 'C'. Determine if 'C' is formed by interleaving 'A' and 'B'.

    String 'C' is an interleaving of 'A' and 'B' if the lengt...

  • Q2. 

    Get DFS Path Problem Statement

    Given an undirected graph represented by vertices and edges, identify and return a path between two specified vertices using Depth First Search (DFS). The path should be pres...

Interview Preparation Tips

Professional and academic backgroundI applied for the job as SWE Intern in LondonEligibility criteriaN/AFacebook interview preparation:Topics to prepare for the interview - Data Structures & Algorithms, Graph Theory, Binary/Interval Tree, Heaps, Probability, Randomised algorithms, and sometimes design problems.Time required to prepare for the interview - 5 MonthsInterview preparation tips for other job seekers

Tip 1 : Start as early as you can, and be consistent while you are practicing. It's like the Law of Inertia i.e initially it seems very hard but once you get into practice you'll start enjoying the process.
Tip 2 : If you have enough(3-4 months) time then try to solve problems in a Depth First manner i.e explore each topic before jumping to the next one.
Tip 3 : Make sure to cover company-specific problems before your final interview this would help you to find a pattern in what exactly the organization is seeking in a candidate. Also, if possible try to talk to people who have gone through the same process in the past.

Application resume tips for other job seekers

Tip 1 : Recruiters love seeing things that you have done other than your academics, so make sure you have good side projects to showcase, participate in Hackathons, and coding competition.
Tip 2 : Try contributing to open-source projects but don't limit yourself to just GSoC, RGSoC, or Outreachy. Contribute to projects that have a huge impact this would help your profile to stand out.

Final outcome of the interviewSelected

Skills evaluated in this interview

I applied via LinkedIn and was interviewed before Aug 2021. There was 1 interview round.

Round 1 - One-on-one 

(2 Questions)

  • Q1. Tell me about a time when you had an uncooperative team member? What was your approach and end result?
  • Ans. 

    I had an uncooperative team member and successfully resolved the issue.

    • Identified the root cause of the team member's uncooperative behavior

    • Had a one-on-one conversation to understand their concerns and perspective

    • Offered support and resources to address any challenges they were facing

    • Established clear expectations and communicated the impact of their behavior on the team

    • Worked together to find common ground and develo...

  • Answered by AI
  • Q2. How do you keep yourself organized?
  • Ans. 

    I keep myself organized by using a combination of digital tools and time management techniques.

    • I use a digital calendar to schedule and prioritize tasks.

    • I create to-do lists and break down larger tasks into smaller, manageable steps.

    • I use project management software to track progress and deadlines.

    • I regularly review and update my task list to ensure nothing falls through the cracks.

    • I practice effective time management ...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Read the mission statement. Practice. Also, follow STAR method

Program Manager Interview Questions asked at other Companies

Q1. Use case scenario - in case a new engagement is awarded to Infosys, share how do you manage that Project/Program?
View answer (9)

I was interviewed before Sep 2020.

Round 1 - Coding Test 

(2 Questions)

Round duration - 30 minutes
Round difficulty - Easy

2 easy problems for coding.

  • Q1. 

    All Prime Numbers Less Than or Equal to N

    Given a positive integer N, your task is to return all the prime numbers less than or equal to N.

    Note:

    1) A prime number is a number that has only two factors:...
  • Q2. 

    Running Absolute Difference in Arrays

    Given an array ARR consisting of 'N' non-negative integers, compute the running absolute difference of elements at even and odd index positions, respectively.

    Input:

    ...
Round 2 - Video Call 

Round duration - 30 minutes
Round difficulty - Hard

Face to face interview, design and coding involved.

Interview Preparation Tips

Professional and academic backgroundI completed Software Engineering from Delhi Technological University. I applied for the job as SDE - Intern in LondonEligibility criteriaCGPA above 7Facebook interview preparation:Topics to prepare for the interview - DBMS, Data Structures and Algorithms , OOP, Maths puzzles, Aptitude , CN, OSTime required to prepare for the interview - 2 monthsInterview preparation tips for other job seekers

Tip 1 : Never leave any topic from any chapter / Subject
Tip 2 : Learn to explain your thoughts well
Tip 3 : Learn from previous experiences / interviews / problems asked.
Tip 4 : Atleast 4 projects in Resume

Application resume tips for other job seekers

Tip 1 : Atleast 4 projects on Resume
Tip 2 : Do not write false things. You always get caught. Be genuine.

Final outcome of the interviewRejected

Top Facebook Software Developer Intern Interview Questions and Answers

Q1. Base 58 Conversion Problem Statement You are given a decimal number 'N'. Your task is to convert this number into a base 58 representation. The Base58 alphabet is defined by the following characters: “123456789ABCDEFGHJKLMNPQRSTUVWXYZabcdef... read more
Add answer

Software Developer Intern Interview Questions asked at other Companies

Q1. Sum of Maximum and Minimum Elements Problem Statement Given an array ARR of size N, your objective is to determine the sum of the largest and smallest elements within the array. Follow Up: Can you achieve the above task using the least numb... read more
View answer (4)

Interview Questionnaire 

1 Question

  • Q1. From Resume

Interview Preparation Tips

Interview preparation tips for other job seekers - Stay motivated

SEO Executive Interview Questions asked at other Companies

Q1. What are the best practices to get more traffic on a website?
View answer (1)

Facebook interview questions for popular designations

 Software Engineer

 (15)

 Software Developer

 (6)

 Data Scientist

 (3)

 Product Manager

 (2)

 Program Manager

 (2)

 Senior Software Engineer

 (2)

 Software Developer Intern

 (2)

 Software Engineer Intern

 (2)

I applied via Job Fair and was interviewed before Mar 2021. There was 1 interview round.

Round 1 - One-on-one 

(5 Questions)

  • Q1. What is the right age of employee to retire from any private company?
  • Ans. According to me my was 49 due to disability.
  • Answered Anonymously
  • Q2. Who is responsible for illegal rules?
  • Ans. 

    The responsibility for illegal rules lies with the individuals or entities that create and enforce them.

    • Illegal rules are typically created by individuals or organizations in positions of authority or power.

    • Government bodies, legislative bodies, or regulatory agencies may be responsible for creating illegal rules.

    • Enforcement agencies, such as the police or regulatory authorities, may be responsible for enforcing illega...

  • Answered by AI
  • Q3. Knowledge having is good or bad
  • Q4. Nor good nor bad but must have complete instead having non or incomplete
  • Q5. Why life is unbearable sometimes?
  • Ans. Might be thinking of view matter toward situation and time.
  • Answered Anonymously

Interview Preparation Tips

Interview preparation tips for other job seekers - Work from home long journey as per my experience

from Home Article Writing job Interview Questions asked at other Companies

Q1. Who is responsible for illegal rules?
View answer (2)

Get interview-ready with Top Facebook Interview Questions

I was interviewed before Dec 2020.

Round 1 - Coding Test 

(2 Questions)

Round duration - 90 minutes
Round difficulty - Hard

This was an online coding round where we were supposed to solve 2 questions under 90 minutes . Both the questions in my set were related to Graphs and were quite tricky and heavy to implement.

  • Q1. 

    Path Counting in Directed Graph

    Given a directed graph with a specified number of vertices V and edges E, your task is to calculate the total number of distinct paths from a given source node S to all ot...

  • Ans. 

    Steps: 

    1) Create a recursive function that takes index of node of a graph and the destination index. Keep a global or a static variable count to store the count. Keep a record of the nodes visited in the current path by passing a visited array by value (instead of reference, which would not be limited to the current path).
    2) If the current nodes is the destination increase the count.
    3) Else for all the adjacent no...

  • Answered Anonymously
  • Q2. 

    Course Schedule II Problem Statement

    You are provided with a number of courses 'N', some of which have prerequisites. There is a matrix named 'PREREQUISITES' of size 'M' x 2. This matrix indicates that fo...

  • Ans. 

    Approach : This problem was based on Topological Sorting .

    The first node in the topological ordering will be the node that doesn't have any incoming edges. Essentially, any node that has an in-degree of 0 can start the topologically sorted order. If there are multiple such nodes, their relative order doesn't matter and they can appear in any order.

    Algorithm : 

    1) Initialize a queue, Q to keep a track of all the nod...

  • Answered Anonymously
Round 2 - Face to Face 

(2 Questions)

Round duration - 60 Minutes
Round difficulty - Medium

This was a Data Structures and Algorithms round with some standard questions . I was expected to come up with an
efficient approach and code it as well .

  • Q1. 

    Merge Intervals Problem Statement

    You are provided with 'N' intervals, each containing two integers denoting the start time and end time of the interval.

    Your task is to merge all overlapping intervals a...

  • Ans. 

    Steps : 

    1) First, we sort the list as described. 
    2) Then, we insert the first interval into our merged list and continue considering each interval in turn as follows - 
    2.1) If the current interval begins after the previous interval ends, then they do not overlap and we can 
    append the current interval to merged. 
    2.2) Otherwise, they do overlap, and we merge them by updating the end of the previo...

  • Answered Anonymously
  • Q2. 

    Longest Route Problem Statement

    Given a 2-dimensional binary matrix called Mat of size N x M that consists solely of 0s and 1s, find the length of the longest path from a specified source cell to a destina...

  • Ans. 
    1. The idea is to reduce the problem from finding a path from source to destination to finding a path from some node to destination and building our answer up.
    2. From the current cell, we look if there exists a neighbor from where I can reach the destination if no such neighbor exists we return -1.
    3. Else if a path exists we take the longest path then add 1 in it ( to account for the transition from the current cell to a neighb...
  • Answered Anonymously
Round 3 - Face to Face 

(2 Questions)

Round duration - 50 Minutes
Round difficulty - Medium

This was also a DSA round where I was asked to code only one of the questions but I eventually ended up coding both
as I had some spare time and explained my approches very smoothly to the interviewer . This round went preety well .

  • Q1. 

    Longest Increasing Subsequence Problem Statement

    Given an array of integers with 'N' elements, determine the length of the longest subsequence where each element is greater than the previous element. This...

  • Ans. 

    Approach 1 (Using DP ) :

    This is a classic Dynamic Programming problem.
    Steps : 
    1) Let dp[i] is the longest increase subsequence which ends at nums[i] . 
    2) For every i from 0 to n , traverse backwards from j=i-1 to j=0 and check if nums[i]>nums[j].
    3) If nums[i]>nums[j] , update dp[i]=max(dp[i] , dp[j]+1)
    4) Finally return the maximum element from the DP array

    TC: O(N^2)
    SC: O(N)

    Approach 2 (Using Binary Searc...

  • Answered Anonymously
  • Q2. 

    Search In Rotated Sorted Array Problem Statement

    Given a rotated sorted array ARR of size 'N' and an integer 'K', determine the index at which 'K' is present in the array.

    Note:
    1. If 'K' is not present...
  • Ans. 

    This was a preety standard Binary Search Question and I had solved this question before on platforms like LeetCode and CodeStudio . I was asked this question to test my implementation skills and how well do I handle Edge Cases .

    Approach :
    1) The idea is to find the pivot point, divide the array in two sub-arrays and perform binary search.
    2) The main idea for finding pivot is – for a sorted (in increasing order) and pivo...

  • Answered Anonymously
Round 4 - Face to Face 

(2 Questions)

Round duration - 50 Minutes
Round difficulty - Medium

This was also a DSA round with 2 questions of Medium to Hard difficulty . I was expected to follow some clean code and OOPS principles to write the code in this round .

  • Q1. 

    Rank from Stream Problem Statement

    Given an array of integers ARR and an integer K, determine the rank of the element ARR[K].

    Explanation:

    The rank of any element in ARR is defined as the number of elem...

  • Ans. 

    Step 1- Making the ‘BST’ :

     

    Let insert(TreeNode* <int> ROOT, int VAL) be a function which insert data into ‘BST’.

    Now consider the following steps to implement the function :

    1. If ‘ROOT’ is NULL then make a new Node with data and return it.
    2. If 'VAL' is less than data of ‘ROOT’ then do:
      1. Make a recursive call with the left child of ‘ROOT’ as ‘ROOT’.
      2. Increase the size of the left subtree of ‘ROOT’ by 1.
    3. Otherwise do:
      1. Mak...
  • Answered Anonymously
  • Q2. 

    LRU Cache Design Question

    Design a data structure for a Least Recently Used (LRU) cache that supports the following operations:

    1. get(key) - Return the value of the key if it exists in the cache; otherw...

  • Ans. 

    Approach : 

    Structure of an LRU Cache :

    1) In practice, LRU cache is a kind of Queue — if an element is reaccessed, it goes to the end of the eviction order
    2) This queue will have a specific capacity as the cache has a limited size. Whenever a new element is brought in, it
    is added at the head of the queue. When eviction happens, it happens from the tail of the queue.
    3) Hitting data in the cache must be done in const...

  • Answered Anonymously

Interview Preparation Tips

Eligibility criteriaAbove 7 CGPAFacebook interview preparation:Topics to prepare for the interview - Data Structures, Algorithms, System Design, Aptitude, OOPSTime required to prepare for the interview - 4 MonthsInterview preparation tips for other job seekers

Tip 1 : Must do Previously asked Interview as well as Online Test Questions.
Tip 2 : Go through all the previous interview experiences from Codestudio and Leetcode.
Tip 3 : Do at-least 2 good projects and you must know every bit of them.

Application resume tips for other job seekers

Tip 1 : Have at-least 2 good projects explained in short with all important points covered.
Tip 2 : Every skill must be mentioned.
Tip 3 : Focus on skills, projects and experiences more.

Final outcome of the interviewSelected

Skills evaluated in this interview

Top Facebook Software Developer Interview Questions and Answers

Q1. Saving MoneyNinja likes to travel a lot, but at the same time, he wants to save as much money as possible. There are ‘N’ Stations connected by ‘M’ Trains. Each train that he boards starts from station ‘A’ and reaches destination station ‘B’... read more
View answer (5)

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)

Jobs at Facebook

View all

I was interviewed before Dec 2020.

Round 1 - Face to Face 

(2 Questions)

Round duration - 60 Minutes
Round difficulty - Medium

This was a Data Structures and Algorithms round with preety good questions . I was expected to come up with an efficient approach and code it as well .

  • Q1. 

    K Closest Points to Origin Problem Statement

    Your house is located at the origin (0,0) of a 2-D plane. There are N neighbors living at different points on the plane. Your goal is to visit exactly K neighb...

  • Q2. 

    Power Set Generation

    Given a sorted array of 'N' integers, your task is to generate the power set for this array. Each subset of this power set should be individually sorted.

    A power set of a set 'ARR' i...

Round 2 - Face to Face 

(2 Questions)

Round duration - 50 Minutes
Round difficulty - Hard

This was also a DSA round where I was asked to code only one of the questions but I eventually ended up coding both as I had some spare time and explained my approches very smoothly to the interviewer . This round went preety well .

  • Q1. 

    Roman Numeral to Integer Conversion

    Convert a string representing a Roman numeral into its integer equivalent and return the result.

    Explanation:

    Roman numerals are represented by seven different symbol...

  • Q2. 

    Pair Sum Problem Statement

    You are given an integer array 'ARR' of size 'N' and an integer 'S'. Your task is to find and return a list of all pairs of elements where each sum of a pair equals 'S'.

    Note:
    ...
Round 3 - Face to Face 

(2 Questions)

Round duration - 50 Minutes
Round difficulty - Medium

This was also a DSA round with 2 questions . One was implementation heavy and the other was related to recursion and so I handled it carefully so that my code does not run into TLE or Segmentation Fault.

  • Q1. 

    Arithmetic Expression Evaluation Problem Statement

    You are provided with a string expression consisting of characters '+', '-', '*', '/', '(', ')' and digits '0' to '9', representing an arithmetic express...

  • Q2. 

    Remove Duplicates from Sorted Array Problem Statement

    You are given a sorted integer array ARR of size N. Your task is to remove the duplicates in such a way that each element appears only once. The outpu...

Round 4 - Face to Face 

(2 Questions)

Round duration - 50 Minutes
Round difficulty - Medium

This was a typical System Design round where I was asked about the various features of Facebook and what sort of data structures and algorithms are used in implementing them .

  • Q1. How does Facebook store likes and dislikes?
  • Q2. How does Facebook implement graph search?
Round 5 - Face to Face 

(2 Questions)

Round duration - 50 Minutes
Round difficulty - Medium

This was a preety intense round as I was grilled more on my System Design concepts but eventually I was able to asnwers all the questions with some help from the interviewer.

  • Q1. What is Hadoop and why is it used?
  • Q2. How does Facebook Chat work?

Interview Preparation Tips

Eligibility criteriaAbove 7 CGPAFacebook interview preparation:Topics to prepare for the interview - Data Structures, Algorithms, System Design, Aptitude, OOPSTime required to prepare for the interview - 5 MonthsInterview preparation tips for other job seekers

Tip 1 : Must do Previously asked Interview as well as Online Test Questions.
Tip 2 : Go through all the previous interview experiences from Codestudio and Leetcode.
Tip 3 : Do at-least 2 good projects and you must know every bit of them.

Application resume tips for other job seekers

Tip 1 : Have at-least 2 good projects explained in short with all important points covered.
Tip 2 : Every skill must be mentioned.
Tip 3 : Focus on skills, projects and experiences more.

Final outcome of the interviewSelected

Skills evaluated in this interview

Top Facebook Software Developer Interview Questions and Answers

Q1. Saving Money Problem Statement Ninja is adventurous and loves traveling while being mindful of his expenses. Given a set of 'N' stations connected by 'M' trains, each train starting from station 'A' and reaching station 'B' at a cost of 'P'... read more
View answer (1)

Software Developer Interview Questions asked at other Companies

Q1. Maximum Subarray Sum Problem Statement Given an array of integers, determine the maximum possible sum of any contiguous subarray within the array. Example: Input: array = [34, -50, 42, 14, -5, 86] Output: 137 Explanation: The maximum sum is... read more
View answer (38)

Software Engineer interview

user image Clément Mihailescu

posted on 1 Dec 2021

I was interviewed before Sep 2020.

Round 1 - Coding Test 

(2 Questions)

Round duration - 75 minutes
Round difficulty - Easy

Timing it is around 11 am and Environment is good .

  • Q1. 

    Bird and Maximum Fruit-Gathering Problem Statement

    A ninja bird can gather fruits from trees arranged in a circle. Each tree has an associated fruit value. The bird can gather all the fruits from a tree i...

  • Q2. 

    Base 58 Conversion Problem Statement

    You are given a decimal number 'N'. Your task is to convert this number into a base 58 representation.

    The Base58 alphabet is defined by the following characters: “12...

Round 2 - Telephonic Call 

(2 Questions)

Round duration - 45 mintues
Round difficulty - Medium

Environment was very friendly but questions asked are hard

  • Q1. 

    Pair Sum Problem Statement

    You are provided with an array ARR consisting of N distinct integers in ascending order and an integer TARGET. Your objective is to count all the distinct pairs in ARR whose sum...

  • Q2. 

    Triplets with Given Sum Problem

    Given an array or list ARR consisting of N integers, your task is to identify all distinct triplets within the array that sum up to a specified number K.

    Explanation:

    A t...

Interview Preparation Tips

Professional and academic backgroundI applied for the job as SDE - Intern in DelhiEligibility criteria8 CGPA aboveFacebook interview preparation:Topics to prepare for the interview - Linked List, Binary Search Tree ,Queue, Array ,DP ,Graph ,RecursionTime required to prepare for the interview - 3 monthsInterview preparation tips for other job seekers

Tip 1 : Practice Atleast 500 Questions
Tip 2 : Do atleast 1 good projects
Tip 3 : You should be able to explain your project

Application resume tips for other job seekers

Tip 1 : Have some projects on resume. 
Tip 2 : Do not put false things on resume.

Final outcome of the interviewSelected

Skills evaluated in this interview

Top Facebook Software Developer Intern Interview Questions and Answers

Q1. Base 58 Conversion Problem Statement You are given a decimal number 'N'. Your task is to convert this number into a base 58 representation. The Base58 alphabet is defined by the following characters: “123456789ABCDEFGHJKLMNPQRSTUVWXYZabcdef... read more
Add answer

Software Developer Intern Interview Questions asked at other Companies

Q1. Sum of Maximum and Minimum Elements Problem Statement Given an array ARR of size N, your objective is to determine the sum of the largest and smallest elements within the array. Follow Up: Can you achieve the above task using the least numb... read more
View answer (4)

I was interviewed in May 2017.

Interview Questionnaire 

2 Questions

  • Q1. Tough situations during your working tenure
  • Ans. 

    Dealing with negative feedback and managing a social media crisis

    • Handling negative comments and reviews on social media platforms

    • Addressing customer complaints and resolving issues in a timely manner

    • Managing a social media crisis and developing a crisis communication plan

    • Monitoring online conversations and sentiment analysis to identify potential issues

    • Collaborating with cross-functional teams to provide accurate and t...

  • Answered by AI
  • Q2. Job role and responsibilities
  • Ans. 

    Social Media Analyst is responsible for monitoring, analyzing, and optimizing social media strategies to increase engagement and reach.

    • Monitor social media platforms for trends and insights

    • Analyze data to measure the success of social media campaigns

    • Optimize content and strategies based on performance metrics

    • Collaborate with marketing team to align social media efforts with overall goals

  • Answered by AI

Interview Preparation Tips

Round: Resume Shortlist
Experience: Based on the experience the concerned team processed my profile for further rounds
Tips: Should have a relevant experience/ skillsets for qualifying for this round

Round: HR Interview
Experience: Based on the experience the concerned team processed my profile for further rounds
Tips: Should have a relevant experience/ skillsets for qualifying for this round

Round: HR Interview
Experience: In this round, Hr asked me more about my job role and job responsibilities and also scenarios where I have shown my skills and how I have handled it. Also, asked me to talk for few minutes about a given topic.
Tips: Be ready to show case your talent. Be active and presence of mind helps here. Don't try to boast about your profile much.

Round: Group Discussion
Experience: We have given global warming as a topic to discuss on and it followed the same pattern as like normal interviews
Tips: Pitch up your ideas including facts and figures. Don't agrue with anyone and keep an eye on your communication skills.
Duration: 15 minutes

Round: Operations
Experience: In this round, I got in touch with concerned operations manager. She asked me more about the general aspects like why do you want to quit your job and what are your achievements during your work tenure. Where you ll in the next five years. What do you about current job profile and workspace.
Tips: Be honest and don't show your willingness to join the org. Keep it straight and simple.

Skills: Communication And Confidence

Social Media Analyst Interview Questions asked at other Companies

Q1. Do you know about our software? Have you ever used it?
View answer (2)

Facebook Interview FAQs

How many rounds are there in Facebook interview?
Facebook interview process usually has 2-3 rounds. The most common rounds in the Facebook interview process are Technical, Coding Test and HR.
How to prepare for Facebook 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 Facebook. The most common topics and skills that interviewers at Facebook expect are Basic, Management, Analytical, Consulting and Product Management.
What are the top questions asked in Facebook interview?

Some of the top questions asked at the Facebook interview -

  1. Given an “id” and a function getFriends(id) to get the list of friends of t...read more
  2. Given a hashmap M which is a mapping of characters to arrays of substitute char...read more
  3. Given a list of integer numbers, a list of symbols [+,-,*,/] and a target numbe...read more
How long is the Facebook interview process?

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

Tell us how to improve this page.

Facebook Interview Process

based on 34 interviews

Interview experience

4.4
  
Good
View more

Interview Questions from Similar Companies

Amazon Interview Questions
4.1
 • 5.1k Interviews
Google Interview Questions
4.4
 • 870 Interviews
Swiggy Interview Questions
3.8
 • 436 Interviews
LinkedIn Interview Questions
4.3
 • 80 Interviews
TikTok Interview Questions
4.0
 • 23 Interviews
YouTube Interview Questions
4.5
 • 9 Interviews
Twitter Interview Questions
4.1
 • 5 Interviews
Instagram Interview Questions
4.6
 • 5 Interviews
Pinterest Interview Questions
4.8
 • 3 Interviews
Snap Inc Interview Questions
2.0
 • 2 Interviews
View all

Facebook Reviews and Ratings

based on 160 reviews

4.4/5

Rating in categories

4.3

Skill development

4.3

Work-life balance

4.5

Salary

4.1

Job security

4.4

Company culture

4.2

Promotions

4.3

Work satisfaction

Explore 160 Reviews and Ratings
ASIC Engineer - Infra Specialist

Bangalore / Bengaluru

3-7 Yrs

Not Disclosed

ASIC Engineer, Design Verification

Bangalore / Bengaluru

3-7 Yrs

Not Disclosed

ASIC Engineer, Design

Bangalore / Bengaluru

2-6 Yrs

Not Disclosed

Explore more jobs
Software Engineer
73 salaries
unlock blur

₹47.1 L/yr - ₹102.7 L/yr

Software Developer
19 salaries
unlock blur

₹32.6 L/yr - ₹59.5 L/yr

Senior Software Engineer
19 salaries
unlock blur

₹15.4 L/yr - ₹63 L/yr

Data Scientist
17 salaries
unlock blur

₹59.9 L/yr - ₹150 L/yr

Manager
15 salaries
unlock blur

₹21 L/yr - ₹80 L/yr

Explore more salaries
Compare Facebook with

Google

4.4
Compare

Amazon

4.1
Compare

Apple

4.3
Compare

eBay

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