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:
Properly align and format text in your resume. A recruiter will have to spend more time reading poorly aligned text, leading to high chances of rejection.
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

Interview questions from similar companies

I applied via Campus Placement and was interviewed before Oct 2020. There were 3 interview rounds.

Interview Questionnaire 

1 Question

  • Q1. Basics of java(OOP, strings and collections), college projects, and how I was involved in that projects.

Interview Preparation Tips

Interview preparation tips for other job seekers - The interview was a bit easy as the company came to college, they asked only the basics of java and my college projects and some HR-related questions like tell me about yourself and some time management questions about the projects and academics.
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
  • Ans. 

    Print pyramid from Fibonacci sequence

    • Generate Fibonacci sequence up to a certain number

    • Use the Fibonacci numbers to create the pyramid structure

    • Print each row of the pyramid with appropriate spacing

  • Answered by AI
  • Q3. Linked list sort
  • Q4. Design SQL tables for library management system
  • Ans. 

    Design SQL tables for library management system

    • Create tables for books, authors, members, transactions, etc.

    • Use primary and foreign keys to establish relationships between tables

    • Include columns like book title, author name, member ID, due date, etc.

  • Answered by AI
  • Q5. Valid bracket dsa question

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

I applied via Company Website

Interview Questionnaire 

2 Questions

  • Q1. Question related to security
  • Q2. Question related to Data Structure

Interview Preparation Tips

Interview preparation tips for other job seekers - Should study about various data encryption algorithms. About spring security. Data structure
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
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Job Portal and was interviewed before Jun 2023. There were 4 interview rounds.

Round 1 - Coding Test 

Scenarios base conding round

Round 2 - Coding Test 

Questions on strings in javascript.
Basic javascript and typescript.

Round 3 - One-on-one 

(1 Question)

  • Q1. Questions on cloud technologies
Round 4 - HR 

(1 Question)

  • Q1. Cultural fit and salary related discussion
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

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

Round 1 - Group Discussion 

A topic was assigned, and we need to present our perspectives.

Round 2 - Case Study 

A case study was provided about a company's sales and growth.

Round 3 - One-on-one 

(1 Question)

  • Q1. Were the questions primarily focused on personal achievements and future aspirations?
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 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 Resume Shortlist, Aptitude Test and Technical.
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.

Nomura Research Institute Financial Technologies India Software Developer Interview Process

based on 1 interview

Interview experience

3
  
Average
View more
9% 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
112 salaries
unlock blur

₹5 L/yr - ₹10 L/yr

Software Engineer
72 salaries
unlock blur

₹4.8 L/yr - ₹15.6 L/yr

Senior Software Engineer
26 salaries
unlock blur

₹6.5 L/yr - ₹20.3 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 - ₹13.4 L/yr

Explore more salaries
Compare Nomura Research Institute Financial Technologies India with

BharatPe

3.5
Compare

Kissht Finance

3.9
Compare

Verifone

3.3
Compare

VSoft Technologies

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