Upload Button Icon Add office photos

Nielsen

Compare button icon Compare button icon Compare

Filter interviews by

Nielsen Senior Software Engineer Interview Questions, Process, and Tips

Updated 24 Mar 2025

Top Nielsen Senior Software Engineer Interview Questions and Answers

Nielsen Senior Software Engineer Interview Experiences

5 interviews found

Interview experience
1
Bad
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
No response

I applied via LinkedIn and was interviewed in Aug 2024. There were 2 interview rounds.

Round 1 - Coding Test 

3 simple coding questions

Round 2 - Technical 

(3 Questions)

  • Q1. Merge sort with list
  • Ans. 

    Merge sort is a divide and conquer algorithm that recursively divides the input array into smaller subarrays, sorts them, and then merges them back together.

    • Divide the input list into two halves

    • Recursively apply merge sort to each half

    • Merge the sorted halves back together

  • Answered by AI
  • Q2. Similar to coin exchange DP
  • Q3. SQL query medium level

Interview Preparation Tips

Topics to prepare for Nielsen Senior Software Engineer interview:
  • DSA
  • Design Patterns
Interview preparation tips for other job seekers - I would suggest not to take interview or join this company . They already have some people who they want to take and they just take some rounds of you and even if it goes extremely good they wont contact you back . Work here is also not good they tell as developer and will make you do devops writing yml files . This is what I heard from people inside . Even if you get this offer don't consider as first choice . This is my advice to people who are looking to apply here

Skills evaluated in this interview

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

I applied via LinkedIn and was interviewed in Jul 2024. There were 2 interview rounds.

Round 1 - Technical 

(2 Questions)

  • Q1. Minimum in Rotated Sorted array
  • Ans. 

    Find the minimum element in a rotated sorted array.

    • Perform binary search to find the pivot point where the array is rotated.

    • Compare the element at pivot point to the first element to determine which half to search for the minimum.

    • Continue binary search in the appropriate half to find the minimum element.

  • Answered by AI
  • Q2. API and DB Schema for Instagram based application.
  • Ans. 

    API for Instagram application to interact with user data and DB schema to store user information and posts.

    • API endpoints for user authentication, posting photos, liking photos, following users, etc.

    • DB schema with tables for users, posts, comments, likes, followers, etc.

    • Example API endpoint: /users/{userId}/posts to retrieve all posts by a specific user.

    • Example DB schema: Users table with columns for username, email, pr

  • Answered by AI
Round 2 - Technical 

(1 Question)

  • Q1. Resume introspection, AWS, K8s

Skills evaluated in this interview

Senior Software Engineer Interview Questions Asked at Other Companies

asked in DBS Bank
Q1. Tell me about yourself. What technology are you using? What is a ... read more
asked in GlobalLogic
Q2. MapSum Pair Implementation Create a data structure named 'MapSum' ... read more
asked in UST
Q3. Nth Prime Number Problem Statement Find the Nth prime number give ... read more
asked in Capgemini
Q4. Pascal's Triangle Construction You are provided with an integer ' ... read more
Q5. K Largest Elements Problem Statement You are given an integer k a ... read more
Interview experience
2
Poor
Difficulty level
Easy
Process Duration
2-4 weeks
Result
Selected Selected

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

Round 1 - Technical 

(1 Question)

  • Q1. Third party took the interview. Basics of programming and database were asked.
Round 2 - Technical 

(1 Question)

  • Q1. Asked to build a small game. LLD round.
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(2 Questions)

  • Q1. Questions were mainly based on work experience and resume
  • Q2. AWS Question regarding S3, saprk memory

Nielsen interview questions for designations

 Software Engineer

 (7)

 Senior Software Developer

 (2)

 Lead Software Engineer

 (2)

 Software Engineer Trainee

 (1)

 Senior Data Engineer

 (2)

 Software Developer

 (6)

 Data Engineer

 (5)

 Devops Engineer

 (2)

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

I appeared for an interview before Mar 2024, where I was asked the following questions.

  • Q1. What is a dirty read in a database?
  • Ans. 

    A dirty read occurs when a transaction reads data that has been modified but not yet committed by another transaction.

    • Dirty reads can lead to inconsistencies, as the data may change before the first transaction is committed.

    • For example, if Transaction A updates a record but hasn't committed yet, and Transaction B reads that record, Transaction B sees uncommitted data.

    • If Transaction A rolls back, Transaction B will have...

  • Answered by AI
  • Q2. What are design patterns?
  • Ans. 

    Design patterns are reusable solutions to common software design problems, promoting best practices and improving code maintainability.

    • Creational patterns (e.g., Singleton, Factory Method) manage object creation.

    • Structural patterns (e.g., Adapter, Composite) deal with object composition.

    • Behavioral patterns (e.g., Observer, Strategy) focus on communication between objects.

    • Design patterns help in code reusability and sca

  • Answered by AI

Interview questions from similar companies

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

I applied via Recruitment Consulltant and was interviewed before May 2023. There was 1 interview round.

Round 1 - Technical 

(2 Questions)

  • Q1. Explain your previous projects
  • Q2. Scenario based question
Interview experience
2
Poor
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

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

Round 1 - Technical 

(1 Question)

  • Q1. Write progrem to check balenced brackets in a given string
  • Ans. 

    Program to check balanced brackets in a given string

    • Use a stack to keep track of opening brackets

    • Iterate through the string and push opening brackets onto the stack

    • When a closing bracket is encountered, pop from the stack and check if it matches the corresponding opening bracket

    • If stack is empty at the end and all brackets are matched, the string is balanced

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - basics and some algorithms

Skills evaluated in this interview

Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - One-on-one 

(2 Questions)

  • Q1. Sql query on joins Given two tables and create output result . It was self join
  • Q2. Oops polymorphism questions Microservices Design pattern Factory pattern

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare oops and sql in detail
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(2 Questions)

  • Q1. Moderate questions
  • Q2. Asynchronous coding, async, mvc, sql, missing number program

Interview Questionnaire 

1 Question

  • Q1. How to invoke the xml file using LibXML?
  • Ans. 

    To invoke an XML file using LibXML, use the xmlReadFile() function.

    • Include the libxml/parser.h header file.

    • Use the xmlReadFile() function to read the XML file and create a xmlDocPtr object.

    • Use the xmlDocGetRootElement() function to get the root element of the XML document.

    • Use the xmlNodeGetContent() function to get the content of a node.

    • Use the xmlFreeDoc() function to free the memory allocated for the xmlDocPtr object...

  • Answered by AI

Skills evaluated in this interview

Nielsen Interview FAQs

How many rounds are there in Nielsen Senior Software Engineer interview?
Nielsen interview process usually has 1-2 rounds. The most common rounds in the Nielsen interview process are Technical and Coding Test.
How to prepare for Nielsen Senior Software Engineer 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 Nielsen. The most common topics and skills that interviewers at Nielsen expect are SQL, Python, Automation Testing, Linux Administration and MySQL.
What are the top questions asked in Nielsen Senior Software Engineer interview?

Some of the top questions asked at the Nielsen Senior Software Engineer interview -

  1. What is a dirty read in a databa...read more
  2. API and DB Schema for Instagram based applicati...read more
  3. What are design patter...read more

Tell us how to improve this page.

Nielsen Senior Software Engineer Interview Process

based on 6 interviews

2 Interview rounds

  • Technical Round - 1
  • Technical Round - 2
View more

Interview Questions from Similar Companies

EXL Service Interview Questions
3.7
 • 752 Interviews
S&P Global Interview Questions
4.1
 • 283 Interviews
Mu Sigma Interview Questions
2.6
 • 234 Interviews
Access Healthcare Interview Questions
3.9
 • 214 Interviews
Straive Interview Questions
3.4
 • 183 Interviews
Kantar Interview Questions
3.5
 • 98 Interviews
Netscribes Interview Questions
2.8
 • 85 Interviews
Cotiviti Interview Questions
3.7
 • 77 Interviews
View all
Nielsen Senior Software Engineer Salary
based on 122 salaries
₹9.4 L/yr - ₹34 L/yr
41% more than the average Senior Software Engineer Salary in India
View more details

Nielsen Senior Software Engineer Reviews and Ratings

based on 13 reviews

3.6/5

Rating in categories

3.3

Skill development

3.8

Work-life balance

3.2

Salary

2.5

Job security

3.9

Company culture

2.6

Promotions

3.4

Work satisfaction

Explore 13 Reviews and Ratings
Data Analyst
213 salaries
unlock blur

₹1.5 L/yr - ₹9 L/yr

Analyst
207 salaries
unlock blur

₹1.8 L/yr - ₹9.1 L/yr

Senior Research Executive
163 salaries
unlock blur

₹7 L/yr - ₹12.6 L/yr

Manager
160 salaries
unlock blur

₹8 L/yr - ₹22 L/yr

Research Executive
145 salaries
unlock blur

₹5.2 L/yr - ₹9 L/yr

Explore more salaries
Compare Nielsen with

EXL Service

3.7
Compare

Access Healthcare

3.9
Compare

S&P Global

4.1
Compare

Straive

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