This page contains Licious 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: Inventory Management - 2024 Real Question
Problem: Manage product inventory with stock tracking and low stock alerts.
Solution (Java):
Map<String, Integer> inventory = new HashMap<>();
public void updateStock(String productId, int quantity) {
inventory.put(productId, inventory.getOrDefault(productId, 0) + quantity);
public boolean checkAvailability(String productId, int requested) {
return inventory.getOrDefault(productId, 0) >= requested;
public List<String> getLowStockProducts(int threshold) {
List<String> lowStock = new ArrayList<>();
for (Map.Entry<String, Integer> entry : inventory.entrySet()) {
if (entry.getValue() < threshold) {
lowStock.add(entry.getKey());
Time Complexity: O(1) for update/check, O(n) for low stock
- Coding Section is Critical: Must solve 2-3 coding problems correctly to advance
- E-commerce Focus: Strong emphasis on e-commerce systems, inventory management, supply chain
- 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: Licious assessment platform or HackerRank
- Focus Areas: Arrays, trees, graphs, dynamic programming, e-commerce systems, inventory management
Based on candidate experiences from 2024 Licious interviews:
2024 Interview Process:
- Online Assessment (90 minutes): 2-3 coding problems
- Technical Phone Screen (45-60 minutes): Coding problems, algorithm discussions, e-commerce concepts
- Onsite Interviews (4-5 rounds, 45-60 minutes each):
- Coding rounds (2-3): Algorithms, data structures, problem-solving
- System Design rounds: E-commerce platforms, inventory management, supply chain systems, order processing
- Behavioral rounds: Problem-solving approach, e-commerce passion, impact
Common 2024 Interview Topics:
- Coding: Arrays, strings, trees, graphs, dynamic programming, inventory management algorithms
- System Design: E-commerce platforms, inventory management, supply chain systems, order processing
- Behavioral: Problem-solving, e-commerce passion, teamwork, impact
- Licious Technologies: E-commerce platforms, inventory management, supply chain systems, order processing
Success Tips:
- Strong coding performance is essential - solve problems optimally
- Understand e-commerce concepts and inventory management systems
- Practice system design for e-commerce platforms and supply chain systems
- Prepare examples demonstrating problem-solving and e-commerce passion
- Learn Licious’s products and e-commerce technologies
- Practice explaining your thought process clearly
For detailed interview experiences, visit Licious Interview Experience page.
- Master Coding Fundamentals: Focus on solving 2-3 coding problems correctly - arrays, trees, graphs, DP
- E-commerce Knowledge: Strong understanding of e-commerce systems, inventory management, supply chain
- Practice Previous Year Papers: Solve Licious 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)
- E-commerce Focus: Practice problems related to e-commerce systems and inventory management
- System Design Mastery: Learn e-commerce platform design, inventory management, supply chain systems
- Licious Technologies: Learn e-commerce platforms, inventory management, supply chain systems, order processing
- Behavioral Preparation: Prepare examples using STAR format - problem-solving, e-commerce passion, impact
- Mock Tests: Take timed practice tests to improve speed and accuracy
Licious 2025 Papers
Latest Licious placement papers with current year questions
View 2025 Papers →
Licious Coding Questions
Complete collection of Licious coding problems with solutions
View Coding Questions →
Licious Interview Experience
Real interview experiences from successful candidates
Read Experiences →
Licious Preparation Guide
Comprehensive preparation strategy for Licious placement
View Preparation Guide →
Licious Main Page
Complete Licious placement guide with eligibility, process, and salary
View Main Page →
Practice 2024 papers to understand Licious OA pattern and prepare effectively!