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
3.9

based on 74 Reviews

Filter interviews by

Nomura Research Institute Financial Technologies India Associate Software Developer Interview Questions and Answers

Updated 11 Jul 2023

Nomura Research Institute Financial Technologies India Associate Software Developer Interview Experiences

1 interview found

Interview experience
4
Good
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 3 interview rounds.

Round 1 - Aptitude Test 

It consisted of 90 questions from various sections like C++, Java, DBMS, Aptitude, Reasoning and web technology.

Round 2 - Technical 

(4 Questions)

  • Q1. Palindrome check in string.
  • Ans. 

    Check if a string is a palindrome or not.

    • Iterate through the string from both ends and compare characters.

    • Ignore spaces and punctuation while checking for palindrome.

    • Examples: 'racecar' is a palindrome, 'hello' is not a palindrome.

  • Answered by AI
  • Q2. Minimum difference element in sorted array.
  • Ans. 

    Find the element with minimum difference between adjacent elements in a sorted array.

    • Iterate through the array and calculate the difference between each pair of adjacent elements.

    • Keep track of the minimum difference found so far.

    • Return the element corresponding to the minimum difference.

  • Answered by AI
  • Q3. Balanced parentheses.
  • Q4. Normalization and sql query in dbms.
  • Ans. 

    Normalization is the process of organizing data in a database to reduce redundancy and improve data integrity. SQL queries are used to retrieve and manipulate data in a database management system.

    • Normalization involves breaking down data into smaller, more manageable tables to reduce redundancy.

    • SQL queries are used to retrieve specific data from a database using SELECT, INSERT, UPDATE, and DELETE statements.

    • Normalizati...

  • Answered by AI
Round 3 - HR 

(2 Questions)

  • Q1. Tell me about yourself.
  • Q2. Questions related to project and resume.

Interview Preparation Tips

Interview preparation tips for other job seekers - Dbms is very important subject and easy to medium question of dsa in technical round is good to know. Resume should be well prepared.

Skills evaluated in this interview

Interview questions from similar companies

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

I applied via Campus Placement and was interviewed in Nov 2024. There were 2 interview rounds.

Round 1 - Aptitude Test 

Soo easy aptitude exam asked questions

Round 2 - Technical 

(3 Questions)

  • Q1. What is oops in Java,fibo, and sorting
  • Ans. 

    OOPs in Java refers to Object-Oriented Programming concepts, fibo likely refers to Fibonacci sequence, and sorting refers to arranging elements in a specific order.

    • OOPs in Java includes concepts like classes, objects, inheritance, polymorphism, and encapsulation.

    • Fibo likely refers to the Fibonacci sequence, where each number is the sum of the two preceding ones (e.g. 0, 1, 1, 2, 3, 5, ...).

    • Sorting involves arranging el...

  • Answered by AI
  • Q2. Why is garbage collector is used in java etc more of java questions
  • Q3. Can main can be overloaded and overrided
  • Ans. 

    Yes, main can be overloaded but not overridden in C++.

    • Main can be overloaded by defining multiple functions with different parameters.

    • Example: int main() and int main(int argc, char* argv[])

    • Main cannot be overridden as it is a static function of the program.

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Be confident and get your basics right
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
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
-
Process Duration
-
Result
-
Round 1 - Technical 

(2 Questions)

  • Q1. Data Structure and algorithm
  • Q2. System design question
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
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(3 Questions)

  • Q1. Design patterns
  • Q2. Azure questions
  • Q3. Technical experience
Round 2 - One-on-one 

(2 Questions)

  • Q1. Behavioural Questions
  • Q2. Technical challenges
Round 3 - HR 

(2 Questions)

  • Q1. Benefits and Organisation info
  • Q2. Basic screening
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(2 Questions)

  • Q1. What is for loop,
  • Ans. 

    A for loop is a control flow statement for specifying iteration, which allows code to be executed repeatedly.

    • Used to iterate over a sequence of elements

    • Consists of initialization, condition, and increment/decrement expressions

    • Example: for(int i=0; i<5; i++) { // code block }

  • Answered by AI
  • Q2. What is jobs and queues
  • Ans. 

    Jobs and queues are concepts used in computer science to manage tasks and data flow in a systematic manner.

    • Jobs refer to individual tasks or processes that need to be executed.

    • Queues are data structures that store jobs in a specific order for processing.

    • Jobs are added to the queue and processed in a first-in, first-out (FIFO) manner.

    • Queues help in managing the order of execution and prioritizing tasks based on their im...

  • Answered by AI
Round 2 - One-on-one 

(1 Question)

  • Q1. What are containers in laravel
  • Ans. 

    Containers in Laravel are lightweight and portable units that package up code and all its dependencies, allowing for easy deployment and scaling.

    • Containers in Laravel are created using Docker, a popular containerization platform.

    • They provide a consistent environment for running applications, regardless of the underlying infrastructure.

    • Containers help in isolating applications and their dependencies, making it easier to...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Learn about laravel containers, loops, routes, middlewares, jobs and queues, and artisan cli

Skills evaluated in this interview

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

Nomura Research Institute Financial Technologies India Interview FAQs

How many rounds are there in Nomura Research Institute Financial Technologies India Associate 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 Associate Software Developer interview?

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

  1. Minimum difference element in sorted arr...read more
  2. Normalization and sql query in db...read more
  3. Palindrome check in stri...read more

Tell us how to improve this page.

22% more than the average Associate Software Developer Salary in India
View more details
Associate Software Engineer
115 salaries
unlock blur

₹4.6 L/yr - ₹9.5 L/yr

Software Engineer
72 salaries
unlock blur

₹4.8 L/yr - ₹14.5 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.1
Compare

Accenture

3.9
Compare

TCS

3.7
Compare

Wipro

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