Upload Button Icon Add office photos

Filter interviews by

Nielsen Senior Software Developer Interview Questions, Process, and Tips

Updated 29 Nov 2024

Top Nielsen Senior Software Developer Interview Questions and Answers

  • Q1. Given a string s and t find that s is a subsequence string in t or not?
  • Q2. Algorithm: BinarySearch algorithm using Recursion, explanation and implementation.
  • Q3. SQL: Find the nth highest salary of employee?

Nielsen Senior Software Developer Interview Experiences

2 interviews found

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

I applied via Naukri.com

Round 1 - Technical 

(4 Questions)

  • Q1. Median of 2 sorted array
  • Q2. Linux commands for chmod
  • Q3. Features of python
  • Q4. Deepcopy and shallowcopy
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
-

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

Round 1 - One-on-one 

(4 Questions)

  • Q1. SQL: Find the nth highest salary of employee?
  • Ans. 

    Use SQL query with ORDER BY and LIMIT to find the nth highest salary of an employee.

    • Use ORDER BY clause to sort salaries in descending order

    • Use LIMIT to specify the nth highest salary

    • Example: SELECT salary FROM employees ORDER BY salary DESC LIMIT n-1, 1

  • Answered by AI
  • Q2. SQL: Types of Joins in SQL?
  • Ans. 

    Types of joins in SQL include INNER JOIN, LEFT JOIN, RIGHT JOIN, and FULL JOIN.

    • INNER JOIN: Returns rows when there is at least one match in both tables.

    • LEFT JOIN: Returns all rows from the left table and the matched rows from the right table.

    • RIGHT JOIN: Returns all rows from the right table and the matched rows from the left table.

    • FULL JOIN: Returns rows when there is a match in one of the tables.

  • Answered by AI
  • Q3. Algorithm: BinarySearch algorithm using Recursion, explanation and implementation.
  • Ans. 

    BinarySearch algorithm using Recursion finds the target element in a sorted array by dividing the array in half at each step.

    • Divide the array in half and compare the target element with the middle element

    • If the target element is smaller, search the left half recursively

    • If the target element is larger, search the right half recursively

    • Repeat until the target element is found or the array is empty

  • Answered by AI
  • Q4. Given a string s and t find that s is a subsequence string in t or not?
  • Ans. 

    Check if string s is a subsequence of string t.

    • Iterate through both strings using two pointers.

    • Compare characters of s and t, moving pointer in t only if characters match.

    • If all characters of s are found in t in order, return true.

    • Example: s = 'abc', t = 'ahbgdc' => true

  • Answered by AI

Skills evaluated in this interview

Senior Software Developer Interview Questions Asked at Other Companies

asked in Freshworks
Q1. Intersection of Linked ListYou are given two Singly Linked List o ... read more
asked in Freshworks
Q2. Middle Of Linked ListGiven the head node of the singly linked lis ... read more
asked in Freshworks
Q3. Overlapping IntervalsYou have been given the start and end times ... read more
asked in SAP
Q4. Sum Of Max And MinYou are given an array “ARR” of size N. Your ta ... read more
asked in Freshworks
Q5. Cube Sum PairsYou are given a positive integer N, and you have to ... read more

Interview questions from similar companies

I applied via Recruitment Consulltant and was interviewed in Jan 2022. There was 1 interview round.

Round 1 - Technical 

(2 Questions)

  • Q1. What are joins, given 2 tables, join them
  • Ans. 

    Joins are used to combine data from two or more tables based on a related column between them.

    • Use JOIN keyword followed by the name of the table to join

    • Specify the columns to be selected using SELECT keyword

    • Use ON keyword to specify the related column between tables

    • Types of joins: INNER JOIN, LEFT JOIN, RIGHT JOIN, FULL OUTER JOIN

    • Example: SELECT * FROM table1 INNER JOIN table2 ON table1.id = table2.id

  • Answered by AI
  • Q2. All C# OOPS Concepts, Inheritance, Overriding and Overloading

Interview Preparation Tips

Topics to prepare for Moody's Senior Software Developer interview:
  • MySQL
  • C#.Net
Interview preparation tips for other job seekers - Study basics of C# and SQL very well.

Skills evaluated in this interview

I applied via Naukri.com and was interviewed before Mar 2021. 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 - Coding Test 

Was asked data structure and program logic. scenario based questions were there.

Round 3 - Technical 

(1 Question)

  • Q1. Finding shortest path,
  • Ans. 

    Shortest path can be found using algorithms like Dijkstra's, A* or BFS.

    • Dijkstra's algorithm finds shortest path in weighted graphs

    • A* algorithm is an extension of Dijkstra's algorithm and uses heuristics to guide search

    • BFS can be used to find shortest path in unweighted graphs

    • All three algorithms require a graph representation and a starting and ending node

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare well before going for it

Skills evaluated in this interview

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
3
Average
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via Approached by Company and was interviewed in Aug 2024. There was 1 interview round.

Round 1 - Technical 

(2 Questions)

  • Q1. Explain your current project. An then related to project
  • Q2. How to get 3rd last node of a linked list
  • Ans. 

    To get the 3rd last node of a linked list, we can use two pointers approach.

    • Start two pointers at the head of the linked list

    • Move the first pointer to the 3rd node from the beginning

    • Then move both pointers one node at a time until the first pointer reaches the end

  • Answered by AI

Skills evaluated in this interview

Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(1 Question)

  • Q1. What fifo? diff btwn fifo and lifo
  • Ans. 

    FIFO stands for First In, First Out. LIFO stands for Last In, First Out.

    • FIFO is a method for organizing and manipulating a data buffer, where the first element added is the first to be removed.

    • LIFO is a method where the last element added is the first to be removed.

    • FIFO is like a queue, while LIFO is like a stack.

    • Example: In a FIFO queue, if elements A, B, and C are added in that order, they will be removed in the same...

  • Answered by AI

Skills evaluated in this interview

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

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

Round 1 - Technical 

(2 Questions)

  • Q1. Uikit explaination
  • Q2. Model classes with uikit
  • Ans. 

    Model classes in UIKit are used to represent data in an application's user interface.

    • Model classes in UIKit typically subclass NSObject and are used to store and manage data for views.

    • They can include properties to represent different data fields, methods to manipulate the data, and sometimes protocols for delegation.

    • For example, a model class for a user profile in a social media app might have properties like username...

  • Answered by AI
Round 2 - Coding Test 

Project related questions

Interview Preparation Tips

Interview preparation tips for other job seekers - Easy

Skills evaluated in this interview

Software Engineer Interview Questions & Answers

Kantar user image K VENKATA SAI DEEPAK

posted on 14 May 2024

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

I was interviewed in Apr 2024.

Round 1 - One-on-one 

(2 Questions)

  • Q1. Basics of sql and some coding questions
  • Q2. Data structures
Round 2 - Technical 

(1 Question)

  • Q1. Putin arrays strings
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

Nielsen Interview FAQs

How many rounds are there in Nielsen Senior Software Developer interview?
Nielsen interview process usually has 1 rounds. The most common rounds in the Nielsen interview process are One-on-one Round and Technical.
How to prepare for Nielsen Senior 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 Nielsen. The most common topics and skills that interviewers at Nielsen expect are AWS, Cloud Services, Gitlab, Java and MySQL.
What are the top questions asked in Nielsen Senior Software Developer interview?

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

  1. Given a string s and t find that s is a subsequence string in t or n...read more
  2. Algorithm: BinarySearch algorithm using Recursion, explanation and implementati...read more
  3. SQL: Find the nth highest salary of employ...read more

Tell us how to improve this page.

People are getting interviews through

based on 2 Nielsen interviews
Job Portal
100%
Moderate Confidence
?
Moderate Confidence means the data is based on a sufficient number of responses received from the candidates

Interview Questions from Similar Companies

EXL Service Interview Questions
3.7
 • 721 Interviews
S&P Global Interview Questions
4.2
 • 268 Interviews
Mu Sigma Interview Questions
2.7
 • 224 Interviews
Access Healthcare Interview Questions
3.9
 • 198 Interviews
Straive Interview Questions
3.4
 • 166 Interviews
CorroHealth Interview Questions
3.3
 • 141 Interviews
Kantar Interview Questions
3.5
 • 104 Interviews
Netscribes Interview Questions
2.8
 • 82 Interviews
View all
Nielsen Senior Software Developer Salary
based on 15 salaries
₹9 L/yr - ₹22.3 L/yr
19% more than the average Senior Software Developer Salary in India
View more details

Nielsen Senior Software Developer Reviews and Ratings

based on 4 reviews

4.0/5

Rating in categories

4.0

Skill development

4.7

Work-Life balance

4.1

Salary & Benefits

4.1

Job Security

4.9

Company culture

3.3

Promotions/Appraisal

3.1

Work Satisfaction

Explore 4 Reviews and Ratings
Data Analyst
206 salaries
unlock blur

₹1.5 L/yr - ₹9 L/yr

Analyst
199 salaries
unlock blur

₹1.8 L/yr - ₹9.3 L/yr

Senior Research Executive
180 salaries
unlock blur

₹6.4 L/yr - ₹12.6 L/yr

Manager
165 salaries
unlock blur

₹8.3 L/yr - ₹23 L/yr

Research Executive
155 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.6
Compare

Dun & Bradstreet

3.3
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