Komli Media Interview Experience
Question Details
I recently attended Komli media interview and wanted to share the experience. First Round(Written)1. Midas has boxes in three sizes: large, medium, and small. He puts 1...
Full Details
I recently attended Komli media interview and wanted to share the experience. First Round(Written) 1. Midas has boxes in three sizes: large, medium, and small. He puts 11 large boxes on a table. He leaves some of these boxes empty, and in all the other boxes he puts 8 medium boxes. He leaves some of these medium boxes empty, and in all the other medium boxes he puts 8 (empty) small boxes. Now, 102 of all the boxes on the table are empty. How many boxes has Midas used in total? See the answer here : https://www.easycalculation.com/puzzles/hard/boxes.php 2. You are given a file which contains a very bit sequence of 0 and 1 and it is sorted. Hence all the zeros are in front of the ones.One needs to find the first orrcurance of 1 in the file(return the position). The only method to access the file is through a method whose signature is -- int getBitAtPosition(int position) -- which returns the bit at the specified position in the file. 3. Given a string find the short version of the string depending on the given parameter. method signature : shortenString(String s, int n) ex: s = aaabbbaa n=2 output = aabbaa s= aaabbaacccc n=1 output = abac Basically truncate the consecutive run of a character if it exceeds n. 4. write a function to divide two numbers upto a precision of 4 decimal places. One can only use the addition/subtraction operators. 5. Charles walks over a railway-bridge. At the moment that he is just ten meters away from the middle of the bridge, he hears a train coming from behind. At that moment, the train, which travels at a speed of 90 km/h, is exactly as far away from the bridge as the bridge measures in length. Without hesitation, Charles rushes straight towards the train to get off the bridge. In this way, he misses the train by just four meters! If Charles would, however, have rushed exactly as fast in the other direction, the train would have hit him eight meters before the end of the bridge. Answer : http://dailybrainteaser.blogspot.com/2011/08/train-puzzle.html Second Round : Discussion on the problems in the first round and optimization. Lot of discussion on the projects mentioned in the CV. Third round : 1. Given an array of integers, for each position find out the product of the remaining elements in the array. You are not allowed to use the division operator. Calculate the same thing for all the positions and out in a different array. ex:
input = {4,3,2,4}
output = {24,32,48,24} 2. Give a number n, find the all the possible sets of number whose sum will be n. A number can repeated within a set. ex :
input n=4 output : {1,1,1,1},{1,1,2},{1,3},{2,2},{4}
About This Question
This is a reported interview question from a komli media interview for a swe role reported in 2025.
It covers the following topics: Arrays, Strings, Networking .
Difficulty rating: Hard
Topics
About Komli Media Interview Reports
This question was reported by a candidate who interviewed at Komli Media. LeakCode aggregates interview reports from 10+ sources, including 1Point3Acres, Glassdoor, LeetCode Discuss, Blind, Reddit, Indeed, and Nowcoder. Each report is translated where necessary, deduplicated against existing entries, and tagged by company, role, round type, and reporting date.
Use this question as one calibration data point, not a memorization target. Companies typically rotate their question pools every 2-4 months; the exact wording of a 2024 question may differ from what you encounter today. The underlying pattern, difficulty level, and follow-up depth at Komli Media are the higher-signal extractions to take from this report.
For broader preparation context, the Komli Media interview process typically includes a recruiter screen, one or two technical phone screens, and a 4-5 round on-site loop covering coding, system design (at L4+ levels), and behavioral. Reports tagged on LeakCode show the round-by-round distribution and typical difficulty calibration. To browse questions filtered by round type and seniority, use the company hub linked above.
How To Practice This Type of Question
Solve similar problems on LeetCode under timed conditions (25-35 minutes per medium difficulty). The goal is pattern recognition: recognize the underlying technique (sliding window, two-pointer, BFS, memoized recursion, etc.) within 60-90 seconds of reading. Strong candidates verbalize their hypothesis out loud before coding, then iterate based on feedback. Weak candidates dive into implementation immediately, lose time on the wrong approach, and run out of time for follow-ups.
Companies update their question pools every 2-4 months. The exact wording of any given question may have been retired by the time you interview. Focus your prep on the pattern, not the specific problem. The patterns that appear in Komli Media reports consistently are the ones worth investing in; one-off niche problems are not.
During Your Komli Media Round
Apply the standard interview round template: clarify requirements (2-3 minutes), state your approach out loud and confirm direction with the interviewer (3-5 minutes), code with narration (15-25 minutes), test with concrete examples including edge cases (5 minutes), discuss optimization or trade-offs if time permits (5 minutes). This template is universally accepted across FAANG and adjacent companies; deviating from it produces weaker interviewer feedback signal.
The single most predictive failure mode in Komli Media reports tagged "no hire": not asking clarifying questions. Interviewers are explicitly trained to weight this. Strong candidates ask 3-5 clarifying questions even on problems that look obvious; weak candidates dive into code immediately. The clarifying-question check is often the first signal recorded in the interviewer's written notes.