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 Software Developer Interview Questions and Answers

Updated 18 Jul 2023

Nomura Research Institute Financial Technologies India Software Developer Interview Experiences

1 interview found

Interview experience
3
Average
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Campus Placement and was interviewed in Jan 2023. There were 4 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 

Basic quant questions and logical reasoning, c++ and java

Round 3 - Technical 

(2 Questions)

  • Q1. Find the palindrome in the string?
  • Ans. 

    To find palindromes in a string, compare characters from both ends towards the middle.

    • Iterate through each string in the array

    • Check if the string is equal to its reverse to determine if it's a palindrome

    • Examples: 'level', 'radar', 'madam'

  • Answered by AI
  • Q2. Difference between linked list and array?
  • Ans. 

    Arrays store elements in contiguous memory locations, while linked lists store elements in nodes with pointers to the next node.

    • Arrays have fixed size, while linked lists can dynamically grow or shrink.

    • Accessing elements in arrays is faster (O(1)), while in linked lists it is slower (O(n)).

    • Inserting or deleting elements in arrays can be inefficient, while in linked lists it is efficient.

    • Example: Array - [1, 2, 3, 4], L...

  • Answered by AI
Round 4 - HR 

(2 Questions)

  • Q1. Are you comfortable with relocating?
  • Q2. Tell us about your family members?

Interview Preparation Tips

Topics to prepare for Nomura Research Institute Financial Technologies India Software Developer interview:
  • Oops
  • Dbms
  • C++
  • Java
Interview preparation tips for other job seekers - Confidence

Skills evaluated in this interview

Top trending discussions

View All
Interview Tips & Stories
2w
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 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

Software Developer Interview Questions Asked at Other Companies

asked in Amazon
Q1. Maximum Subarray Sum Problem Statement Given an array of integers ... read more
asked in Rakuten
Q2. Merge Two Sorted Arrays Problem Statement Given two sorted intege ... read more
asked in Amazon
Q3. Minimum Number of Platforms Needed Problem Statement You are give ... read more
asked in Cognizant
Q4. Nth Fibonacci Number Problem Statement Calculate the Nth term in ... read more
asked in PhonePe
Q5. Form a Triangle Problem Statement You are given an array of integ ... read more
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
More than 8 weeks
Result
Selected Selected

I applied via Iserveu and was interviewed before Apr 2023. There was 1 interview round.

Round 1 - Technical 

(1 Question)

  • Q1. Data structure and algo
  • Ans. Hackerrank
  • Answered by refreshingcrab

Interview Preparation Tips

Interview preparation tips for other job seekers - Good
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(1 Question)

  • Q1. Concurrent modification exception Java multithreading java collection framework oops
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
Are these interview questions helpful?
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
Interview experience
4
Good
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Campus Placement and was interviewed before Jan 2024. There were 3 interview rounds.

Round 1 - Coding Test 

Easy coding questions DSA

Round 2 - Technical 

(2 Questions)

  • Q1. Reverse a linked list
  • Ans. 

    Reverse a linked list by changing the pointers direction

    • Start with three pointers: current, previous, and next

    • Iterate through the linked list, updating the pointers to reverse the direction

    • Update the head pointer to point to the new first node

  • Answered by AI
  • Q2. Find middle of linked list
Round 3 - Technical 

(1 Question)

  • Q1. Pick from a basket of oranges
  • Ans. 

    The question is asking to pick an orange from a basket.

    • Carefully select a ripe orange without any bruises or blemishes

    • Gently twist the orange off the stem to avoid damaging the fruit

    • Check for firmness and weight to determine ripeness

  • Answered by AI

Interview Preparation Tips

Topics to prepare for Open Financial Technologies Private Limited Software Engineer interview:
  • Easy DSA

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 Software Developer interview?
Nomura Research Institute Financial Technologies India interview process usually has 4 rounds. The most common rounds in the Nomura Research Institute Financial Technologies India interview process are Aptitude Test, Technical and HR.
What are the top questions asked in Nomura Research Institute Financial Technologies India Software Developer interview?

Some of the top questions asked at the Nomura Research Institute Financial Technologies India Software Developer interview -

  1. Difference between linked list and arr...read more
  2. Find the palindrome in the stri...read more

Tell us how to improve this page.

Overall Interview Experience Rating

3/5

based on 1 interview experience

Difficulty level

Moderate 100%

Duration

Less than 2 weeks 100%
View more
66% more than the average Software Developer Salary in India
View more details

Nomura Research Institute Financial Technologies India Software Developer Reviews and Ratings

based on 1 review

4.0/5

Rating in categories

4.0

Skill development

3.0

Work-life balance

4.0

Salary

5.0

Job security

5.0

Company culture

4.0

Promotions

3.0

Work satisfaction

Explore 1 Review and Rating
Associate Software Engineer
122 salaries
unlock blur

₹5.1 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.2
Compare
write
Share an Interview