Zillious Interview Experience | Set 3 (On-Campus)
Question Details
Zillious came to our campus on 28th October 2015 for recruitment. Round 1 was held at our college premises and the rest of the process at their office. The result was decl...
Full Details
Zillious came to our campus on 28 th October 2015 for recruitment. Round 1 was held at our college premises and the rest of the process at their office. The result was declared after four days. In total 3 students got placed in the company.
Round 1 Written Round It consisted of 20 MCQ questions to be answered in 30 minutes. Questions were based on Time and Work, Logical Reasoning, Operating System, Computer Networks, Digital Logic and Computer Design (Count the no. of 1 bits in the binary representation of 34096 + 15256 +.. something type question). And after that 2 coding questions were given which were meant to be written on paper within 1 hour. Coding Questions:- There are many frogs in the Bob’s garden. Frog F is initially at position (0, 0) and wants to communicate with some other frog. This frog F can move in only two ways: Turn to its left and move forward. Turn to its right and move forward. Write a function that takes coordinate (x, y) as input and calculate the minimum no. of moves that the frog would make to reach the destination. Assume the frog is always initially at position (0, 0). Find longest palindromic substring:
Example:
INPUT: ZILLIOUSOUILZIL OUTPUT: LIOUSOUIL
Round 2 Face to face technical round 8 students were shortlisted. Puzzle 1: 3 types of employees are there: TYPE A: always speaks truth, and says that he has 6 legs TYPE B: always speaks a lie, and says that he has 7 legs TYPE C: always speaks truth, and says that he has 8 legs Now there are 4 employees named W, X, Y, Z W says: in all we have 24 legs. X says: in all we have 27 legs. Y says: in all we have 28 legs. Z says: in all we have 30 legs. Ques. 1. Which one of them is speaking lie? Ques. 2. Which one of them is speaking truth? Puzzle 2: There are n seats in an airplane. All seats are booked. Now one of the n passengers loses his ticket. He goes and sits on any random seat. The passengers with tickets enter the airplane, and sit on their seat if they find it empty otherwise they sit on any random seat. What is the probability that nth passenger sits on his seat. This was a coding question. You have an array of integers. Find the first pair of integers whose sum is equal to k. I gave a pruned tree solution but the time complexity was O(n)^2. The interviewer was expecting me to improve on the basis of time complexity but I couldn’t. There is an array whose configuration is as follows a[0….k-1, k, k+1…..n-1], where a[0], a[1], a[2], ……a[k-1] < a[k] < a[k+1], a[k+2], …… a[n-1]. [Hint]: Find k in O(n) and memory is not an issue. Round 3 5 students were shortlisted from the previous round. All of us were given a question to be coded. It was based on Dynamic Programming. We were given 1 hr. Here is the problem. Ques. Let us define a multiplication operation(×) on three symbols a; b; c according to the following table: Therefore, a × a = b , a × b = b etc. Find an efficient algorithm that examines a string of these symbols, say bbbbac, and decides whether or not it is possible to parenthesize the string in such a way that the value of the resulting expression is a. For example, on input bbbbac your algorithm should return yes because ((b(bb))(ba))c = a. Source: https://stackoverflow.com/questions/8652447/parenthesizing-a-string-so-that-expression-takes-a-given-value 3 students were shortlisted based on the performance in this round and I was not one of them. All Practice Problems for Zillious !
About This Question
This is a reported interview question from a zillious interview for a swe role during the phone screen round reported in 2025.
It covers the following topics: Arrays, Strings, Trees, Dynamic Programming, Probability Stats, Os, Networking .
About Zillious Interview Reports
This question was reported by a candidate who interviewed at Zillious. 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 Zillious are the higher-signal extractions to take from this report.
For broader preparation context, the Zillious 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 Zillious reports consistently are the ones worth investing in; one-off niche problems are not.
During Your Zillious 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 Zillious 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.