Upload Button Icon Add office photos

Nomura Holdings

Compare button icon Compare button icon Compare

Filter interviews by

Nomura Holdings Lead Developer Interview Questions and Answers

Updated 3 Aug 2023

Nomura Holdings Lead Developer Interview Experiences

2 interviews found

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

I appeared for an interview before Aug 2022.

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 - One-on-one 

(1 Question)

  • Q1. Technical questions on the skills set
Round 3 - One-on-one 

(1 Question)

  • Q1. Technical questions on the skill sets
Round 4 - One-on-one 

(1 Question)

  • Q1. Managerial round and questions around previous work exp

Interview Questionnaire 

1 Question

  • Q1. Basic of .Net Technologies.

Lead Developer Interview Questions Asked at Other Companies

Q1. how authentication and authorization works - oauth2 way of handli ... read more
Q2. Design patterns java when and what to use
Q3. difference between jwt and oauth2, how to secure rest endpoints
Q4. Java 8 streams - how they function internally
Q5. how to use async in spring boot - advantages

Lead Developer Jobs at Nomura Holdings

View all

Interview questions from similar companies

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

(2 Questions)

  • Q1. Java questions , stream api
  • Q2. Whatever you have mention in resume

Interview Preparation Tips

Interview preparation tips for other job seekers - Java basics, memory management, multithreading.
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
Selected Selected

I applied via Campus Placement and was interviewed in Apr 2024. There were 3 interview rounds.

Round 1 - Aptitude Test 

Aptitude, maths, cs fundamentals, dbms

Round 2 - Technical 

(1 Question)

  • Q1. Leetcode easy-medium
Round 3 - HR 

(1 Question)

  • Q1. General questions

Interview Preparation Tips

Interview preparation tips for other job seekers - Be confident

I appeared for an interview before Dec 2020.

Round 1 - Coding Test 

(1 Question)

Round duration - 87 minutes
Round difficulty - Medium

Timing : It was conducted in evening at 3 PM
The pacreception environment was very user friendly .
The platform was audio and video proctored.

  • Q1. 

    Binary to Decimal Conversion

    Convert a given binary number, represented as a string 'S' of size 'N', into its decimal equivalent integer and output it.

    Input:

    The first line contains an integer 'T', den...
  • Ans. 

    Convert a binary string to its decimal equivalent integer.

    • Iterate through the binary string from right to left, multiplying each digit by 2 raised to the power of its position.

    • Add the results of the multiplication to get the decimal equivalent.

    • Ensure the binary string consists only of '0' and '1' characters.

    • Handle multiple test cases by repeating the conversion process for each case.

  • Answered by AI
Round 2 - Face to Face 

(1 Question)

Round duration - 80 minutes
Round difficulty - Medium

So This was a very interactive round . There were two interviewers , one male and one female . The male interviewer was quite experienced where as female interviewer was relatively new . The Interview started by a small introduction followed by some OOPS related questions where I was tested on how i perceive the concept of OOPS in real life . Then this conversation was followed by some core concepts of JAVA like abstract classes and interfaces . Then I was asked about my projects that i mentioned in my resume , then after some healthy discussion on those projects , the interviewer started to question about DBMS , I was asked some basic queries followed by some advanced queries and then followed by a discussion on SQL vs NoSQL . Then Interviewers asked me about my tech stack and the source of my technical knowledge. Then at last I was asked that why Blackrock and this concluded my Interview.

  • Q1. 

    Ninja And The Triangle Problem Statement

    Ninja is provided with 'N' stars and the task is to construct a triangle such that the 'i'th level of the triangle uses 'i' number of stars. The goal is to make th...

  • Ans. 

    Given 'N' stars, construct a triangle with maximum height using 'i' stars in 'i'th level.

    • Calculate the maximum height of the triangle using the formula: height = floor((-1 + sqrt(1 + 8 * N)) / 2)

    • Iterate through each test case and calculate the maximum height for each 'N'.

    • Output the maximum height for each test case.

  • Answered by AI

Interview Preparation Tips

Professional and academic backgroundI completed Computer Science Engineering from TIET - Thapar Institute of Engineering And Technology. I applied for the job as SDE - 1 in MumbaiEligibility criteriaAbove 7 CGPABlackrock interview preparation:Topics to prepare for the interview - Data Structures , Algorithms , Operation Systems , OOPS , DBMS , Web DevelopmentTime required to prepare for the interview - 4 monthsInterview preparation tips for other job seekers

Tip 1 : Be precise about what to do and what not to do.
Tip 2 : Always Revise the concepts you have done in past , use prime day revision theory.
Tip 3 : Do as many projects as you can but always mention those projects in which you are very well versed.
Tip 4 : Keep on reading random news related to your favourite tech and always have an in depth knowledge of what tech you currently use.

Application resume tips for other job seekers

Tip 1 : Keep it short , precise and effective .
Tip 2 : Mention even small things that you did had an impact on other people.

Final outcome of the interviewRejected

Skills evaluated in this interview

I appeared for an interview in Jan 2022.

Round 1 - Video Call 

(3 Questions)

Round duration - 100 Minutes
Round difficulty - Hard

There were 2 interviewers. It started with an introduction from me and one of the interviewers directly started with a DSA questions. Two problems were asked and I had to code them on a compiler of my choice by sharing my screen. Level of DSA question was medium but I was severely grilled on oops. I had to create different abstract classes, interface and explain entire oops with examples.

This was followed by a set of core JAVA questions :

Difference between == and .equals() ?
Mention some methods of the object class?
Difference between TreeSet and SortedSet?
How is a String saved in JAVA?
difference between string pool and heap memory?

  • Q1. 

    Shortest Distance in a Binary Search Tree

    Your task is to determine the shortest distance between two nodes with given keys in a Binary Search Tree (BST).

    It is assured that both keys exist within the BS...

  • Ans. 

    Find the shortest distance between two nodes in a Binary Search Tree.

    • Traverse the BST to find the paths from the root to both nodes.

    • Compare the paths to find the common ancestor node.

    • Calculate the distance by adding the lengths of the paths from the common ancestor to both nodes.

    • Return the shortest distance as the result.

  • Answered by AI
  • Q2. 

    Greatest Common Divisor Problem Statement

    You are tasked with finding the greatest common divisor (GCD) of two given numbers 'X' and 'Y'. The GCD is defined as the largest integer that divides both of the...

  • Ans. 

    Find the greatest common divisor (GCD) of two given numbers 'X' and 'Y'.

    • Iterate from 1 to the minimum of X and Y, check if both X and Y are divisible by the current number, update GCD if true

    • Use Euclidean algorithm to find GCD: GCD(X, Y) = GCD(Y, X % Y)

    • If one of the numbers is 0, the other number is the GCD

    • Handle edge cases like when one of the numbers is 0 or negative

  • Answered by AI
  • Q3. 

    Bridge in Graph Problem Statement

    Given an undirected graph with V vertices and E edges, your task is to find all the bridges in this graph. A bridge is an edge that, when removed, increases the number of...

  • Ans. 

    Find all the bridges in an undirected graph.

    • Use Tarjan's algorithm to find bridges in the graph.

    • A bridge is an edge whose removal increases the number of connected components.

    • Check for bridges by removing each edge and running a DFS to see if the graph is still connected.

  • Answered by AI

Interview Preparation Tips

Professional and academic backgroundI completed Computer Science Engineering from Vellore Institute of Technology - VIT Bhopal. I applied for the job as SDE - 1 in GurgaonEligibility criteriaAbove 6CGPA, no backlogBlackrock interview preparation:Topics to prepare for the interview - DSA, oops, OS, DBMS, CN, low level designTime required to prepare for the interview - 6 monthsInterview preparation tips for other job seekers

Tip 1 : Tree is the most important topic in BlackRock recruitment process. 
Tip 2 : have atleast one live working project- host your project either on Heroku/Play Store.
Tip 3 : Practice atleast 100 leetcode medium questions.

Application resume tips for other job seekers

Tip 1 : Don't oversell yourself because interviewers will grind you on everything that you write in resume. 
Tip 2 : Mention links to your project.

Final outcome of the interviewSelected

Skills evaluated in this interview

Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
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 

70 minutes test, and 4 questions

Round 3 - One-on-one 

(1 Question)

  • Q1. Behavioural Queston
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
Not Selected

I applied via LinkedIn and was interviewed before Apr 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 - Aptitude Test 

Tell me about a time where you resolve a conflict

Round 3 - Coding Test 

Reverse a string, identify anagram

Interview Preparation Tips

Interview preparation tips for other job seekers - Keep calm and be confident in yourself

I appeared for an interview before Jun 2021.

Round 1 - Coding Test 

Round duration - 90 Minutes
Round difficulty - Medium

Round 2 - Video Call 

(1 Question)

Round duration - 60 Minutes
Round difficulty - Medium

  • Q1. 

    Validate Binary Search Tree Problem Statement

    Your task is to determine if a given binary tree with 'N' nodes is a valid Binary Search Tree (BST). A BST is defined by the following properties:

    • The lef...
  • Ans. 

    Validate if a given binary tree is a valid Binary Search Tree (BST) based on its properties.

    • Check if the left subtree of a node has only nodes with data less than the node's data.

    • Verify if the right subtree of a node has only nodes with data greater than the node's data.

    • Ensure that both the left and right subtrees are also binary search trees.

    • Implement a validation function for a BST.

    • Output 'true' if the binary tree is

  • Answered by AI
Round 3 - HR 

Round duration - 60 Minutes
Round difficulty - Easy

Interview Preparation Tips

Eligibility criteria8 CGPABlackrock interview preparation:Topics to prepare for the interview - Data Structure , Oops , Dynamic Programming, Memory Management, DBMSTime required to prepare for the interview - 2 MonthsInterview preparation tips for other job seekers

Tip 1 : Pratice regularly atleast 5 problem . Make it habit .Try to cover Leetcode medium questions as many as possible 
Tip 2 : Be through with your projects . At some point interviewer will ask you some project related questions 
Tip 3 : Be strong in your CS fundamentals.

Application resume tips for other job seekers

Tip 1 : Do not put irrelevant information such as DOB
Tip 2 : Put only those skill which you can defend in cross questioning

Final outcome of the interviewSelected

Skills evaluated in this interview

Interview Preparation Tips

Round: Resume Shortlist
Experience: Resume was asked for in the beginning of the selection procedure.

Round: Technical Interview
Experience: In the interview they asked me HR and core field related questions. They asked me about myself and my family. They also asked me questions from my CV.
The questions from the core field were mainly from accounts. Topics covered were:-
1. Accrued incomes.
2. Outstanding incomes.
3. Golden rules and principles.
4. Quasi rent (from economics).
5. Questions from accounts/economics course material of college.

College Name: LADY SHRI RAM COLLEGE

Nomura Holdings Interview FAQs

How many rounds are there in Nomura Holdings Lead Developer interview?
Nomura Holdings interview process usually has 4 rounds. The most common rounds in the Nomura Holdings interview process are One-on-one Round and Resume Shortlist.
How to prepare for Nomura Holdings Lead 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 Nomura Holdings. The most common topics and skills that interviewers at Nomura Holdings expect are Investment Banking, Financial Services, Asset Management, Information Technology and Oracle.
What are the top questions asked in Nomura Holdings Lead Developer interview?

Some of the top questions asked at the Nomura Holdings Lead Developer interview -

  1. Technical questions on the skills ...read more
  2. Technical questions on the skill s...read more
  3. Basic of .Net Technologi...read more

Tell us how to improve this page.

Nomura Holdings Lead Developer Interview Process

based on 1 interview

Interview experience

5
  
Excellent
View more

Interview Questions from Similar Companies

MNC Group Interview Questions
4.3
 • 104 Interviews
Blackrock Interview Questions
3.8
 • 99 Interviews
YES SECURITIES Interview Questions
4.0
 • 15 Interviews
View all
Nomura Holdings Lead Developer Salary
based on 65 salaries
₹14.5 L/yr - ₹34.5 L/yr
26% more than the average Lead Developer Salary in India
View more details

Nomura Holdings Lead Developer Reviews and Ratings

based on 6 reviews

4.3/5

Rating in categories

3.2

Skill development

4.9

Work-life balance

4.1

Salary

4.8

Job security

4.7

Company culture

3.6

Promotions

3.9

Work satisfaction

Explore 6 Reviews and Ratings
Lead Developer

Mumbai

6-11 Yrs

Not Disclosed

Explore more jobs
Analyst
838 salaries
unlock blur

₹3.8 L/yr - ₹16.3 L/yr

Senior Analyst
744 salaries
unlock blur

₹4.4 L/yr - ₹17 L/yr

Assistant Manager
421 salaries
unlock blur

₹6 L/yr - ₹23.6 L/yr

Associate
413 salaries
unlock blur

₹12 L/yr - ₹41 L/yr

Vice President
197 salaries
unlock blur

₹20 L/yr - ₹70 L/yr

Explore more salaries
Compare Nomura Holdings with

Blackrock

3.8
Compare

Muthoot Homefin India

3.9
Compare

Adarsh Credit Co-Operative Society

4.0
Compare

Debtcare Enterprises

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