This page contains Meta placement papers from 2024 with previous year online assessment questions, solutions, and exam patterns.
| Section | Questions | Time | Difficulty | Focus Areas |
|---|
| Coding Problems | 3-4 | 60-90 min | Medium-Hard | Arrays, strings, trees, graphs |
Total: 3-4 problems, 60-90 minutes
Platform: Meta assessment platform
Languages Allowed: Python, C++, Java
Success Rate: ~15-20% cleared OA and advanced to interviews
Q1: Given a string containing just the characters ’(’, ’)’, ', ', ’[’ and ’]’, determine if the input string is valid.
Example:
Solution (Python):
mapping = {')': '(', '}': '{', ']': '['}
if not stack or stack.pop() != mapping[char]:
Time Complexity: O(n)
Space Complexity: O(n)
Q2: Merge k sorted linked lists and return it as one sorted list.
Solution (Python):
for i, lst in enumerate(lists):
heapq.heappush(heap, (lst.val, i, lst))
val, idx, node = heapq.heappop(heap)
heapq.heappush(heap, (node.next.val, idx, node.next))
Time Complexity: O(n log k)
Space Complexity: O(k)
Hiring Volume
- Total Hires: 800+ freshers in India
- E3: 600+ selections
- E4: 200+ selections
Salary Packages
- E3: ₹50-65 LPA total compensation
- E4: ₹80-100 LPA total compensation
- Coding Section is Critical: Must solve 3-4 coding problems correctly to advance
- DSA Focus: Strong emphasis on arrays, strings, trees, and graphs
- System Design: Heavy emphasis on system design for senior roles (E4+)
- Move Fast Culture: Behavioral questions focus on “Move Fast and Break Things” mindset
- Time Management: 60-90 minutes for 3-4 problems requires excellent speed
- Difficulty Level: Meta interviews rated 3.2/5 difficulty
- Success Rate: Only 15-20% cleared OA and advanced to interviews
- Social Media Scale: Focus on problems related to social media scale and real-time systems
Based on candidate experiences from 2024 Meta interviews:
2024 Interview Process:
- Online Assessment (60-90 minutes): 3-4 coding problems
- Technical Phone Screen (45-60 minutes): Coding problems, algorithm discussions
- Onsite Interviews (4-5 rounds, 45 minutes each):
- Coding rounds (2-3): Algorithms, data structures, problem-solving
- System Design round: Critical for senior roles (E4+) - social media scale
- Behavioral round: “Move Fast and Break Things” culture fit
Common 2024 Interview Topics:
- Coding: Arrays, strings, trees, graphs, valid parentheses, merge k sorted lists
- System Design: Facebook News Feed, social media systems, real-time systems, scalability
- Behavioral: Data-driven decision making, fast iteration, breaking things to learn
- Social Media Scale: Problems related to handling millions of users
2024 Interview Questions Examples:
- “Design Facebook News Feed” (System Design)
- “Clone Graph” (Coding)
- “Valid Parentheses” (Coding)
- “Merge K Sorted Lists” (Coding)
- “Tell me about a time you used data to persuade leadership to change a decision” (Behavioral)
Success Tips:
- Strong coding performance is essential - solve problems optimally
- Practice system design for social media scale - critical for E4+ roles
- Prepare examples demonstrating data-driven decision making
- Show “Move Fast” mindset - rapid iteration and learning from failures
- Practice social media scale problems - millions of users, real-time systems
- Be ready to discuss breaking things to learn and improve
Difficulty Rating: 3.2/5
For detailed interview experiences, visit Meta Interview Experience page.
- Master Coding Fundamentals: Focus on solving 3-4 coding problems correctly - arrays, strings, trees, graphs
- Practice Previous Year Papers: Solve Meta OA papers from 2020-2024 to understand patterns
- Time Management: Practice completing 3-4 coding problems in 60-90 minutes
- System Design Mastery: Heavy focus on system design for senior roles - social media scale
- LeetCode Practice: Solve 200+ LeetCode problems focusing on Meta tag (medium-hard difficulty)
- Social Media Systems: Practice designing systems for Facebook scale - News Feed, messaging, etc.
- Behavioral Prep: Prepare examples demonstrating “Move Fast” culture and data-driven decisions
- Mock Tests: Take timed practice tests to improve speed and accuracy
- Real-time Systems: Learn about real-time systems and handling millions of concurrent users
- Data-Driven Examples: Prepare examples showing how you used data to make decisions
Practice 2024 papers to understand Meta OA pattern and prepare effectively!