Upload Button Icon Add office photos

Filter interviews by

Nielsen Senior Software Engineer Interview Questions and Answers

Updated 18 Sep 2024

Nielsen Senior Software Engineer Interview Experiences

4 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 UST
Q1. Nth Prime Number Problem Statement Find the Nth prime number give ... read more
asked in Capgemini
Q2. Pascal's Triangle Construction You are provided with an integer ' ... read more
Q3. K Largest Elements Problem Statement You are given an integer k a ... read more
asked in Info Edge
Q4. Buy and Sell Stock Problem Statement Imagine you are Harshad Meht ... read more
asked in DBS Bank
Q5. Tell me about yourself. What technology are you using? What is 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

 (8)

 Senior Software Developer

 (2)

 Lead Software Engineer

 (2)

 Software Engineer Trainee

 (1)

 Senior Data Engineer

 (2)

 Software Developer

 (5)

 Data Engineer

 (5)

 Devops Engineer

 (2)

Interview questions from similar companies

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

I applied via Naukri.com and was interviewed in Aug 2024. There was 1 interview round.

Round 1 - Technical 

(2 Questions)

  • Q1. What is difference between function and stored procedure
  • Ans. 

    Functions return a single value, while stored procedures can perform multiple operations and return multiple values.

    • Functions return a single value, while stored procedures can return multiple values.

    • Functions are called in SQL statements, while stored procedures are called using EXECUTE statement.

    • Functions cannot have output parameters, while stored procedures can have output parameters.

    • Functions cannot modify server ...

  • Answered by AI
  • Q2. How to implement custom exception in MVC
  • Ans. 

    Custom exceptions can be implemented in MVC by creating a new class that inherits from Exception class.

    • Create a new class that inherits from Exception class

    • Override the constructor to pass a custom message to the base Exception class

    • Throw the custom exception in the MVC controller or service layer

  • Answered by AI

Skills evaluated in this interview

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 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
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(1 Question)

  • Q1. Explain how you read messages from google cloud pusub
  • Ans. 

    Reading messages from Google Cloud Pub/Sub involves creating a subscription and pulling messages from the subscription.

    • Create a subscription to a Google Cloud Pub/Sub topic

    • Use the subscription to pull messages from the topic

    • Process the messages received from the subscription

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare well about your past project design. you will get questioned about your choices in it

Skills evaluated in this interview

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
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

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. API and DB Schema for Instagram based applicati...read more
  2. Minimum in Rotated Sorted ar...read more
  3. Merge sort with l...read more

Tell us how to improve this page.

Nielsen Senior Software Engineer Interview Process

based on 5 interviews

2 Interview rounds

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

Interview Questions from Similar Companies

EXL Service Interview Questions
3.7
 • 724 Interviews
S&P Global Interview Questions
4.2
 • 270 Interviews
Mu Sigma Interview Questions
2.6
 • 226 Interviews
Access Healthcare Interview Questions
3.9
 • 202 Interviews
Straive Interview Questions
3.4
 • 168 Interviews
CorroHealth Interview Questions
3.3
 • 142 Interviews
Kantar Interview Questions
3.5
 • 105 Interviews
Netscribes Interview Questions
2.8
 • 82 Interviews
View all
Nielsen Senior Software Engineer Salary
based on 128 salaries
₹8 L/yr - ₹34 L/yr
29% more than the average Senior Software Engineer Salary in India
View more details

Nielsen Senior Software Engineer Reviews and Ratings

based on 10 reviews

4.0/5

Rating in categories

3.4

Skill development

4.5

Work-life balance

3.5

Salary

3.0

Job security

4.3

Company culture

3.0

Promotions

3.8

Work satisfaction

Explore 10 Reviews and Ratings
Analyst
188 salaries
unlock blur

₹1.8 L/yr - ₹8 L/yr

Data Analyst
183 salaries
unlock blur

₹1.5 L/yr - ₹9.2 L/yr

Senior Research Executive
180 salaries
unlock blur

₹6.4 L/yr - ₹12.8 L/yr

Manager
168 salaries
unlock blur

₹8.3 L/yr - ₹23 L/yr

Research Executive
156 salaries
unlock blur

₹5.2 L/yr - ₹9 L/yr

Explore more salaries
Compare Nielsen with

Kantar

3.5
Compare

GfK MODE

3.3
Compare

Euromonitor International

3.5
Compare

Dun & Bradstreet

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