Skip to content

Twitter (X) Placement Papers 2024 - Previous Year Questions & Solutions

This page contains Twitter (X) placement papers from 2024 with previous year questions, solutions, and exam patterns.

SectionQuestionsTimeDifficulty
Coding Problems2-390 minMedium-Hard

Actual 2024 Twitter Coding Questions & Solutions

Section titled “Actual 2024 Twitter Coding Questions & Solutions”
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));
}
// Extract top N tweets
List<Tweet> result = new ArrayList<>();
while (!feed.isEmpty() && result.size() < limit) {
result.add(feed.poll());
}
return result;
}

Time Complexity: O(n log n)

Key Insights from 2024 Twitter (X) Online Assessment

Section titled “Key Insights from 2024 Twitter (X) Online Assessment”
  1. Coding Section is Critical: Must solve 2-3 coding problems correctly to advance
  2. Real-Time System Design: Strong emphasis on real-time systems and feed generation
  3. Time Management: 2-3 coding problems in 90 minutes requires excellent speed
  4. Success Rate: Only 10-15% cleared OA and advanced to interviews
  5. Platform: Twitter’s assessment platform or HackerRank
  6. Focus Areas: Arrays, trees, graphs, dynamic programming, real-time systems, feed algorithms

Based on candidate experiences from 2024 Twitter (X) interviews:

2024 Interview Process:

  1. Online Assessment (90 minutes): 2-3 coding problems
  2. Technical Phone Screen (45-60 minutes): Coding problems, algorithm discussions, system design
  3. 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.

  1. Master Coding Fundamentals: Focus on solving 2-3 coding problems correctly - arrays, trees, graphs, DP
  2. System Design Mastery: Learn real-time system design, feed generation, social media platforms
  3. Practice Previous Year Papers: Solve Twitter OA papers from 2020-2024 to understand patterns
  4. Time Management: Practice completing 2-3 coding problems in 90 minutes
  5. LeetCode Practice: Solve 200+ LeetCode problems focusing on arrays, strings, trees, graphs (medium-hard difficulty)
  6. Real-Time Systems: Understand real-time feed generation, social media algorithms, scalability
  7. Twitter Technologies: Learn feed generation, trending topics, real-time systems
  8. Behavioral Preparation: Prepare examples using STAR format - innovation, problem-solving, impact
  9. Mock Tests: Take timed practice tests to improve speed and accuracy
  10. 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 Interview Experience

Real interview experiences from successful candidates

Read Experiences →

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!