Upload Button Icon Add office photos

Kantar

Compare button icon Compare button icon Compare

Filter interviews by

Kantar Software Developer Interview Questions and Answers

Updated 23 Jul 2024

Kantar Software Developer Interview Experiences

3 interviews found

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

I applied via Company Website and was interviewed in Jul 2022. There were 4 interview rounds.

Round 1 - Coding Test 

Apt + coding questions, medium difficulty

Round 2 - Technical 

(1 Question)

  • Q1. Basics qs on oops and known programming language
Round 3 - Technical 

(1 Question)

  • Q1. In-depth of oops and live coding questions
Round 4 - HR 

(1 Question)

  • Q1. Basics qs like y and what

I applied via Naukri.com and was interviewed in Mar 2022. There were 3 interview rounds.

Round 1 - Coding Test 

1st Round is Up to an hr in that we have to perform Coding as per the test provided & also SQL round involve in it we have to show as output as per the test is concerned to provide valid outputs.

Round 2 - Aptitude Test 

2nd round was an aptitude test of 90 mins it was like 100 Questions we have to solve and submit that it involved Logical Reasoning, Mathematical problems, Word Problems, etc.

Round 3 - Technical 

(3 Questions)

  • Q1. Tell me about your projects and what you have done in your previous company.
  • Q2. On basis of Projects, the Technical questions that were asked, and also other situations given on that basis what I will do in the Logical process need to explain the steps.
  • Q3. Basics Of Java OOPs Concepts Questions

Interview Preparation Tips

Topics to prepare for Kantar Software Developer interview:
  • OOPS
  • Core Java
  • Advanced Java
  • SQL
  • Android
  • MVVM
  • MVC
  • SDLC Life Cycle
Interview preparation tips for other job seekers - Be prepared before the interview and have confidence also try to answer positively.
If don't know points at that exact time try to explain the nearest point and continue the conversation
and must talk in English because it's MNC.
Listen to Question First and then reply with your answer in short for Technical Round.
Also Prepared to explain if you have year Gaps in education/normally and why you left your previous Job.

Software Developer Interview Questions Asked at Other Companies

asked in Amazon
Q1. Maximum Subarray Sum Problem Statement Given an array of integers ... read more
asked in Amazon
Q2. Minimum Number of Platforms Needed Problem Statement You are give ... read more
asked in Rakuten
Q3. Merge Two Sorted Arrays Problem Statement Given two sorted intege ... read more
asked in Cognizant
Q4. Nth Fibonacci Number Problem Statement Calculate the Nth term in ... read more
Q5. Find Duplicate in Array Problem Statement You are provided with a ... read more

I applied via Naukri.com and was interviewed before May 2020. There were 4 interview rounds.

Interview Questionnaire 

2 Questions

  • Q1. SQL Joins
  • Q2. Swap 2 numbers without 3rd variable
  • Ans. 

    Swapping two numbers without using a third variable

    • Use arithmetic operations to swap the values

    • Add the two numbers and store the result in the first variable

    • Subtract the second number from the result and store it in the second variable

    • Subtract the second variable from the first variable to get the original value of the second variable

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - 1st Round : Long set of Aptitude questions
2nd Round : Technical Interview
3rd Round : Technical Interview and HR questions

Skills evaluated in this interview

Interview questions from similar companies

I applied via Naukri.com and was interviewed in Apr 2020. There was 1 interview round.

Interview Questionnaire 

2 Questions

  • Q1. What synchronous and asynchronous means??
  • Ans. 

    Synchronous means happening at the same time, while asynchronous means not happening at the same time.

    • Synchronous operations occur in real-time, while asynchronous operations can be delayed or queued.

    • Synchronous operations block the program until they are completed, while asynchronous operations allow the program to continue running.

    • Examples of synchronous operations include function calls and loops, while examples of ...

  • Answered by AI
  • Q2. When to use CTE and temp table.
  • Ans. 

    CTE and temp table usage in SQL

    • Use CTE for recursive queries and complex subqueries

    • Use temp tables for large data sets and complex queries

    • CTE is more efficient for small data sets

    • Temp tables can be indexed for faster performance

    • Consider the scope and lifespan of the data when choosing between CTE and temp table

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Understand question first and answer.

Interview Preparation Tips

Round: Test
Experience: Quantitative, verbal, reasoning and basic technical questions.
Duration: 1 hour
Total Questions: 50

Round: Technical + HR Interview
Experience: Questions based on data structures, algorithms, and object oriented programming concepts.
Tested basic knowledge in Finance sector especially related to the company.

College Name: Delhi Technological University, Delhi

Interview Preparation Tips

Round: Pre-placement offer
Experience: Each intern was assigned a individual project and mentor.
In the last week of internship there was project presentation and interview.
interview was easy .For me 50% of the questions were about project and some questions about algorithms and DBMS.
More emphasis was given to the quality of work on project.

General Tips: Working in company is complete different from working on course project. learning many new frameworks required for the project was really challenging.
Programming : Tree, Btree, Tries ..
Operating System: Memory Management
Networks: OSI model
DBMS : basics. they dint ask me any. Show case your interest in big data, servers and passion for technology
Skill Tips: Be confident, even if you don't know the exact answer don't give up tell your approaches to interviewer. some times they will also help you. Software Developer some question s you can ask are: what technologies do your company works on. how are freshers will be selected to different teams in the company.
Skills:
College Name: NIT Surathkal

I was interviewed in Nov 2020.

Round 1 - Coding Test 

(2 Questions)

Round duration - 135 minutes
Round difficulty - Easy

Coding questions was easy if you know the basic of coding in any language. I submitted optimized solution for every questions that's why i got selected in this round.

  • Q1. 

    Find K'th Character of Decrypted String

    You are given an encrypted string where repeated substrings are represented by the substring followed by its count. Your task is to find the K'th character of the d...

  • Ans. 

    Given an encrypted string with repeated substrings represented by counts, find the K'th character of the decrypted string.

    • Parse the encrypted string to extract substrings and their counts

    • Iterate through the substrings and counts to build the decrypted string

    • Track the position in the decrypted string to find the K'th character

  • Answered by AI
  • Q2. 

    Cycle Detection in Undirected Graph Problem Statement

    You are provided with an undirected graph containing 'N' vertices and 'M' edges. The vertices are numbered from 1 to 'N'. Your objective is to determi...

  • Ans. 

    Detect if an undirected graph contains a cycle.

    • Use Depth First Search (DFS) to traverse the graph and detect cycles.

    • Maintain a visited array to keep track of visited vertices.

    • If a visited vertex is encountered again during DFS, a cycle exists.

    • Check for back edges while traversing the graph.

    • Consider disconnected graphs as well.

  • Answered by AI
Round 2 - Assignment 

(3 Questions)

Round duration - 150 minutes
Round difficulty - Medium

  • Q1. 

    Pair Sum Problem Statement

    You are provided with an array ARR consisting of N distinct integers in ascending order and an integer TARGET. Your objective is to count all the distinct pairs in ARR whose sum...

  • Ans. 

    Count distinct pairs in an array whose sum equals a given target.

    • Use two pointers approach to iterate through the array and find pairs with sum equal to target.

    • Keep track of visited pairs to avoid counting duplicates.

    • Return -1 if no such pair exists with the given target.

  • Answered by AI
  • Q2. 

    Next Smaller Palindrome Problem Statement

    You are given a palindrome number represented as a string S. Your task is to find the largest palindrome number that is strictly less than S.

    Example:

    Input:
    T...
  • Ans. 

    Given a palindrome number represented as a string, find the largest palindrome number that is strictly less than the given number.

    • Iterate from the middle towards the start and end of the string to find the next smaller palindrome.

    • If the number is odd in length, simply mirror the left half to the right half to get the next smaller palindrome.

    • If the number is even in length, decrement the middle digit and mirror the left...

  • Answered by AI
  • Q3. 

    Longest Common Subsequence Problem Statement

    Given two strings STR1 and STR2, determine the length of their longest common subsequence.

    A subsequence is a sequence that can be derived from another sequen...

  • Ans. 

    The problem involves finding the length of the longest common subsequence between two given strings.

    • Use dynamic programming to solve this problem efficiently.

    • Create a 2D array to store the lengths of common subsequences of substrings.

    • Iterate through the strings to fill the array and find the length of the longest common subsequence.

    • Example: For input STR1 = 'abcde' and STR2 = 'ace', the longest common subsequence is 'a

  • Answered by AI
Round 3 - Face to Face 

(2 Questions)

Round duration - 30 minutes
Round difficulty - Easy

Interview went well.The interviewer asked me how the previous interviews were.

  • Q1. 

    Boundary Traversal of a Binary Tree

    Given a binary tree of integers, your task is to output the boundary nodes of this binary tree in Anti-Clockwise order, starting from the root node.

    Explanation:

    The b...

  • Ans. 

    Output the boundary nodes of a binary tree in Anti-Clockwise order, starting from the root node.

    • Traverse the left boundary nodes in top-down order

    • Traverse the leaf nodes from left to right

    • Traverse the right boundary nodes in bottom-up order

    • Combine the above traversals to get the boundary nodes in Anti-Clockwise order

  • Answered by AI
  • Q2. 

    Sort 0 1 2 Problem Statement

    Given an integer array arr of size 'N' containing only 0s, 1s, and 2s, write an algorithm to sort the array.

    Input:

    The first line contains an integer 'T' representing the n...
  • Ans. 

    Sort an array of 0s, 1s, and 2s in linear time complexity.

    • Use three pointers to keep track of the positions of 0s, 1s, and 2s in the array.

    • Iterate through the array and swap elements based on the values encountered.

    • Maintain left pointer for 0s, right pointer for 2s, and current pointer for traversal.

    • Example: If current element is 0, swap it with element at left pointer and increment both pointers.

  • Answered by AI
Round 4 - HR 

Round duration - 20 minutes
Round difficulty - Easy

This round is very easy, In this round they basically need confidence and truthful person.

Interview Preparation Tips

Eligibility criteriaabove 7.5 CGPADeloitte interview preparation:Topics to prepare for the interview - Data Structures, Web development, System Design, Algorithms, Dynamic Programming, Database, Networking, DevOps, Operating System, Database Management System, Object-Oriented Programming System , basic aptitudeTime required to prepare for the interview - 5 monthsInterview preparation tips for other job seekers

Tip 1 : For Data Structures number of questions doesn't matter. Try to understand the logic behind them and try to apply them in creating multiple scenario's. 
Tip 2 : Do lot of hard work and practice of Data Structures and Algorithms based questions
Tip 3 : See which part interests you more, Increase your knowledge horizon, Always try to build a system a system considering It will be served to millions of customers.
Tip 4 : I personally recommend you Coding Ninjas and Geeks For Geeks for interview preparation.

Application resume tips for other job seekers

Tip 1 : Always try to make it a single page 
Tip 2 : do mention all your skills which you are confident of in your resume.
Tip 3 : Always make resume company specific

Final outcome of the interviewSelected

Skills evaluated in this interview

Interview Questionnaire 

3 Questions

  • Q1. Oops mvc .net sql
  • Q2. .net frame work
  • Q3. Solid priciples

Interview Preparation Tips

Interview preparation tips for other job seekers - Good interview experience
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via Referral and was interviewed before Mar 2022. There were 3 interview rounds.

Round 1 - Resume Shortlist 
Pro Tip by AmbitionBox:
Keep your resume crisp and to the point. A recruiter looks at your resume for an average of 6 seconds, make sure to leave the best impression.
View all tips
Round 2 - Aptitude Test 

Basic coding questions And logical questions

Round 3 - Coding Test 

Simple program for mathematics

Interview Preparation Tips

Interview preparation tips for other job seekers - Just learn basic coding in python for Fibonacci series and inverse or a string and all
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
Not Selected

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

Round 1 - Aptitude Test 

Good number of questions on permutations, english etc

Round 2 - HR 

(1 Question)

  • Q1. What do you know about this company?
  • Ans. 

    The company is a leading software development firm specializing in creating innovative solutions for various industries.

    • Specializes in creating innovative software solutions

    • Works with clients from various industries

    • Known for high-quality and reliable products

    • Has a strong team of experienced developers

    • Focuses on staying up-to-date with the latest technologies

  • Answered by AI

Kantar Interview FAQs

How many rounds are there in Kantar Software Developer interview?
Kantar interview process usually has 3-4 rounds. The most common rounds in the Kantar interview process are Technical, Coding Test and HR.
How to prepare for Kantar Software Developer 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 Kantar. The most common topics and skills that interviewers at Kantar expect are C#, MVC, .NET, .Net and ASP.Net.
What are the top questions asked in Kantar Software Developer interview?

Some of the top questions asked at the Kantar Software Developer interview -

  1. swap 2 numbers without 3rd varia...read more
  2. On basis of Projects, the Technical questions that were asked, and also other s...read more
  3. Basics Of Java OOPs Concepts Questi...read more

Tell us how to improve this page.

Kantar Software Developer Interview Process

based on 2 interviews

Interview experience

3.5
  
Good
View more
Kantar Software Developer Salary
based on 39 salaries
₹3 L/yr - ₹10 L/yr
16% less than the average Software Developer Salary in India
View more details

Kantar Software Developer Reviews and Ratings

based on 12 reviews

3.6/5

Rating in categories

3.1

Skill development

3.8

Work-life balance

3.1

Salary

3.8

Job security

3.6

Company culture

3.0

Promotions

3.4

Work satisfaction

Explore 12 Reviews and Ratings
Research Manager
409 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Senior Research Manager
370 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Senior Analyst
280 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Associate Research Manager
228 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Consultant
158 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Explore more salaries
Compare Kantar with

Nielsen Holdings

3.7
Compare

GfK MODE

3.3
Compare

Ipsos

3.3
Compare

Market Xcel Data Matrix

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