Upload Button Icon Add office photos
Engaged Employer

i

This company page is being actively managed by NAB Innovation Center India Team. If you also belong to the team, you can get access from here

NAB Innovation Center India Verified Tick

Compare button icon Compare button icon Compare

Filter interviews by

NAB Innovation Center India Interview Questions and Answers

Updated 30 Jun 2025
Popular Designations

NAB Innovation Center India Interview Experiences

12 interviews found

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

I appeared for an interview in Jan 2025.

Round 1 - Coding Test 

There is two rounds of coding test one is offline and another is online
offline has 3 coding test it was easy
online has 1 machine java coding test it was little bit tough i able to pass with 100% uses cases

Round 2 - Coding Test 

This came
There is a board made of two rows and N columns. The board is represented by two strings, rowl and row2, made of characters 'R', 'W' and/or '?'. A board is balanced if, in each row and in each column, the number of characters 'R' is equal to the number of characters 'w'. For example, the following board is balanced:
?RW?WR ?WR?RW
and the following board is not balanced:
W?WR? R??W?
(there are two characters 'w' and one character 'R' in the first row).
The question marks ('?') can be replaced with 'w' or 'R'. What is the minimum number of replacements needed to balance the board?
Write a function:
class Solution { public int solution (String row1, String row2);
}
that, given two strings row1 and row2 made of N characters each, returns the minimum number of replacements needed to balance the board. If it is not possible to balance the board, the function should return -1.
Examples:
1. For row1 = "W?WR?" and row2 = "R??W?", the board initially looks as follows:
W?WR?
R??W?
The last question mark in the first row and the second question mark in the second row
can be replaced with 'R'. The last question mark in the second row can be replaced with 'w'. After these replacements, the board is balanced and looks as follows:
W?WRR R?RWW
The function should return 3.
2. For row1 = "R?R??" and row2 = "??W??", five replacements are needed to balance the board:
R?RWW W?WRR
The function should return 5.
3. For row1 = "RR?" and row2 = "?R?", it is not possible to balance the board. The function should return -1.
4. For row1 = "www??" and row2 = "RRR??", it is not possible to balance the board. The function should return -1.
5. For row1 = "?RW?WR" and row2 = "?WR?RW", the board is already balanced. The function should return 0.
Write an efficient algorithm for the following assumptions:
⚫ row1 and row2 are made only of the characters 'W', 'R' and/or '?'";
⚫ row1 and row2 have the same length, equal to N;
• N is an integer within the range [1..100,000].

Round 3 - Technical 

(2 Questions)

  • Q1. How microservices communicate with each other
  • Ans. 

    Microservices communicate with each other through APIs and messaging protocols.

    • Microservices communicate via RESTful APIs, allowing them to make requests and receive responses.

    • Message brokers like RabbitMQ or Kafka are used for asynchronous communication between microservices.

    • Service discovery tools like Consul or Eureka help microservices locate and communicate with each other.

    • Microservices can also use gRPC for high-...

  • Answered by AI
  • Q2. Simple java use case scenario which include sorting
  • Ans. 

    A Java use case scenario demonstrating sorting of an array of strings alphabetically.

    • Create an array of strings: String[] fruits = {"Banana", "Apple", "Cherry"};

    • Use Arrays.sort() method to sort: Arrays.sort(fruits);

    • Print sorted array: System.out.println(Arrays.toString(fruits)); // Output: [Apple, Banana, Cherry]

    • Sorting can be customized using a Comparator for case-insensitive sorting.

  • Answered by AI
Round 4 - Behavioral 

(3 Questions)

  • Q1. About project implemented
  • Q2. What technologies used in current company
  • Ans. 

    Our current company uses a variety of technologies including cloud computing, data analytics, and machine learning.

    • Cloud computing services such as AWS or Azure

    • Data analytics tools like Tableau or Power BI

    • Machine learning algorithms implemented using Python or R

  • Answered by AI
  • Q3. Some general technical scenarios how it will be solved
Round 5 - HR 

(1 Question)

  • Q1. They ask your expectations no negotiation you need to accept whatever they have in your budget

Interview Preparation Tips

Interview preparation tips for other job seekers - try to complete machine coding with 100% score that will impress them and your chances of selection in NAB

Quality Engineer Interview Questions & Answers

user image Akash Kumar

posted on 30 Jun 2025

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

I appeared for an interview in May 2025, where I was asked the following questions.

  • Q1. What questions did the interviewers ask regarding data structures, testing frameworks, Git, and your project during the tester interview?
  • Q2. What is the 3 bulbs and 3 switches puzzle, and what is the stock problem in data structures?

Interview Preparation Tips

Interview preparation tips for other job seekers - Also, focus on the HR interview.
Interview experience
3
Average
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
Selected Selected

I appeared for an interview in Jul 2024.

Round 1 - Aptitude Test 

Assignment concerning Anti-Money Laundering (AML), transaction monitoring, and fraud analysis.

Round 2 - One-on-one 

(1 Question)

  • Q1. Can you introduce yourself and describe your skills, qualities, and the knowledge you have gained over time?
  • Ans. 

    I am a highly skilled Senior Analyst with expertise in data analysis, problem-solving, and project management.

    • Proficient in data analysis tools such as Excel, SQL, and Tableau

    • Strong problem-solving skills with a track record of improving processes and efficiency

    • Experienced in project management, leading cross-functional teams to successful outcomes

    • Excellent communication and presentation skills, able to convey complex ...

  • Answered by AI
Round 3 - One-on-one 

(1 Question)

  • Q1. What questions do you have about the job profile, the skills you possess, and how you can effectively demonstrate those skills?
Round 4 - HR 

(1 Question)

  • Q1. What is your experience with salary negotiations?
  • Ans. 

    I have extensive experience with salary negotiations in previous roles.

    • I have successfully negotiated salary increases during annual performance reviews.

    • I have negotiated starting salaries for new hires to ensure competitive compensation.

    • I am familiar with industry standards and market rates, allowing me to negotiate effectively.

    • I have received training on negotiation techniques to improve my skills in this area.

  • Answered by AI
Interview experience
5
Excellent
Difficulty level
Hard
Process Duration
-
Result
Not Selected

I appeared for an interview in Jan 2025.

Round 1 - Coding Test 

The first round was the codility test online, we were given 120 minutes to solve 3 problems

1: find the smallest char combination from a alphabet string for example
If String S= “adobe”;
The out put should be: ab

3: if there is five person, two of them 1 single room, and three of them are ok with twin sharing, how many rooms should they require

Int[] A={1,1,2,2,2};

The first two will have 1 room each, the another two would be adjusted in one, and for the last one we would require another room, so total 4 rooms are required

Interview Preparation Tips

Interview preparation tips for other job seekers - Do codility example tests before going to the centre

Software Engineer Interview Questions & Answers

user image Pradeep Bairwa

posted on 4 Dec 2024

Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-

I applied via LinkedIn

Round 1 - Coding Test 

3 Questions easy, medium and hard

Round 2 - One-on-one 

(2 Questions)

  • Q1. Minimum deletion
  • Q2. Array and string

Operations Associate Interview Questions & Answers

user image Aditya singh Bhadauria

posted on 19 May 2025

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

I appeared for an interview in Apr 2025, where I was asked the following questions.

  • Q1. About yourself introduce
  • Q2. What is psib

Data Analyst Interview Questions & Answers

user image Anonymous

posted on 7 Jan 2025

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

Coding test on SQL and Python questions

Are these interview questions helpful?

Associate Interview Questions & Answers

user image Anonymous

posted on 16 Jan 2025

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

A great overall experience.

Round 2 - One-on-one 

(1 Question)

  • Q1. Introduce yourself
  • Ans. 

    I am a highly motivated and detail-oriented individual with a background in finance and a passion for problem-solving.

    • Background in finance

    • Detail-oriented

    • Strong problem-solving skills

  • Answered by AI
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - One-on-one 

(1 Question)

  • Q1. Basic questions about wfm
Round 2 - One-on-one 

(1 Question)

  • Q1. Basic questions about efm

Analyst Interview Questions & Answers

user image Aditi Pandey

posted on 8 Sep 2024

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

I appeared for an interview before Sep 2023.

Round 1 - Aptitude Test 

Aptitude test includes reasoning,English

Round 2 - One-on-one 

(2 Questions)

  • Q1. Tell me about your self
  • Ans. 

    I am a detail-oriented analyst with a strong background in data analysis and problem-solving skills.

    • I have a Bachelor's degree in Economics with a focus on statistical analysis

    • I have experience using tools like Excel, SQL, and Tableau for data analysis

    • I have successfully completed projects that involved forecasting trends and identifying key insights

  • Answered by AI
  • Q2. Why you want to join
  • Ans. 

    I am passionate about data analysis and problem-solving, and I believe this role will provide me with the opportunity to utilize my skills and contribute to the success of the team.

    • Passionate about data analysis and problem-solving

    • Believe role will allow me to utilize skills and contribute to team success

  • Answered by AI
Round 3 - HR 

(2 Questions)

  • Q1. Where are you located
  • Ans. 

    I am located in New York City, specifically in the Financial District.

    • Located in New York City

    • Specifically in the Financial District

    • Easy access to public transportation

  • Answered by AI
  • Q2. When can you join
  • Ans. 

    I can join within two weeks of receiving an offer.

    • I can start within two weeks of receiving an offer.

    • My current notice period is two weeks.

    • I am available to start immediately.

  • Answered by AI

Top trending discussions

View All
Interview Tips & Stories
1w
toobluntforu
·
works at
Cvent
Can speak English, can’t deliver in interviews
I feel like I can't speak fluently during interviews. I do know english well and use it daily to communicate, but the moment I'm in an interview, I just get stuck. since it's not my first language, I struggle to express what I actually feel. I know the answer in my head, but I just can’t deliver it properly at that moment. Please guide me
Got a question about NAB Innovation Center India?
Ask anonymously on communities.

NAB Innovation Center India Interview FAQs

How many rounds are there in NAB Innovation Center India interview?
NAB Innovation Center India interview process usually has 2-3 rounds. The most common rounds in the NAB Innovation Center India interview process are One-on-one Round, Coding Test and Technical.
What are the top questions asked in NAB Innovation Center India interview?

Some of the top questions asked at the NAB Innovation Center India interview -

  1. simple java use case scenario which include sort...read more
  2. what technologies used in current comp...read more
  3. how microservices communicate with each ot...read more
How long is the NAB Innovation Center India interview process?

The duration of NAB Innovation Center India interview process can vary, but typically it takes about less than 2 weeks to complete.

Tell us how to improve this page.

Overall Interview Experience Rating

4.6/5

based on 15 interview experiences

Difficulty level

Moderate 71%
Hard 29%

Duration

Less than 2 weeks 86%
2-4 weeks 14%
View more

Interview Questions from Similar Companies

ICICI Bank Interview Questions
4.0
 • 2.6k Interviews
HDFC Bank Interview Questions
3.9
 • 2.4k Interviews
Axis Bank Interview Questions
3.7
 • 1.6k Interviews
IDFC FIRST Bank Interview Questions
3.9
 • 750 Interviews
IndusInd Bank Interview Questions
3.5
 • 673 Interviews
Bandhan Bank Interview Questions
3.7
 • 621 Interviews
Yes Bank Interview Questions
3.7
 • 474 Interviews
View all

NAB Innovation Center India Reviews and Ratings

based on 27 reviews

2.5/5

Rating in categories

2.2

Skill development

2.8

Work-life balance

2.9

Salary

2.5

Job security

2.4

Company culture

1.8

Promotions

2.2

Work satisfaction

Explore 27 Reviews and Ratings
Senior Associate
20 salaries
unlock blur

₹5.3 L/yr - ₹12.3 L/yr

Analyst
9 salaries
unlock blur

₹6 L/yr - ₹13.7 L/yr

Associate Vice President
9 salaries
unlock blur

₹17.1 L/yr - ₹36.2 L/yr

Senior Analyst
9 salaries
unlock blur

₹7.8 L/yr - ₹29.6 L/yr

Senior Vice President
7 salaries
unlock blur

₹39 L/yr - ₹60 L/yr

Explore more salaries
Compare NAB Innovation Center India with

HDFC Bank

3.9
Compare

ICICI Bank

4.0
Compare

Axis Bank

3.7
Compare

Kotak Mahindra Bank

3.7
Compare
write
Share an Interview