This page contains Unacademy 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: Video Playlist Management - 2024 Real Question
Problem: Design a system to manage video playlists with add, remove, and get operations.
Solution (Java):
Map<String, List<String>> playlists = new HashMap<>();
public void addVideo(String playlistId, String videoId) {
playlists.putIfAbsent(playlistId, new ArrayList<>());
if (!playlists.get(playlistId).contains(videoId)) {
playlists.get(playlistId).add(videoId);
public void removeVideo(String playlistId, String videoId) {
if (playlists.containsKey(playlistId)) {
playlists.get(playlistId).remove(videoId);
public List<String> getPlaylist(String playlistId) {
return playlists.getOrDefault(playlistId, new ArrayList<>());
Time Complexity: O(n) for operations
- Coding Section is Critical: Must solve 2-3 coding problems correctly to advance
- Video Streaming Focus: Strong emphasis on video streaming systems, playlist management, content delivery
- Time Management: 2-3 problems in 90 minutes requires excellent speed and accuracy
- Success Rate: Only 10-15% cleared OA and advanced to interviews
- Platform: Unacademy assessment platform or HackerRank
- Focus Areas: Arrays, trees, graphs, dynamic programming, video streaming systems, playlist management
Based on candidate experiences from 2024 Unacademy interviews:
2024 Interview Process:
- Online Assessment (90 minutes): 2-3 coding problems
- Technical Phone Screen (45-60 minutes): Coding problems, algorithm discussions, video streaming concepts
- Onsite Interviews (4-5 rounds, 45-60 minutes each):
- Coding rounds (2-3): Algorithms, data structures, problem-solving
- System Design rounds: Video streaming platforms, playlist management, content delivery, live classes
- Behavioral rounds: Problem-solving approach, education passion, impact
Common 2024 Interview Topics:
- Coding: Arrays, strings, trees, graphs, dynamic programming, playlist algorithms
- System Design: Video streaming platforms, playlist management, content delivery, live classes
- Behavioral: Problem-solving, education passion, teamwork, impact
- Unacademy Technologies: Video streaming platforms, playlist management, content delivery, live classes
2024 Interview Questions Examples:
- Video Playlist Management
- Design Unacademy’s video streaming platform (System Design)
- Design Unacademy’s playlist management system (System Design)
- Video streaming and content delivery algorithms
Success Tips:
- Strong coding performance is essential - solve problems optimally
- Understand video streaming concepts and content delivery systems
- Practice system design for video streaming platforms and playlist management
- Prepare examples demonstrating problem-solving and education passion
- Learn Unacademy’s products and video streaming technologies
- Practice explaining your thought process clearly
For detailed interview experiences, visit Unacademy Interview Experience page.
- Master Coding Fundamentals: Focus on solving 2-3 coding problems correctly - arrays, trees, graphs, DP
- Video Streaming Knowledge: Strong understanding of video streaming systems, playlist management, content delivery
- Practice Previous Year Papers: Solve Unacademy 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)
- Video Streaming Focus: Practice problems related to video streaming systems and playlist management
- System Design Mastery: Learn video streaming platform design, playlist management, content delivery
- Unacademy Technologies: Learn video streaming platforms, playlist management, content delivery, live classes
- Behavioral Preparation: Prepare examples using STAR format - problem-solving, education passion, impact
- Mock Tests: Take timed practice tests to improve speed and accuracy
Unacademy 2025 Papers
Latest Unacademy placement papers with current year questions
View 2025 Papers →
Unacademy Coding Questions
Complete collection of Unacademy coding problems with solutions
View Coding Questions →
Unacademy Interview Experience
Real interview experiences from successful candidates
Read Experiences →
Unacademy Preparation Guide
Comprehensive preparation strategy for Unacademy placement
View Preparation Guide →
Unacademy Main Page
Complete Unacademy placement guide with eligibility, process, and salary
View Main Page →
Practice 2024 papers to understand Unacademy OA pattern and prepare effectively!