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 and Answers

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

Top trending discussions

View All
Data Science & Analytics
6d
xgabru
Verified Icon
·
works at
Carelon Global Solutions
My entire career is derailed’: Analyst says accidental file download led to termination and blacklisting
🤯 Accidental click, career lost? A chilling remote work warning. Just read a horrifying Hindustan Times story: an analyst's career was allegedly torpedoed – termination and blacklisting – by an accidental file download to their personal laptop while working remotely. This isn't just about IT policy; it's the terrifying reality of our digital lives. How many of us have had that gut-wrenching "oh no" moment from a misclick? It makes you wonder: How forgiving are company IT systems? What support is there for honest mistakes? Are we, remote workers, truly aware of every digital tripwire? http://nauk.in/Tmd2IOpH My heart goes out to this person. Imagine your entire future crumbling from one innocent click. It's a nightmare scenario that demands better clarity and empathy from employers. What are your thoughts on this?
FeedCard Image
Got a question about Nomura Research Institute Financial Technologies India?
Ask anonymously on communities.

Interview questions from similar companies

I applied via Naukri.com and was interviewed before May 2020. There were 3 interview rounds.

Interview Questionnaire 

3 Questions

  • Q1. Native Android
  • Q2. Java Oops concepts
  • Q3. Previously Worked project

Interview Preparation Tips

Interview preparation tips for other job seekers - They are Very Good. Be confident and Best of Luck

Senior Engineer Interview Questions Asked at Other Companies

Q1. What does the 'M' signify in M20, M25, and M30 grades of concrete ... read more
asked in Nagarro
Q2. Write a program that takes an integer N and an array of integers ... read more
asked in Tata Elxsi
Q3. What is Quality Assurance. Difference between Quality assurance a ... read more
Q4. Is it possible to work with multiple threads in core data? If so, ... read more
Q5. When would you perform a half or full engine overhaul?
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(2 Questions)

  • Q1. Oops concepts and projects
  • Q2. Collections, multithreading

Interview Preparation Tips

Interview preparation tips for other job seekers - be prepared for interview on your skills and projects
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Coding Test 

It consist of 4 DSA ques and few quiz and opps concept based ques
1st was string based Medium level ques.
2nd was a ques based on 2 pointer
And other 2 was from Vector and Linked list easy ques

Round 2 - Technical 

(3 Questions)

  • Q1. It was stock buy and sell ques on leetcode where we need to find Max profit and what day to buy and sell
  • Q2. 2d array ques to print natural numbers in spiral form
  • Ans. 

    Print natural numbers in spiral form using a 2D array.

    • Create a 2D array with dimensions n x n.

    • Initialize variables for row and column boundaries.

    • Iterate through the array in a spiral pattern, filling in natural numbers.

  • Answered by AI
  • Q3. Hard level linked list ques

Skills evaluated in this interview

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

I appeared for an interview before Jun 2024, where I was asked the following questions.

  • Q1. The Egg Drop Problem: You are given a building with a certain number of floors and a limited number of eggs. The goal is to determine the highest floor from which you can drop an egg without it breaking, u...
  • Q2. What is the significance of star behavior in a particular context?
  • Ans. 

    Star behavior signifies the performance and scalability of systems, often used in distributed computing and network analysis.

    • In distributed systems, star behavior indicates how well a system can handle increased loads without performance degradation.

    • For example, in a star topology network, the central hub's performance is crucial as it connects all nodes.

    • In software design, star behavior can refer to how components int...

  • Answered by AI
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Aptitude Test 

Exam to test reasoning and aptitude, and speed to answer them

Round 2 - Coding Test 

Dsa question easy to medium level

Round 3 - Behavioral 

(5 Questions)

  • Q1. Just culture fit question, and medium dsa questions
  • Q2. Print pyramid from Fibonacci sequence
  • Q3. Linked list sort
  • Ans. 

    Sorting a linked list can be efficiently done using merge sort due to its O(n log n) time complexity.

    • Use merge sort as it works well with linked lists due to its divide-and-conquer approach.

    • Split the linked list into two halves using the slow and fast pointer technique.

    • Recursively sort both halves and then merge them back together.

    • Example: For a linked list 4 -> 2 -> 1 -> 3, the sorted list will be 1 -> 2 -...

  • Answered by AI
  • Q4. Design SQL tables for library management system
  • Q5. Valid bracket dsa question
  • Ans. 

    Check if a string of brackets is valid by ensuring every opening bracket has a corresponding closing bracket in the correct order.

    • Use a stack to keep track of opening brackets. Example: For '({[]})', push '(', '{', '[' onto the stack.

    • For each closing bracket, check if it matches the top of the stack. Example: For '}', pop '{' from the stack.

    • If the stack is empty at the end, the brackets are valid. Example: '()[]{}' is ...

  • Answered by AI

Skills evaluated in this interview

Interview experience
1
Bad
Difficulty level
Moderate
Process Duration
4-6 weeks
Result
Selected Selected

I applied via Campus Placement and was interviewed before Jun 2023. There were 2 interview rounds.

Round 1 - Coding Test 

Java , Spring, SQL questions asked without one data structure basic live coding question

Round 2 - HR 

(2 Questions)

  • Q1. What are your expectation to work with us
  • Q2. How will you manage to improve with us
Are these interview questions helpful?
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 Feb 2023. There were 2 interview rounds.

Round 1 - Coding Test 

For fresher, you need a basic knowledge of collection and string manipulating.

Round 2 - Assignment 

Project related they will ask you how API works, what's the flow of your application how you implement such kind of questions they may ask

Interview Preparation Tips

Topics to prepare for i-exceed technology solutions Software Engineer interview:
  • Java
  • API
  • Data Collection
Interview experience
1
Bad
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Naukri.com and was interviewed before Oct 2023. There were 2 interview rounds.

Round 1 - Technical 

(2 Questions)

  • Q1. Javascript question
  • Q2. Few javascript coding questions
Round 2 - Behavioral 

(1 Question)

  • Q1. Technical questions
Interview experience
2
Poor
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

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

Round 1 - Coding Test 

Technical sql questions

Round 2 - Coding Test 

Oops concept and sql db questions

Round 3 - Technical 

(1 Question)

  • Q1. Dependency injection

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.

Overall Interview Experience Rating

4/5

based on 1 interview experience

Difficulty level

Hard 100%

Duration

2-4 weeks 100%
View more

Interview Questions from Similar Companies

FNZ Interview Questions
2.8
 • 36 Interviews
Kissht Finance Interview Questions
3.9
 • 36 Interviews
Verifone Interview Questions
3.3
 • 26 Interviews
Uni Cards Interview Questions
3.9
 • 25 Interviews
Experian Interview Questions
3.7
 • 23 Interviews
indiagold Interview Questions
4.2
 • 23 Interviews
iServeU Interview Questions
3.8
 • 20 Interviews
View all
Associate Software Engineer
122 salaries
unlock blur

₹5 L/yr - ₹11 L/yr

Software Engineer
76 salaries
unlock blur

₹4.8 L/yr - ₹17 L/yr

Senior Software Engineer
23 salaries
unlock blur

₹9.5 L/yr - ₹20.9 L/yr

Software Developer
17 salaries
unlock blur

₹9.6 L/yr - ₹28.6 L/yr

Associate Software Engineer 2
16 salaries
unlock blur

₹7.2 L/yr - ₹10 L/yr

Explore more salaries
Compare Nomura Research Institute Financial Technologies India with

Kissht Finance

3.9
Compare

VSoft Technologies

3.2
Compare

Innoviti Technologies Private Limited

3.1
Compare

Verifone

3.3
Compare
write
Share an Interview