Upload Button Icon Add office photos

Filter interviews by

Dunnhumby Senior Software Engineer Interview Questions and Answers

Updated 9 Jul 2024

Dunnhumby Senior Software Engineer Interview Experiences

1 interview found

Interview experience
2
Poor
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

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

Round 1 - Technical 

(1 Question)

  • Q1. Theoretical questions around javascript methods

Interview questions from similar companies

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
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
4
Good
Difficulty level
Hard
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Company Website and was interviewed before Sep 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 - Technical 

(3 Questions)

  • Q1. OOps, C#, MVC, WEBAPI, Azure
  • Q2. Multiple inheritance concept in OOPs?
  • Ans. 

    Multiple inheritance allows a class to inherit attributes and methods from more than one parent class.

    • In multiple inheritance, a class can inherit from two or more parent classes.

    • It can lead to the Diamond Problem where a class inherits from two classes that have a common ancestor.

    • Languages like C++ support multiple inheritance.

    • Example: class ChildClass : public ParentClass1, public ParentClass2 {}

  • Answered by AI
  • Q3. What is interface?
  • Ans. 

    An interface in software development defines a contract for classes to implement, specifying methods and properties that must be included.

    • Interfaces in programming languages like Java, C#, and TypeScript allow for multiple inheritance by defining a set of methods that a class must implement.

    • Interfaces are used to enforce a common structure across different classes, promoting code reusability and maintainability.

    • Example...

  • Answered by AI
Round 3 - Coding Test 

Create Crud operation using angular with API.

Interview Preparation Tips

Interview preparation tips for other job seekers - Don't join this company
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Referral and was interviewed before Mar 2022. There was 1 interview round.

Round 1 - One-on-one 

(2 Questions)

  • Q1. Mostly on your experience. Azure, .net core, microservices.
  • Q2. Coding round with basic programming questions. Easy level.

Interview Preparation Tips

Interview preparation tips for other job seekers - Be well versed with what you write on your resume. Don't overdo to make it heavy. Write and discuss what you have worked on and what you are currently learning to enhance your skills.
Interview experience
3
Average
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

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

Round 1 - Coding Test 

Round one was an online coding test where there were 5 sections :

1 - dsa - medium

2 - Java - Easy

3 - OOP - Easy

4 - Git - Easy

Round 2 - One-on-one 

(5 Questions)

  • Q1. 1 - where is bean annotation used in springboot ?... In class or method
  • Ans. 

    Bean annotation is used in Spring Boot on class or method to indicate that a method produces a bean to be managed by the Spring container.

    • Bean annotation is used on methods within a class to indicate that the method produces a bean to be managed by the Spring container.

    • It can also be used at the class level to indicate that the class itself is a Spring bean.

    • For example, @Bean annotation can be used on a method that cre...

  • Answered by AI
  • Q2. Which access modifier to restrict interface method access to only derived or implemented classes
  • Ans. 

    Protected access modifier restricts interface method access to only derived or implemented classes.

    • Use 'protected' access modifier to restrict access to only derived or implemented classes

    • Protected members are accessible within the same package or by subclasses

    • Example: 'protected void methodName() {}' in an interface

  • Answered by AI
  • Q3. How does one services interact with other in microservice
  • Ans. 

    Microservices interact with each other through APIs, messaging, or events.

    • Microservices communicate with each other through APIs, which can be synchronous or asynchronous.

    • Messaging systems like RabbitMQ or Kafka can be used for communication between microservices.

    • Events can be used for loosely coupled communication between microservices.

    • Service discovery mechanisms like Eureka or Consul help microservices locate and co...

  • Answered by AI
  • Q4. In an integer array where element represent stock price and index represent days how to detect the best day to buy and best day to sell in O(N)
  • Ans. 

    To detect the best day to buy and sell stock in an integer array representing stock prices and days in O(N).

    • Iterate through the array and keep track of the minimum price seen so far.

    • Calculate the profit by subtracting the current price from the minimum price.

    • Update the maximum profit and best buy/sell days accordingly.

    • Return the best buy and sell days to maximize profit.

  • Answered by AI
  • Q5. In an integer array find the next greatest number for all and display in O(N)
  • Ans. 

    Find the next greatest number for each integer in an array in O(N) time complexity.

    • Iterate through the array from right to left

    • Use a stack to keep track of potential next greatest numbers

    • Pop elements from the stack that are less than the current element and update their next greatest number to the current element

    • Push the current element onto the stack

    • Repeat until all elements have a next greatest number

  • 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
4
Good
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
No response

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

Round 1 - Technical 

(2 Questions)

  • Q1. Js questions and 2 coding questions
  • Q2. Questions on angular, html and css
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

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

Dunnhumby Interview FAQs

How many rounds are there in Dunnhumby Senior Software Engineer interview?
Dunnhumby interview process usually has 1 rounds. The most common rounds in the Dunnhumby interview process are Technical.
How to prepare for Dunnhumby 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 Dunnhumby. The most common topics and skills that interviewers at Dunnhumby expect are Software Design, Software Development Life Cycle, Algorithms, Architecture and Basic.

Tell us how to improve this page.

Dunnhumby Senior Software Engineer Interview Process

based on 1 interview

Interview experience

2
  
Poor
View more
Dunnhumby Senior Software Engineer Salary
based on 21 salaries
₹12 L/yr - ₹34 L/yr
54% more than the average Senior Software Engineer Salary in India
View more details

Dunnhumby Senior Software Engineer Reviews and Ratings

based on 1 review

4.0/5

Rating in categories

3.0

Skill development

5.0

Work-life balance

3.0

Salary

5.0

Job security

5.0

Company culture

3.0

Promotions

3.0

Work satisfaction

Explore 1 Review and Rating
Senior Applied Data Scientist
129 salaries
unlock blur

₹10.9 L/yr - ₹20 L/yr

Applied Data Scientist
81 salaries
unlock blur

₹10 L/yr - ₹15.5 L/yr

Lead Applied Data Scientist
79 salaries
unlock blur

₹17 L/yr - ₹30 L/yr

Senior Engineer
61 salaries
unlock blur

₹10 L/yr - ₹30 L/yr

Senior Data Scientist
48 salaries
unlock blur

₹9 L/yr - ₹28 L/yr

Explore more salaries
Compare Dunnhumby with

Fractal Analytics

4.0
Compare

Mu Sigma

2.6
Compare

AbsolutData

3.6
Compare

Algonomy

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