This page contains Twitter (X) placement papers from 2024 with previous year questions, solutions, and exam patterns.
| Section | Questions | Time | Difficulty |
|---|
| Coding Problems | 2-3 | 90 min | Medium-Hard |
Q1: Tweet Feed Generation - 2024 Real Question
Problem: Generate a personalized tweet feed from multiple sources efficiently.
Solution (Java):
public List<Tweet> generateFeed(User user, int limit) {
PriorityQueue<Tweet> feed = new PriorityQueue<>((a, b) ->
Long.compare(b.timestamp, a.timestamp));
// Add tweets from followed users
for (User followed : user.getFollowing()) {
feed.addAll(getRecentTweets(followed, limit));
List<Tweet> result = new ArrayList<>();
while (!feed.isEmpty() && result.size() < limit) {
Time Complexity: O(n log n)
- Coding Section is Critical: Must solve 2-3 coding problems correctly to advance
- Real-Time System Design: Strong emphasis on real-time systems and feed generation
- Time Management: 2-3 coding problems in 90 minutes requires excellent speed
- Success Rate: Only 10-15% cleared OA and advanced to interviews
- Platform: Twitter’s assessment platform or HackerRank
- Focus Areas: Arrays, trees, graphs, dynamic programming, real-time systems, feed algorithms
Based on candidate experiences from 2024 Twitter (X) interviews:
2024 Interview Process:
- Online Assessment (90 minutes): 2-3 coding problems
- Technical Phone Screen (45-60 minutes): Coding problems, algorithm discussions, system design
- Onsite Interviews (4-5 rounds, 45-60 minutes each):
- Coding rounds (2-3): Algorithms, data structures, problem-solving
- System Design rounds: Real-time feed systems, social media platforms, scalability
- Behavioral rounds: Problem-solving approach, innovation, teamwork
Common 2024 Interview Topics:
- Coding: Arrays, strings, trees, graphs, dynamic programming, feed generation algorithms
- System Design: Real-time feed systems, social media platforms, scalability, distributed systems
- Behavioral: Problem-solving, innovation, teamwork, impact
- Twitter Technologies: Feed generation, real-time systems, social media algorithms
2024 Interview Questions Examples:
- Tweet Feed Generation
- Design Twitter’s feed system (System Design)
- Design Twitter’s trending topics system (System Design)
- Real-time system design questions
Success Tips:
- Strong coding performance is essential - solve problems optimally
- Practice system design for real-time systems and social media platforms
- Prepare examples demonstrating innovation and problem-solving
- Learn Twitter’s products and real-time systems
- Practice explaining your thought process clearly
For detailed interview experiences, visit Twitter Interview Experience page.
- Master Coding Fundamentals: Focus on solving 2-3 coding problems correctly - arrays, trees, graphs, DP
- System Design Mastery: Learn real-time system design, feed generation, social media platforms
- Practice Previous Year Papers: Solve Twitter OA papers from 2020-2024 to understand patterns
- Time Management: Practice completing 2-3 coding problems in 90 minutes
- LeetCode Practice: Solve 200+ LeetCode problems focusing on arrays, strings, trees, graphs (medium-hard difficulty)
- Real-Time Systems: Understand real-time feed generation, social media algorithms, scalability
- Twitter Technologies: Learn feed generation, trending topics, real-time systems
- Behavioral Preparation: Prepare examples using STAR format - innovation, problem-solving, impact
- Mock Tests: Take timed practice tests to improve speed and accuracy
- Distributed Systems: Understand distributed systems, scalability, and real-time processing
Twitter 2025 Papers
Latest Twitter placement papers with current year questions
View 2025 Papers →
Twitter Coding Questions
Complete collection of Twitter coding problems with solutions
View Coding Questions →
Twitter Interview Experience
Real interview experiences from successful candidates
Read Experiences →
Twitter Preparation Guide
Comprehensive preparation strategy for Twitter placement
View Preparation Guide →
Twitter Main Page
Complete Twitter placement guide with eligibility, process, and salary
View Main Page →
Practice 2024 papers to understand Twitter OA pattern and prepare effectively!
Practice Twitter 2024 questions regularly!