Upload Button Icon Add office photos
Engaged Employer

i

This company page is being actively managed by Nomura Research Institute Financial Technologies India Team. If you also belong to the team, you can get access from here

Filter interviews by

Nomura Research Institute Financial Technologies India Senior Engineer Interview Questions, Process, and Tips

Updated 8 Feb 2024

Nomura Research Institute Financial Technologies India Senior Engineer Interview Experiences

1 interview found

Interview experience
4
Good
Difficulty level
Hard
Process Duration
2-4 weeks
Result
Not Selected

I applied via LinkedIn and was interviewed in Aug 2023. There were 2 interview rounds.

Round 1 - Technical 

(4 Questions)

  • Q1. What are the new features of Java 8
  • Ans. 

    Java 8 introduced several new features including lambda expressions, streams, and default methods.

    • Lambda expressions enable functional programming and simplify code.

    • Streams provide a new way to process collections and perform operations in parallel.

    • Default methods allow interfaces to have method implementations.

    • Other features include the Optional class, Date and Time API, and Nashorn JavaScript engine.

  • Answered by AI
  • Q2. What is lambda and optional
  • Ans. 

    Lambda is an anonymous function in programming, while Optional is a container object that may or may not contain a non-null value.

    • Lambda is used to write concise and functional code by allowing the creation of small, reusable functions.

    • Optional is used to handle null values in a more explicit and safe way, reducing the chances of NullPointerExceptions.

    • Lambda expressions can be used with functional interfaces, allowing ...

  • Answered by AI
  • Q3. What is a singleton design pattern
  • Ans. 

    A singleton design pattern restricts the instantiation of a class to a single object.

    • Singleton pattern ensures that only one instance of a class is created.

    • It provides a global point of access to the instance.

    • Commonly used in scenarios where a single instance is required to control actions or resources.

    • Example: Database connection manager, logger, configuration manager.

  • Answered by AI
  • Q4. What is an observer design pattern
  • Ans. 

    Observer design pattern is a behavioral design pattern that allows objects to subscribe and receive updates from a subject.

    • It is used to establish a one-to-many dependency between objects.

    • The subject maintains a list of observers and notifies them of any state changes.

    • Observers can be added or removed dynamically.

    • It promotes loose coupling between objects.

    • Example: A weather station broadcasts weather updates to multipl

  • Answered by AI
Round 2 - HR 

(2 Questions)

  • Q1. What do you know about NRIFT
  • Q2. Are you okay with Kolkata location

Skills evaluated in this interview

Interview questions from similar companies

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

Coding round with 3 different programs, where we need to pass test cases

Round 2 - Technical 

(2 Questions)

  • Q1. Basic Javascript questions
  • Q2. Advanced javascript questions
Round 3 - Technical 

(2 Questions)

  • Q1. Advanced javascript questions
  • Q2. Project related questions
Round 4 - Behavioral 

(2 Questions)

  • Q1. Understanding project and your role
  • Q2. Understanding your impact on current project
Interview experience
5
Excellent
Difficulty level
Hard
Process Duration
2-4 weeks
Result
Selected Selected

I applied via LinkedIn and was interviewed in Jun 2024. There were 5 interview rounds.

Round 1 - Coding Test 

Java coding questions, basic Java questions.

Round 2 - Technical 

(2 Questions)

  • Q1. Java basics questions.
  • Q2. Live coding.
Round 3 - Technical 

(2 Questions)

  • Q1. Discussion on previous experience and projects.
  • Q2. System design question
Round 4 - Technical 

(2 Questions)

  • Q1. Questions on SQL, Java advanced, personal projects, Java frameworks, UI based questions, Agile methodologies.
  • Q2. Interview discussion with the whole team.
Round 5 - HR 

(2 Questions)

  • Q1. Benefits discussion.
  • Q2. Salary discussion.
Interview experience
3
Average
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
Selected Selected

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

Round 1 - Coding Test 

Min and max value from an array of integers, reverse of a string

Round 2 - Technical 

(2 Questions)

  • Q1. Data Structures, Algorithms, Understand Common Problem Patterns,
  • Q2. Advance Laravel and PHP
Interview experience
5
Excellent
Difficulty level
Hard
Process Duration
Less than 2 weeks
Result
Not Selected

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

Round 1 - Aptitude Test 

Questions on skills and work exp

Round 2 - Aptitude Test 

Normal questions about servuce sector

Round 3 - Group Discussion 

GD on domain knowledge

Interview Preparation Tips

Interview preparation tips for other job seekers - Keep upgrading
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Personal Interview 

(1 Question)

  • Q1. Tell about yourself and current job role
  • Ans. 

    I am a Senior Manager with 10+ years of experience in leading cross-functional teams and driving strategic initiatives.

    • Led a team of 20+ employees in developing and implementing a new marketing strategy

    • Managed a budget of $1 million for a product launch campaign

    • Collaborated with senior leadership to set company goals and objectives

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

I applied via Company Website and was interviewed in May 2024. There was 1 interview round.

Round 1 - One-on-one 

(1 Question)

  • Q1. C++ 11, 14 Deep dive, Multi-threading etc
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
-

I applied via Naukri.com and was interviewed in Dec 2023. There was 1 interview round.

Round 1 - Technical 

(2 Questions)

  • Q1. Basic concepts of accounting, Capital markets , Trade operation
  • Q2. Basic information on bond assets equity assets

Interview Preparation Tips

Interview preparation tips for other job seekers - Make through Investment management materials
Interview experience
3
Average
Difficulty level
Moderate
Process Duration
6-8 weeks
Result
No response

I applied via Company Website and was interviewed before Aug 2023. There were 3 interview rounds.

Round 1 - Panel interview 

(1 Question)

  • Q1. Skills and experience
Round 2 - Panel interview 

(1 Question)

  • Q1. Behavioral question
Round 3 - Panel interview 

(1 Question)

  • Q1. Project management

Interview Preparation Tips

Interview preparation tips for other job seekers - Star method
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 - Technical 

(2 Questions)

  • Q1. Next Greater Element in an array
  • Ans. 

    Find the next greater element in an array for each element

    • Iterate through the array and for each element, find the next greater element

    • Use a stack to keep track of elements whose next greater element is not yet found

    • If the current element is greater than the top element of the stack, pop the stack and mark the popped element's next greater element as the current element

    • Push the current element onto the stack

    • If there ar...

  • Answered by AI
  • Q2. Question based on Sql inner join

Interview Preparation Tips

Interview preparation tips for other job seekers - Solve LC questions and go through HLD design videos

Skills evaluated in this interview

Nomura Research Institute Financial Technologies India Interview FAQs

How many rounds are there in Nomura Research Institute Financial Technologies India Senior Engineer interview?
Nomura Research Institute Financial Technologies India interview process usually has 2 rounds. The most common rounds in the Nomura Research Institute Financial Technologies India interview process are Technical and HR.
What are the top questions asked in Nomura Research Institute Financial Technologies India Senior Engineer interview?

Some of the top questions asked at the Nomura Research Institute Financial Technologies India Senior Engineer interview -

  1. What are the new features of Jav...read more
  2. What is a singleton design patt...read more
  3. What is an observer design patt...read more

Tell us how to improve this page.

Nomura Research Institute Financial Technologies India Senior Engineer Interview Process

based on 1 interview

Interview experience

4
  
Good
View more
Associate Software Engineer
114 salaries
unlock blur

₹5 L/yr - ₹9.5 L/yr

Software Engineer
74 salaries
unlock blur

₹4.8 L/yr - ₹15.6 L/yr

Senior Software Engineer
25 salaries
unlock blur

₹6.5 L/yr - ₹17.7 L/yr

Associate Software Engineer 2
14 salaries
unlock blur

₹7.2 L/yr - ₹9.4 L/yr

Software Developer
11 salaries
unlock blur

₹5 L/yr - ₹11 L/yr

Explore more salaries
Compare Nomura Research Institute Financial Technologies India with

IBM

4.0
Compare

Accenture

3.8
Compare

TCS

3.7
Compare

Wipro

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