Upload Button Icon Add office photos

Emirates NBD

Compare button icon Compare button icon Compare

Filter interviews by

Emirates NBD Senior Software Engineer Interview Questions and Answers

Updated 12 Mar 2025

Emirates NBD Senior Software Engineer Interview Experiences

2 interviews found

Interview experience
3
Average
Difficulty level
Easy
Process Duration
2-4 weeks
Result
Not Selected

I appeared for an interview in Feb 2025.

Round 1 - Technical 

(2 Questions)

  • Q1. Basic questions on android and kotlin- About coroutines, scope functions ,extensions , launch /async
  • Q2. What is clean architecture?
  • Ans. 

    Clean architecture is a software design philosophy that emphasizes separation of concerns and independence of frameworks.

    • Separation of concerns: Different layers handle different responsibilities, e.g., UI, business logic, and data access.

    • Dependency inversion: High-level modules should not depend on low-level modules; both should depend on abstractions.

    • Testability: Each layer can be tested independently, making it easi...

  • Answered by AI
Round 2 - Coding Test 

Two medium level algo in kotlin.

Round 3 - Fitment 

(2 Questions)

  • Q1. How do you handle a conflict in a team?
  • Ans. 

    I approach team conflicts with open communication, empathy, and a focus on collaborative problem-solving.

    • Listen actively to all parties involved to understand their perspectives.

    • Encourage open dialogue in a safe environment to express concerns.

    • Identify common goals to refocus the team on shared objectives.

    • Facilitate a brainstorming session to explore potential solutions together.

    • If necessary, involve a neutral third pa

  • Answered by AI
  • Q2. How do you handle team member that is not performing well?
  • Ans. 

    Addressing underperformance involves communication, support, and setting clear expectations for improvement.

    • Initiate a one-on-one conversation to understand their challenges and concerns.

    • Provide constructive feedback, focusing on specific areas of improvement.

    • Set clear, achievable goals and timelines to track progress.

    • Offer resources or mentorship to help them develop necessary skills.

    • Regularly check in to monitor prog

  • Answered by AI

Senior Software Engineer Interview Questions & Answers

user image Nikhil Jahagirdar

posted on 7 May 2024

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

(1 Question)

  • Q1. Basics of java script

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 questions from similar companies

I applied via Campus Placement and was interviewed in Dec 2020. There were 3 interview rounds.

Interview Questionnaire 

3 Questions

  • Q1. What is static in java?
  • Ans. 

    Static is a keyword in Java used to create class-level variables and methods.

    • Static variables are shared among all instances of a class

    • Static methods can be called without creating an instance of the class

    • Static blocks are used to initialize static variables

    • Static import is used to import static members of a class

  • Answered by AI
  • Q2. Write a program to replace consecutive same character by single '$' . for e.g. string='Heelo Wworldd'. Output- H$lo $orl$.
  • Ans. 

    The program replaces consecutive same characters in a string with a single '$'.

    • Iterate through each character in the string

    • Compare the current character with the next character

    • If they are the same, replace the next character with '$'

    • Continue until the end of the string

  • Answered by AI
  • Q3. Difference between Function overloading and Function overrriding
  • Ans. 

    Function overloading is having multiple functions with the same name but different parameters. Function overriding is having a derived class implement a method with the same name and parameters as a method in its base class.

    • Function overloading is used to provide different ways of calling a function with different parameters.

    • Function overriding is used to provide a specific implementation of a method in a derived class...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Read all OOPs concept before going to interview. Prepare SQL also.

Skills evaluated in this interview

I appeared for an interview before Mar 2016.

Interview Questionnaire 

2 Questions

  • Q1. Some technical questions were asked
  • Q2. They spring hibernate MVC flow and core java and Oracle connectivity questions

Interview Preparation Tips

Round: Technical + HR Interview
Experience: There was a Team manager and his junior for the interview

Round 1 - Group Discussion 

Topic wt is ms office

Round 2 - Assignment 

Eassys dscover the basic structure of all essaysand see what a goo d essay introduction and conclusion look like

Round 3 - Technical 

(1 Question)

  • Q1. Ppt presentations and techical skillsare the abilities and knowledge needed to performtastks

Interview Preparation Tips

Interview preparation tips for other job seekers - Straight from the job seekers themselves were sharing the best job search advice people have ever received
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(2 Questions)

  • Q1. LRU cache design
  • Ans. 

    LRU cache design involves maintaining a cache with limited capacity and removing the least recently used item when the cache is full.

    • Use a doubly linked list to maintain the order of items based on their usage.

    • Implement a hash map for fast access to items in the cache.

    • When a new item is accessed, move it to the front of the linked list to mark it as the most recently used.

    • When the cache is full, remove the item at the ...

  • Answered by AI
  • Q2. Current project

Skills evaluated in this interview

Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(1 Question)

  • Q1. System design , HLD, LLD , coding question
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Naukri.com and was interviewed in May 2024. There were 3 interview rounds.

Round 1 - Aptitude Test 

DSA , LLD on bar raiser

Round 2 - Coding Test 

DSA, SQL and discussions around projects

Round 3 - System Design 

(1 Question)

  • Q1. Design a notification system
  • Ans. 

    A notification system to alert users of important events or updates.

    • Define types of notifications (e.g. email, SMS, push notifications)

    • Implement a user preference setting for notification frequency

    • Include a notification history for users to review past alerts

  • Answered by AI

Skills evaluated in this interview

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

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

Round 1 - Coding Test 

1)Buy and sell stock
2)2 sum
3) system design
4) Elastic search
5) deployment

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

(3 Questions)

  • Q1. What is Overlaoding and overriding?
  • Ans. 

    Overloading is having multiple methods in the same class with the same name but different parameters. Overriding is implementing a method in a subclass that is already defined in the superclass.

    • Overloading allows multiple methods with the same name but different parameters in the same class.

    • Overriding involves implementing a method in a subclass that is already defined in the superclass.

    • Overloading is resolved at compi

  • Answered by AI
  • Q2. What are the Java features?
  • Ans. 

    Java features include object-oriented programming, platform independence, automatic memory management, and multithreading.

    • Object-oriented programming: Java supports classes and objects, allowing for modular and reusable code.

    • Platform independence: Java programs can run on any platform with the Java Virtual Machine (JVM).

    • Automatic memory management: Java uses garbage collection to automatically manage memory allocation ...

  • Answered by AI
  • Q3. What is abstrack class?
  • Ans. 

    Abstract class is a class that cannot be instantiated and may contain abstract methods.

    • Cannot be instantiated directly

    • May contain abstract methods that must be implemented by subclasses

    • Used to define a common interface for subclasses

  • Answered by AI

Skills evaluated in this interview

Emirates NBD Interview FAQs

How many rounds are there in Emirates NBD Senior Software Engineer interview?
Emirates NBD interview process usually has 2 rounds. The most common rounds in the Emirates NBD interview process are Technical and Coding Test.
What are the top questions asked in Emirates NBD Senior Software Engineer interview?

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

  1. What is clean architectu...read more
  2. Basic questions on android and kotlin- About coroutines, scope functions ,exten...read more
  3. basics of java scr...read more

Tell us how to improve this page.

Emirates NBD Senior Software Engineer Interview Process

based on 2 interviews

Interview experience

4
  
Good
View more
Emirates NBD Senior Software Engineer Salary
based on 40 salaries
₹25 L/yr - ₹75 L/yr
267% more than the average Senior Software Engineer Salary in India
View more details

Emirates NBD Senior Software Engineer Reviews and Ratings

based on 8 reviews

2.4/5

Rating in categories

2.4

Skill development

1.8

Work-life balance

2.3

Salary

1.8

Job security

1.8

Company culture

2.1

Promotions

1.9

Work satisfaction

Explore 8 Reviews and Ratings
Senior Software Engineer
40 salaries
unlock blur

₹25 L/yr - ₹75 L/yr

Software Engineer
23 salaries
unlock blur

₹17.7 L/yr - ₹65 L/yr

Relationship Officer
22 salaries
unlock blur

₹6 L/yr - ₹17.4 L/yr

Consultant
20 salaries
unlock blur

₹17 L/yr - ₹50.5 L/yr

Assistant Manager
15 salaries
unlock blur

₹13.3 L/yr - ₹44.2 L/yr

Explore more salaries
Compare Emirates NBD with

Deutsche Bank

3.9
Compare

Equitas Small Finance Bank

4.5
Compare

HDFC Bank

3.9
Compare

Axis Bank

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