Upload Button Icon Add office photos

Filter interviews by

Taboola Software Engineer Interview Questions and Answers

Updated 20 Oct 2024

Taboola Software Engineer Interview Experiences

1 interview found

Interview experience
3
Average
Difficulty level
Easy
Process Duration
2-4 weeks
Result
Selected Selected

I applied via Campus Placement

Round 1 - Technical 

(1 Question)

  • Q1. JS basic questions
Round 2 - Behavioral 

(2 Questions)

  • Q1. What is API ?
  • Ans. 

    API stands for Application Programming Interface. It is a set of rules and protocols that allows different software applications to communicate with each other.

    • APIs define the methods and data formats that applications can use to request and exchange information.

    • They allow developers to access the functionality of a software application or service without needing to understand its internal workings.

    • Examples of APIs inc...

  • Answered by AI
  • Q2. What does Taboola do ?
  • Ans. 

    Taboola is a content recommendation platform that helps publishers and advertisers reach their target audience.

    • Content recommendation platform

    • Helps publishers and advertisers reach target audience

    • Provides personalized content recommendations based on user behavior

  • Answered by AI

Skills evaluated in this interview

Interview questions from similar companies

Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(4 Questions)

  • Q1. Data structure and algorithm
  • Q2. Some tricky logical question
  • Q3. Stack and queue
  • Q4. Some basic question about system Design
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
-

I applied via Referral and was interviewed in Jun 2024. There were 3 interview rounds.

Round 1 - Coding Test 

Hackerrank Coding Test, Leetcode medium questions

Round 2 - Coding Test 

HLD test, was asked to design an online coding platform like leetcode

Round 3 - Technical 

(2 Questions)

  • Q1. Most interesting project you have worked on
  • Q2. How do you handle conflict at workplace

Interview Preparation Tips

Interview preparation tips for other job seekers - - Prepare leetcode medium
- Prepare HLD well
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(2 Questions)

  • Q1. Find the leaves of the tree.
  • Ans. 

    Leaves of a tree are the nodes with no children in a tree data structure.

    • Traverse the tree and identify nodes with no children.

    • Use depth-first search or breadth-first search algorithms to find leaves.

    • Examples: In a binary tree, leaves are nodes with no left or right child.

    • In a general tree, leaves are nodes with no children in their child list.

  • Answered by AI
  • Q2. Find the LCA of tree.
  • Ans. 

    The Lowest Common Ancestor (LCA) of a tree is the shared ancestor of two nodes farthest from the root.

    • Start from the root and traverse the tree to find the paths from the root to the two nodes.

    • Compare the paths to find the last common node between them, which is the LCA.

    • If one of the nodes is an ancestor of the other, then the ancestor node is the LCA.

  • Answered by AI
Round 2 - HR 

(2 Questions)

  • Q1. What projects you worked upon?
  • Ans. 

    I have worked on projects involving web development, mobile app development, and data analysis.

    • Developed a web application using React and Node.js for a client in the e-commerce industry

    • Created a mobile app using Flutter for a startup in the healthcare sector

    • Performed data analysis on customer behavior using Python and SQL for a marketing company

  • Answered by AI
  • Q2. What internships you did?
  • Ans. 

    I completed internships at ABC Company and XYZ Company during my undergraduate studies.

    • Interned at ABC Company working on web development projects

    • Interned at XYZ Company assisting with software testing and quality assurance

    • Gained hands-on experience in coding, debugging, and problem-solving

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare tree and graph well.

Skills evaluated in this interview

Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Coding Test 

1 hour on data structures and algorithms

Round 2 - One-on-one 

(1 Question)

  • Q1. Build Netflix architecture
  • Ans. 

    Netflix architecture is a scalable microservices-based system with a focus on high availability and performance.

    • Use microservices architecture to break down the system into smaller, independent services

    • Implement a content delivery network (CDN) for efficient content distribution

    • Utilize cloud services like AWS for scalability and reliability

    • Implement a recommendation engine for personalized content suggestions

    • Use a dist...

  • Answered by AI
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Coding Test 

Some database questions,some java questions .

Round 2 - Technical 

(3 Questions)

  • Q1. What is the difference between javascript and jQuery.
  • Ans. 

    JavaScript is a programming language used for web development, while jQuery is a library built with JavaScript to simplify HTML document traversal and manipulation.

    • JavaScript is a programming language, while jQuery is a library written in JavaScript.

    • JavaScript can be used for a wide range of tasks, while jQuery is mainly used for DOM manipulation and event handling.

    • JavaScript is a core technology for web development, w...

  • Answered by AI
  • Q2. Define different types of join
  • Ans. 

    Different types of joins are used in SQL to combine rows from two or more tables based on a related column between them.

    • Inner Join: Returns rows when there is at least one match in both tables.

    • Left Join (or Left Outer Join): Returns all rows from the left table and the matched rows from the right table.

    • Right Join (or Right Outer Join): Returns all rows from the right table and the matched rows from the left table.

    • Full ...

  • Answered by AI
  • Q3. Define multithreading concept and exception handling.
  • Ans. 

    Multithreading allows multiple threads to run concurrently, while exception handling deals with errors in a program.

    • Multithreading involves running multiple threads simultaneously to improve performance and responsiveness.

    • Threads share the same memory space but have their own program counter and registers.

    • Exception handling is a mechanism to handle errors or exceptional situations in a program.

    • It helps prevent the prog...

  • Answered by AI

Skills evaluated in this interview

Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - HR 

(1 Question)

  • Q1. Tell me about yourself
Interview experience
5
Excellent
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via LinkedIn and was interviewed in May 2024. There was 1 interview round.

Round 1 - Coding Test 

Got a leetcode easy question

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare leetcode easy thoroughly
Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Coding Test 

Online assessment, leet code easy

Round 2 - Coding Test 

Live coding assessment, leet code medium

Round 3 - Aptitude Test 

Behavioral asking on past experience

Interview experience
3
Average
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
No response

I applied via Company Website and was interviewed in Sep 2023. There were 2 interview rounds.

Round 1 - Coding Test 

Implement an iterator to flatten 2D vector

Round 2 - One-on-one 

(1 Question)

  • Q1. Find shortest path to get all keys
  • Ans. 

    Use Dijkstra's algorithm to find the shortest path to get all keys

    • Implement Dijkstra's algorithm to find the shortest path in a graph

    • Consider the keys as nodes in the graph and the paths between keys as edges

    • Keep track of the keys collected and update the shortest path accordingly

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Practice algorithmic questions

Skills evaluated in this interview

Taboola Interview FAQs

How many rounds are there in Taboola Software Engineer interview?
Taboola interview process usually has 2 rounds. The most common rounds in the Taboola interview process are Technical and Behavioral.
What are the top questions asked in Taboola Software Engineer interview?

Some of the top questions asked at the Taboola Software Engineer interview -

  1. What does Taboola d...read more
  2. What is AP...read more
  3. JS basic questi...read more

Tell us how to improve this page.

Taboola Software Engineer Interview Process

based on 1 interview

Interview experience

3
  
Average
View more

Taboola Software Engineer Reviews and Ratings

based on 1 review

5.0/5

Rating in categories

5.0

Skill development

5.0

Work-life balance

5.0

Salary

5.0

Job security

5.0

Company culture

5.0

Promotions

5.0

Work satisfaction

Explore 1 Review and Rating
Technical Support Engineer
19 salaries
unlock blur

₹7 L/yr - ₹12 L/yr

Implementation Specialist
11 salaries
unlock blur

₹5.8 L/yr - ₹15 L/yr

AD Operations Specialist
5 salaries
unlock blur

₹9.3 L/yr - ₹10 L/yr

Team Lead
5 salaries
unlock blur

₹16.5 L/yr - ₹18.3 L/yr

L2 Technical Support Engineer
5 salaries
unlock blur

₹6 L/yr - ₹15.5 L/yr

Explore more salaries
Compare Taboola with

Outbrain Solutions

4.8
Compare

AdPushup

3.7
Compare

Amazon

4.1
Compare

Uber

4.2
Compare
Did you find this page helpful?
Yes No
write
Share an Interview