Upload Button Icon Add office photos
Engaged Employer

i

This company page is being actively managed by CleverTap Team. If you also belong to the team, you can get access from here

CleverTap Verified Tick

Compare button icon Compare button icon Compare
3.7

based on 58 Reviews

Filter interviews by

CleverTap Interview Questions and Answers for Experienced

Updated 15 May 2024

CleverTap Interview Experiences for Experienced

Popular Designations

4 interviews found

Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Coding Test 

2 pointer and Hashing

Round 2 - Technical 

(1 Question)

  • Q1. Sorting, DP and Graph
Round 3 - Design Round 

(1 Question)

  • Q1. Design a simple LRU cache
  • Ans. 

    LRU cache is a data structure that stores a fixed number of items and removes the least recently used item when full.

    • Use a doubly linked list to keep track of the order of items based on their usage.

    • Use a hashmap to quickly access items in the cache.

    • When an item is accessed, move it to the front of the linked list to mark it as the most recently used.

    • When adding a new item, check if the cache is full and remove the lea...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Go through previously asked question, they tend to repeat

Skills evaluated in this interview

Back End Engineer Interview Questions asked at other Companies

Q1. Do you have experience with SQL and concurrency
View answer (1)
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Referral and was interviewed before May 2023. There were 4 interview rounds.

Round 1 - Coding Test 

2 DSA leetcode medium question, if you're prepared then you can easily clear this round

Round 2 - One-on-one 

(1 Question)

  • Q1. Leetcode medium DSA question and then follow up on it
Round 3 - One-on-one 

(1 Question)

  • Q1. Questions around core JAVA, multithreading, concurrency, garbage collection
Round 4 - One-on-one 

(1 Question)

  • Q1. HR round with some behavioural questions. pretty easy and a light one

Interview Preparation Tips

Interview preparation tips for other job seekers - Be confident and prepared with DSA and Java fundamentals

Backend Developer Interview Questions asked at other Companies

Q1. Print a Binary Tree in Vertical OrderGiven a binary tree, return the vertical order traversal of the values of the nodes of the given tree. For each node at position (X, Y), (X-1, Y-1) will be its left child position while (X+1, Y-1) will b... read more
View answer (3)
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Hackerearth and was interviewed before Jan 2023. There was 1 interview round.

Round 1 - Technical 

(1 Question)

  • Q1. Basic Javascript related questions related to output

Interview Preparation Tips

Interview preparation tips for other job seekers - Have a good understanding of javascript concepts along with some basics of DSA

Front end Engineer Interview Questions asked at other Companies

Q1. Pair SumYou are given an integer array 'ARR' of size 'N' and an integer 'S'. Your task is to return the list of all pairs of elements such that each sum of elements of each pair equals 'S'. Note: Each pair should be sorted i.e the first val... read more
View answer (4)

Director Interview Questions & Answers

user image Anonymous

posted on 18 May 2021

I applied via Company Website and was interviewed in Nov 2020. There were 4 interview rounds.

Interview Questionnaire 

2 Questions

  • Q1. Current experience, team management queries, how do you give ratings, allocate bonus
  • Q2. Cultural fit, problem solving approach with real life use cases

Interview Preparation Tips

Interview preparation tips for other job seekers - Be yourself and try to give examples from actual experience

Director Interview Questions asked at other Companies

Q1. On what basis would you enhance the pipeline products of the company?
View answer (2)

CleverTap interview questions for popular designations

 Back End Engineer

 (2)

 Backend Developer

 (2)

 Devops Engineer

 (1)

 Director

 (1)

 Engineer- Customer Support

 (1)

 Front end Engineer

 (1)

 Java Developer

 (1)

 Onboarding Manager

 (1)

Interview questions from similar companies

Interview experience
1
Bad
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Selected Selected

I was interviewed in Jul 2024.

Round 1 - Coding Test 

Create an API using Notepad to check if a string is a palindrome or not.

Round 2 - One-on-one 

(1 Question)

  • Q1. Solid principal

Interview Preparation Tips

Interview preparation tips for other job seekers - Don't join worst company
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
Selected Selected

I applied via Naukri.com and was interviewed in Aug 2024. There were 3 interview rounds.

Round 1 - Coding Test 

DSA modrate and java question was asked

Round 2 - Coding Test 

Dsa and java related questions were asked

Round 3 - Technical 

(2 Questions)

  • Q1. Link list implementation
  • Ans. 

    A linked list is a data structure where each element points to the next element in the sequence.

    • Nodes contain data and a reference to the next node

    • Insertion and deletion can be done efficiently

    • Traversal starts from the head node

    • Example: Singly linked list, Doubly linked list

  • Answered by AI
  • Q2. Java Opps and some array based

Skills evaluated in this interview

Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Referral and was interviewed in Apr 2024. There were 4 interview rounds.

Round 1 - One-on-one 

(2 Questions)

  • Q1. About projects worked on, roles handled, current work structure.
  • Q2. APIs related questions, rest APIs, scrum related questions, backlog related questions.
Round 2 - Group Discussion 

Multiple hiring managers were on the call with detailed questions on the scrum ceremonies, backlog management, product related questions, Strategic management of product related questions.

Round 3 - One-on-one 

(2 Questions)

  • Q1. More detailed understanding of what I was expecting with related to work.
  • Q2. Detailed explanation on the product roadmap and what was expected of me.
  • Ans. 

    The product roadmap outlines the strategic vision and direction for the product, including key milestones and features.

    • Explain how the product roadmap aligns with the company's overall goals and objectives

    • Detail the timeline for key milestones and feature releases

    • Discuss how feedback from customers and stakeholders is incorporated into the roadmap

    • Explain how the roadmap is communicated to internal teams and external st

  • Answered by AI
Round 4 - HR 

(2 Questions)

  • Q1. Basic HR questions
  • Q2. Policy related explanation
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Coding Test 

Coding test and technical skills evaluation with an interviewer

Round 2 - One-on-one 

(1 Question)

  • Q1. Cultural Fitment
Round 3 - Technical 

(1 Question)

  • Q1. Design round HLD and LLD
  • Ans. 

    High Level Design (HLD) and Low Level Design (LLD) for a software system

    • Identify the major components and their interactions in HLD

    • Define the modules, classes, and functions in LLD

    • Consider scalability, performance, and security in both designs

    • Use UML diagrams to visualize the design

    • Document the design decisions and rationale

  • Answered by AI
Round 4 - One-on-one 

(1 Question)

  • Q1. Managerial Discussion round with the hiring manager
Round 5 - One-on-one 

(1 Question)

  • Q1. Managerial round with another team’s hiring manager
Round 6 - HR 

(1 Question)

  • Q1. HR discussion on location and joining date

Skills evaluated in this interview

Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via Naukri.com and was interviewed in Apr 2024. There were 2 interview rounds.

Round 1 - Technical 

(3 Questions)

  • Q1. Focus is on linux. Troubleshooting on linux regarding performance, CPU, disk etc
  • Q2. Linux commands to perform certain task if you know cloud basics of cloud SG VPC EC2 instance
  • Q3. Linux network troubleshooting and basics
Round 2 - Technical 

(1 Question)

  • Q1. Focused on advanced linux TS

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare well for linux thats all they look into

Content Sepcialist Interview Questions & Answers

Aurigo user image Anonymous

posted on 21 May 2024

Interview experience
1
Bad
Difficulty level
Moderate
Process Duration
4-6 weeks
Result
No response

I applied via Approached by Company and was interviewed in Apr 2024. There were 3 interview rounds.

Round 1 - One-on-one 

(1 Question)

  • Q1. It was completely on my resume.
Round 2 - Assignment 

I was asked to write a blog post of around 1000 words.

Round 3 - One-on-one 

(2 Questions)

  • Q1. I was asked to visit the office for a one-on-one interview.
  • Q2. It was completely on my resume

CleverTap Interview FAQs

How many rounds are there in CleverTap interview for experienced candidates?
CleverTap interview process for experienced candidates usually has 2-3 rounds. The most common rounds in the CleverTap interview process for experienced candidates are One-on-one Round, Technical and Coding Test.
How to prepare for CleverTap interview for experienced candidates?
Go through your CV in detail and study all the technologies mentioned in your CV. Prepare at least two technologies or languages in depth if you are appearing for a technical interview at CleverTap. The most common topics and skills that interviewers at CleverTap expect are Java, AWS, Ajax, Android and Communication Skills.
What are the top questions asked in CleverTap interview for experienced candidates?

Some of the top questions asked at the CleverTap interview for experienced candidates -

  1. Design a simple LRU ca...read more
  2. package for entry level DevOps engineer in CleverTap is similar to a Senior Sof...read more
  3. HTTP status codes, AtomicInteger, Why LinkedHashMap over Hash...read more
How long is the CleverTap interview process?

The duration of CleverTap interview process can vary, but typically it takes about less than 2 weeks to complete.

Tell us how to improve this page.

CleverTap Interview Process for Experienced

based on 3 interviews in last 1 year

Interview experience

4
  
Good

People are getting interviews through

based on 3 CleverTap interviews
Company Website
Job Portal
Referral
33%
33%
33%
1% candidates got the interview through other sources.
Moderate Confidence
?
Moderate Confidence means the data is based on a sufficient number of responses received from the candidates

Interview Questions from Similar Companies

Zoho Interview Questions
4.3
 • 501 Interviews
Freshworks Interview Questions
3.5
 • 153 Interviews
InMobi Interview Questions
3.6
 • 35 Interviews
MoEngage Interview Questions
4.0
 • 23 Interviews
Wingify Interview Questions
4.3
 • 20 Interviews
WebEngage Interview Questions
3.9
 • 14 Interviews
Kaleyra Interview Questions
4.2
 • 2 Interviews
View all

CleverTap Reviews and Ratings

based on 58 reviews

3.7/5

Rating in categories

3.4

Skill development

3.7

Work-Life balance

3.8

Salary & Benefits

3.3

Job Security

3.7

Company culture

3.2

Promotions/Appraisal

3.4

Work Satisfaction

Explore 58 Reviews and Ratings
Customer Success Manager
44 salaries
unlock blur

₹9 L/yr - ₹25 L/yr

Technical Account Manager
28 salaries
unlock blur

₹6 L/yr - ₹18.8 L/yr

Software Engineer
19 salaries
unlock blur

₹12 L/yr - ₹30 L/yr

Senior Software Engineer
17 salaries
unlock blur

₹17.1 L/yr - ₹41 L/yr

Customer Success Engineer
16 salaries
unlock blur

₹4.6 L/yr - ₹7.1 L/yr

Explore more salaries
Compare CleverTap with

MoEngage

4.0
Compare

Netcore Cloud Private Limited

4.3
Compare

WebEngage

3.9
Compare

Freshworks

3.5
Compare

Calculate your in-hand salary

Confused about how your in-hand salary is calculated? Enter your annual salary (CTC) and get your in-hand salary
Did you find this page helpful?
Yes No
write
Share an Interview