Upload Button Icon Add office photos

Filter interviews by

Cardlytics Interview Questions and Answers

Updated 28 Aug 2022

Cardlytics Interview Experiences

2 interviews found

Round 1 - Aptitude Test 

Hacker Rank test is compulsory

Round 2 - Coding Test 

Coding test live by sharing screen. duration time is 30mins

Round 3 - Technical 

(1 Question)

  • Q1. Technical round 2 with in-depth technical questions and live programming duration 1hr
Round 4 - Technical 

(1 Question)

  • Q1. Project Lead explain about projects and company

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare well before attending this company

Software Engineer Interview Questions asked at other Companies

Q1. Bridge and torch problem : Four people come to a river in the night. There is a narrow bridge, but it can only hold two people at a time. They have one torch and, because it's night, the torch has to be used when crossing the bridge. Person... read more
View answer (208)

I applied via Naukri.com and was interviewed in Jul 2022. There was 1 interview round.

Round 1 - One-on-one 

(2 Questions)

  • Q1. .net core api authentication
  • Q2. .net core exception handling

Interview Preparation Tips

Interview preparation tips for other job seekers - to be good on .net core web apis, docker, k8s aws

Software Engineer Interview Questions asked at other Companies

Q1. Bridge and torch problem : Four people come to a river in the night. There is a narrow bridge, but it can only hold two people at a time. They have one torch and, because it's night, the torch has to be used when crossing the bridge. Person... read more
View answer (208)

Interview questions from similar companies

I applied via Campus Placement and was interviewed in Aug 2021. There was 1 interview round.

Interview Questionnaire 

1 Question

  • Q1. Questions on Projects.

Interview Preparation Tips

Interview preparation tips for other job seekers - Interviewers are very friendly.
Brush up technical concepts and coding
Interview experience
4
Good
Difficulty level
Easy
Process Duration
-
Result
No response

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

Round 1 - One-on-one 

(2 Questions)

  • Q1. What are synthetic Events?
  • Ans. 

    Synthetic Events are events that are created by the browser to mimic real user events.

    • Synthetic Events are used in React to handle events in a consistent manner across different browsers.

    • They are created by React to wrap native browser events and provide additional functionality.

    • Examples include onClick, onChange, and onSubmit events in React.

  • Answered by AI
  • Q2. What is event bubbling?
  • Ans. 

    Event bubbling is the process where an event triggered on a child element is propagated up through its parent elements.

    • Event bubbling allows a single event handler to be attached to a parent element, which will be triggered for all its children.

    • When an event occurs on a child element, it first runs the event handlers on the child, then on its parent, and so on up the DOM tree.

    • Event bubbling can be stopped using event.s

  • Answered by AI

Skills evaluated in this interview

Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
No response
Round 1 - Resume Shortlist 
Pro Tip by AmbitionBox:
Double-check your resume for any spelling mistakes. The recruiter may consider spelling mistakes as careless behavior or poor communication skills.
View all tips
Round 2 - One-on-one 

(1 Question)

  • Q1. Laravel framework question.
Round 3 - One-on-one 

(1 Question)

  • Q1. Laravel framework question

Interview Preparation Tips

Interview preparation tips for other job seekers - Avoid this company
Round 1 - Resume Shortlist 
Pro Tip by AmbitionBox:
Properly align and format text in your resume. A recruiter will have to spend more time reading poorly aligned text, leading to high chances of rejection.
View all tips
Round 2 - Coding Test 

Easy leetcode data structure question

Round 3 - Technical 

(1 Question)

  • Q1. Write working code for calling a rest API, design rate limiter
  • Ans. 

    Code for calling a REST API and designing a rate limiter

    • Use a library like requests or axios to make the API call

    • Implement a token bucket algorithm for rate limiting

    • Set a maximum number of requests per second and queue excess requests

    • Consider using a distributed rate limiter for scalability

  • Answered by AI
Round 4 - Technical 

(1 Question)

  • Q1. Design Database schema for instagram
  • Ans. 

    Design a database schema for Instagram.

    • Create tables for users, posts, comments, likes, and follows.

    • Use primary and foreign keys to establish relationships between tables.

    • Store user data such as username, email, and password securely.

    • Include fields for post content, location, and timestamp.

    • Track likes and comments on posts.

    • Implement a notification system for follows and likes.

    • Consider scalability and performance in the...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - All round was smooth and interviewer were friendly.

Skills evaluated in this interview

Interview experience
3
Average
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via LinkedIn and was interviewed before Sep 2023. There was 1 interview round.

Round 1 - Technical 

(2 Questions)

  • Q1. Ledger details posting profile
  • Q2. Fixed Asset project management and accounting

Interview Preparation Tips

Interview preparation tips for other job seekers - Gain knowledge as much as possible

I applied via Recruitment Consultant and was interviewed in Dec 2021. There were 3 interview rounds.

Interview Questionnaire 

2 Questions

  • Q1. Basics of Campaign building
  • Q2. What is Ad network and Ad exchange
  • Ans. 

    Ad network is a platform that connects advertisers with publishers to display ads. Ad exchange is a marketplace for buying and selling ad inventory.

    • Ad network connects advertisers with publishers to display ads

    • Ad exchange is a marketplace for buying and selling ad inventory

    • Ad network typically charges a commission on ad spend

    • Ad exchange uses real-time bidding to determine the price of ad inventory

    • Examples of ad network...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Always know about each and every term that you write in your resume. Do not brag about something that you don't know. Be transparent and calculative about your knowledge and offer.

Skills evaluated in this interview

I applied via Campus Placement and was interviewed in Jul 2020. There were 5 interview rounds.

Interview Questionnaire 

1 Question

  • Q1. Questions from SQL, Python, Excel, Tableau and from my Projects

Interview Preparation Tips

Interview preparation tips for other job seekers - Be prepared with your projects properly
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via LinkedIn and was interviewed before Aug 2023. There were 2 interview rounds.

Round 1 - One-on-one 

(2 Questions)

  • Q1. Difference between union and union all in SQL?
  • Ans. 

    Union combines and removes duplicates, Union All combines without removing duplicates.

    • Union combines result sets and removes duplicates

    • Union All combines result sets without removing duplicates

    • Union is slower than Union All as it involves removing duplicates

    • Example: SELECT column1 FROM table1 UNION SELECT column1 FROM table2;

    • Example: SELECT column1 FROM table1 UNION ALL SELECT column1 FROM table2;

  • Answered by AI
  • Q2. How to show top 5 in pandas?
  • Ans. 

    To show top 5 in pandas, use the nlargest() function.

    • Use the nlargest() function with the 'n' parameter set to 5 to get the top 5 values in a pandas DataFrame.

    • For example: df['column_name'].nlargest(5) will return the top 5 values in the specified column.

  • Answered by AI
Round 2 - Technical 

(1 Question)

  • Q1. If we have 3 numerical columns, which chart is a better representation these column?
  • Ans. 

    A scatter plot is a better representation for 3 numerical columns.

    • Use a scatter plot to show the relationship between the numerical columns.

    • Scatter plots are effective for visualizing correlations and patterns in data.

    • Each point on the plot represents a data point with values from all 3 columns.

  • Answered by AI

Interview Preparation Tips

Topics to prepare for Omnicom Media Group Data Analyst interview:
  • SQL Server
  • Pandas
  • Power Bi

Skills evaluated in this interview

Cardlytics Interview FAQs

How many rounds are there in Cardlytics interview?
Cardlytics interview process usually has 2-3 rounds. The most common rounds in the Cardlytics interview process are Technical, Aptitude Test and Coding Test.
How to prepare for Cardlytics interview?
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 Cardlytics. The most common topics and skills that interviewers at Cardlytics expect are Agile, Entity Framework, HTML, JQuery and System integration.
What are the top questions asked in Cardlytics interview?

Some of the top questions asked at the Cardlytics interview -

  1. Technical round 2 with in-depth technical questions and live programming durati...read more
  2. .net core api authenticat...read more
  3. .net core exception handl...read more

Tell us how to improve this page.

Interview Questions from Similar Companies

3 Minds Digital Interview Questions
4.4
 • 69 Interviews
Groupm Media Interview Questions
3.9
 • 35 Interviews
Moris Media Interview Questions
4.4
 • 24 Interviews
Z1 Tech Interview Questions
4.0
 • 11 Interviews
Bikayi Interview Questions
2.9
 • 10 Interviews
Xapads Media Interview Questions
4.3
 • 10 Interviews
Amitoje India Interview Questions
4.3
 • 10 Interviews
Jivox Interview Questions
3.8
 • 9 Interviews
View all

Cardlytics Reviews and Ratings

based on 18 reviews

4.1/5

Rating in categories

3.8

Skill development

4.3

Work-life balance

4.4

Salary

2.8

Job security

3.9

Company culture

3.9

Promotions

3.7

Work satisfaction

Explore 18 Reviews and Ratings
Senior Software Engineer
11 salaries
unlock blur

₹28.5 L/yr - ₹55 L/yr

Software Engineer II
7 salaries
unlock blur

₹19.5 L/yr - ₹26.5 L/yr

Software Engineer
6 salaries
unlock blur

₹15.5 L/yr - ₹22 L/yr

Data Scientist
4 salaries
unlock blur

₹24 L/yr - ₹31.5 L/yr

Technical Lead
4 salaries
unlock blur

₹19 L/yr - ₹38 L/yr

Explore more salaries
Compare Cardlytics with

Groupm Media

3.9
Compare

Omnicom Media Group

2.9
Compare

Z1 Tech

4.0
Compare

7Search PPC

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