J'ai postulé via une agence de recrutement. J'ai passé un entretien chez Taboola (Tel Aviv-Yafo) en mars 2022
Entretien
first interview they ask several questions - they give you the questions before hand.
after this, another step is a coding assignment - to write a text base calculator.
this assignment is very very long!!! (took me 10 hours)
the third interview is about the coding assignment, and on other question that they sent beforehand.
overall this process was very tedious and demanded a lot from me.
Questions d'entretien [1]
Question 1
You're tasked with writing a spec for a generic local cache with the following property: If the cache is asked for
a key that it doesn't contain, it should fetch the data using an externally provided function that reads the data
from another source (database or similar).
What features do you think such a cache should offer? How, in general lines, would you implement?
You are tasked with improving the efficiency of a cache heavy system, which has the following
properties/architecture:
The system has 2 components, a single instance backend and several frontend instances. 1. The backend
generates data and writes it to a relational database that is replicated to multiple remote data centers.
2. The frontends handle client requests (common web traffic based) by reading data from the database
and serving it. Data is stored in a local cache for an hour before it expires and has to be retrieved
again. The cache’s eviction policy is LRU based.
There are two issues with the implementation above:
1. It turns out that many of the database accesses are redundant because the underlying data didn't
actually change.
2. On the other hand, a change isn't reflected until the cache TTL elapses, causing staleness issues.
Offer a solution that fixes both of these problems. How would the solution change if the data was stored in
Cassandra and not a classic database?
J'ai postulé en ligne. J'ai passé un entretien chez Taboola (Taipei) en mars 2026
Entretien
only participated in the first round interview,
- introduced the company and the team
- discussion about resume and background
- challenging things I have done
- asked some java questions, need to be familiar with standard library
Questions d'entretien [1]
Question 1
Implemented a Java class using only the standard library.
J'ai postulé via un recruteur. J'ai passé un entretien chez Taboola
Entretien
Call with HR followed by call with team lead and set up a technical interview for 1.5h.
Interview was 3 parts:
1 - told me about taboola
2 - tell me about a project you worked on
3 - technical question.
Part 2 & 3 were very un professional, in part 2 they kept rushing me telling me i don't have time (in total 5-7 min)
Part 3 was also not good, while i was trying to think about the problem they kept interrupting me.
Would not recommend applying here
We're sorry your recent interview experience with us was disappointing. We'd love to get additional information and feedback on what happened. Would you please email us at sharefeedback@taboola.com?
J'ai postulé en ligne. Le processus a pris 2 semaines. J'ai passé un entretien chez Taboola (Ramat Gan) en mai 2024
Entretien
Their salary offers are very not competitive, seems like very low RSU. The team lead seemed un professional. They Wanted me to interview at Java and didn't accept other languages. I Don't recommend.
Questions d'entretien [1]
Question 1
Implement queue using array in a language of your choice.