Upload Button Icon Add office photos

Filter interviews by

NRI Financial Technologies Associate Software Engineer Interview Questions, Process, and Tips

Updated 29 Jul 2017

Top NRI Financial Technologies Associate Software Engineer Interview Questions and Answers

  • Q1. How to maintain relation between the broken tables if at all i require breaking?
  • Q2. Which is the primary key in the table(I had constructed a single table)?
  • Q3. Explain mesh topology and how is it used in my college
View all 15 questions

NRI Financial Technologies Associate Software Engineer Interview Experiences

2 interviews found

I appeared for an interview in Sep 2016.

Interview Questionnaire 

19 Questions

  • Q1. Explain NAND NOT AND
  • Ans. 

    NAND, NOT, and AND are logical operators used in digital electronics.

    • NAND is a combination of NOT and AND operators.

    • NAND returns true only when both inputs are false.

    • NOT operator negates the input value.

    • AND operator returns true only when both inputs are true.

  • Answered by AI
  • Q2. Make Not from NAND
  • Q3. Gray Code
  • Q4. Explain Array List and List
  • Ans. 

    ArrayList is a resizable array implementation of the List interface in Java.

    • ArrayList is a dynamic array that can grow or shrink in size.

    • ArrayList allows duplicate elements and maintains insertion order.

    • ArrayList provides random access to elements using their index.

    • List is an interface in Java that represents an ordered collection of elements.

    • List allows duplicate elements and maintains insertion order.

    • List provides va...

  • Answered by AI
  • Q5. Explan Linked List
  • Ans. 

    A linked list is a data structure that consists of a sequence of nodes, where each node contains data and a reference to the next node.

    • Each node in a linked list contains a data element and a reference (link) to the next node.

    • Linked lists can be singly linked (each node has a link to the next node) or doubly linked (each node has links to both the next and previous nodes).

    • Linked lists are dynamic in size and can be eas...

  • Answered by AI
  • Q6. Explain Binary Tree
  • Ans. 

    A binary tree is a hierarchical data structure in which each node has at most two children.

    • Consists of nodes connected by edges.

    • The topmost node is called the root.

    • Each node can have at most two children, referred to as left child and right child.

    • Used for efficient searching, sorting, and organizing data.

    • Examples: family tree, file system structure.

  • Answered by AI
  • Q7. Explain Binary Search tree
  • Ans. 

    A binary search tree is a data structure that organizes elements in a hierarchical manner, allowing for efficient searching and insertion.

    • Binary search tree is a binary tree where each node has at most two children.

    • The left child of a node contains a value less than the parent node, while the right child contains a value greater than the parent node.

    • Binary search tree allows for efficient searching, insertion, and dele...

  • Answered by AI
  • Q8. Factorial Program
  • Q9. 1,2,6,42 next number
  • Q10. 1+9+9^2+9^3+.......9^1989 the unit digit will be ?
  • Q11. Suppose you have to send a unbreakable box along with its key you need to send it from Kolkata to Delhi such that no one in between can open the box and read the letter .You need to send both lock and key...
  • Q12. String Pool Locator in java
  • Ans. 

    String Pool Locator in Java

    • String pool is a special area of heap memory where string literals are stored

    • String pool helps in memory optimization by reusing common string literals

    • String.intern() method can be used to add a string to the string pool

    • String literals are automatically added to the string pool

  • Answered by AI
  • Q13. Followed by the a java program and output
  • Q14. Do you have any question for us ?
  • Q15. Introduce yourself
  • Ans. 

    I am a recent graduate with a degree in Computer Science and a passion for software development.

    • Recent graduate with a degree in Computer Science

    • Passionate about software development

    • Experience with programming languages like Java and Python

  • Answered by AI
  • Q16. Difference between leader and team member
  • Ans. 

    A leader is responsible for guiding and motivating a team, while a team member follows the leader's direction and contributes to achieving team goals.

    • Leader sets direction and goals for the team

    • Team member follows leader's direction and contributes to achieving goals

    • Leader motivates and guides team members

    • Team member supports leader and fellow team members

    • Leader takes responsibility for team's success or failure

    • Team me...

  • Answered by AI
  • Q17. Do you want to join even after reading glassdoor's review
  • Ans. 

    Yes, I would still consider joining despite the negative reviews on Glassdoor.

    • I believe that individual experiences can vary and it's important to form my own opinion.

    • I would research further and try to gather more information about the company culture and work environment.

    • I would also consider the overall reputation and growth opportunities of the company.

    • Negative reviews may not necessarily reflect the current state ...

  • Answered by AI
  • Q18. Why not Cognizant and Infoys you have both the offers is it only about package ?
  • Q19. Why NOMURA ?
  • Ans. 

    NOMURA offers cutting-edge technology, global opportunities, and a strong reputation in the financial industry.

    • NOMURA provides opportunities to work with cutting-edge technology in the financial industry.

    • NOMURA has a global presence, offering opportunities for international experience.

    • NOMURA has a strong reputation in the financial industry, providing a solid foundation for career growth.

  • Answered by AI

Interview Preparation Tips

Round: Test
Experience: The test was easy and had different sections and you can swap between section.
23 cleared it
Tips: Quants, Algorithm & Data Structure, RDBMS were easy . Focus on OOPs concept and Java/C++ the questions were tricky .
Total Questions: 47

Round: Technical Interview
Experience: The technical interview was of 40 minutes..
The longer the interview the more is interviewer trying to give you a chance don't get panic . By the way the interview had two panelist
Tips: Keep your concepts clear and if you don't know anything never bluff they will catch you

Round: HR Interview
Experience: Basic HR types questions
Tips: Just communication is seen nothing else

Round: DIRECTORS ROUND
Experience: Everyone who cleared the technical and hr round clear this one also. Just basic question why our company and all these questions. 7 people took a general HR interview at NOMURA office .
Tips: Just don't be tensed on seeing 7 people . Its a very general interview

Skill Tips: Be confident be yourself and keep your basics clear . Know about the company before going for interview .
Skills: 1)communication Skills, Logical Puzzles, C Programming, Java Programming
College Name: st.thomas college of engineering and technology

Skills evaluated in this interview

Interview Questionnaire 

27 Questions

  • Q1. Tell me something about yourself
  • Ans. 

    I am a dedicated and passionate software engineer with experience in developing web applications using various technologies.

    • I have a Bachelor's degree in Computer Science

    • I have worked on projects using Java, Python, and JavaScript

    • I am familiar with frameworks such as Spring, Django, and React

    • I enjoy learning new technologies and keeping up with industry trends

  • Answered by AI
  • Q2. Offered me cold drink then looked through my resume and went straightaway to my extracurriculars. So you have done tshirt painting so tell me the steps of ordering tshirts for 100 people in details
  • Q3. Build table(s) based on your descriptions
  • Q4. What is primary key?
  • Ans. 

    Primary key is a unique identifier for each record in a database table.

    • Primary key ensures data integrity by enforcing uniqueness.

    • It is used to establish relationships between tables.

    • Primary key can be a single column or a combination of columns.

    • It cannot have null or duplicate values.

    • Examples: ID column in a user table, ISBN in a book table.

  • Answered by AI
  • Q5. What is candidate key?
  • Ans. 

    Candidate key is a unique identifier for a record in a database table.

    • A candidate key is a column or set of columns that can uniquely identify a record in a table.

    • It must be unique and non-null for every record.

    • A table can have multiple candidate keys, but only one can be the primary key.

    • Example: Employee ID, Email ID, Passport Number can be candidate keys for an Employee table.

  • Answered by AI
  • Q6. Which is the primary key in the table(I had constructed a single table)?
  • Ans. 

    The primary key in a table uniquely identifies each row in the table.

    • Primary key is a column or a combination of columns that uniquely identifies each row in a table

    • Primary key values cannot be null or duplicate

    • Primary key is used to establish relationships between tables

    • Examples of primary keys are social security number, email address, and employee ID

  • Answered by AI
  • Q7. He asked me to introduce some more attributes in the table and then asked me if i required to break the single table?
  • Q8. How to maintain relation between the broken tables if at all i require breaking?
  • Ans. 

    Maintain relation between broken tables by using foreign keys and cascading updates/deletes.

    • Use foreign keys to establish relationships between tables

    • Use cascading updates/deletes to maintain referential integrity

    • Avoid breaking tables unnecessarily

    • Consider using a database management system that supports transactions

    • Test thoroughly to ensure data consistency

  • Answered by AI
  • Q9. Asked to mark the primary key in each table and foreign keys
  • Q10. A C program to reverse a given number
  • Ans. 

    A C program to reverse a given number

    • Take input number from user

    • Initialize a variable to store reversed number

    • Use while loop to reverse the number

    • Print the reversed number

  • Answered by AI
  • Q11. Difference between C and Java
  • Ans. 

    C is a low-level programming language while Java is a high-level programming language.

    • C is compiled while Java is interpreted

    • C has pointers while Java does not

    • Java has automatic garbage collection while C does not

    • Java is platform-independent while C is platform-dependent

    • Java has built-in support for multithreading while C does not

  • Answered by AI
  • Q12. Layered diagram of Operating System cimponents
  • Ans. 

    Operating system components are organized in a layered diagram.

    • The top layer is the user interface, which interacts with the user.

    • The next layer is the application programming interface (API), which provides a set of functions for applications to use.

    • The kernel layer is responsible for managing system resources and providing services to other layers.

    • The bottom layer is the hardware layer, which interacts with the physi...

  • Answered by AI
  • Q13. Explain mesh topology and how is it used in my college
  • Ans. 

    Mesh topology is a network design where each device is connected to every other device, forming a mesh-like structure.

    • Mesh topology provides high redundancy and fault tolerance as there are multiple paths for data to travel.

    • It offers excellent scalability as new devices can be easily added without disrupting the network.

    • Mesh topology is commonly used in wireless networks, such as Wi-Fi, where each device acts as a node...

  • Answered by AI
  • Q14. Drawback of mesh topology and how it could be solved
  • Ans. 

    Mesh topology can be difficult to manage and expensive to implement.

    • Mesh topology requires a large number of connections, making it difficult to manage.

    • It can be expensive to implement due to the high number of connections required.

    • Mesh topology can also suffer from high latency and low bandwidth.

    • One solution is to use a hybrid topology, combining mesh with other topologies like star or bus.

    • Another solution is to use r...

  • Answered by AI
  • Q15. Why Noruma?
  • Ans. 

    Noruma is a great company with a strong reputation in the industry.

    • Noruma has a track record of delivering high-quality software solutions.

    • The company values innovation and encourages employees to think outside the box.

    • Noruma has a supportive and collaborative work culture.

    • The company offers opportunities for growth and career development.

    • Noruma has a strong commitment to customer satisfaction.

  • Answered by AI
  • Q16. What would you do if your team member is not available or not contributing to a project which you need to complete urgently?
  • Ans. 

    I would try to communicate with the team member and understand the reason for their unavailability or lack of contribution.

    • I would first try to reach out to the team member and ask if everything is okay and if they need any help.

    • If the team member is not responding, I would escalate the issue to the project manager or team lead.

    • If the team member is not able to contribute due to personal reasons, I would try to find a ...

  • Answered by AI
  • Q17. What is the guarantee that you will work with us?
  • Ans. 

    I am highly motivated and committed to my work. I am excited about the opportunity to work with your team.

    • I have researched your company and am impressed with your work culture and values

    • I am passionate about software engineering and am eager to learn and grow with your team

    • I am committed to meeting deadlines and delivering high-quality work

    • I am excited about the projects your team is working on and want to be a part o

  • Answered by AI
  • Q18. What if our working language changes suddenly, would u quit ?
  • Ans. 

    No, I would not quit. I am adaptable and willing to learn new languages.

    • I am open to learning new languages and adapting to changes in the workplace.

    • I believe that being able to work with multiple languages is a valuable skill.

    • I would take the opportunity to learn the new language and improve my skills.

    • Quitting would not be a productive solution and would limit my growth as a developer.

  • Answered by AI
  • Q19. Some questions on my hobbies
  • Q20. Introduce yourself
  • Ans. 

    I am a software engineer with experience in Java and Python.

    • I have a Bachelor's degree in Computer Science.

    • I have worked on projects involving web development and data analysis.

    • I am familiar with Agile methodology and have experience working in a team.

    • I am passionate about learning new technologies and improving my skills.

  • Answered by AI
  • Q21. What is your goal in life?
  • Ans. 

    My goal in life is to constantly learn, grow and make a positive impact on the world.

    • Continuously learn and improve myself

    • Make a positive impact on the world

    • Find fulfillment and happiness in my personal and professional life

  • Answered by AI
  • Q22. How do you define success for yourself?
  • Ans. 

    Success for me is achieving my goals while maintaining a healthy work-life balance.

    • Setting achievable goals and working towards them

    • Being recognized for my hard work and contributions

    • Maintaining a positive work-life balance

    • Continuously learning and improving my skills

    • Making a positive impact on the company and its customers

  • Answered by AI
  • Q23. What are the qualities of a team member and team leader?
  • Ans. 

    Qualities of a team member and team leader include communication, collaboration, adaptability, empathy, and problem-solving skills.

    • Communication: Ability to effectively convey ideas and information to team members.

    • Collaboration: Working well with others towards a common goal.

    • Adaptability: Being flexible and able to adjust to changing circumstances.

    • Empathy: Understanding and considering the feelings and perspectives of ...

  • Answered by AI
  • Q24. Why nomura?
  • Ans. 

    Nomura is a leading global financial services firm with a strong focus on innovation and technology.

    • Nomura has a strong reputation in the financial services industry

    • The company is committed to innovation and technology

    • Nomura offers opportunities for career growth and development

    • The company has a global presence with diverse teams and cultures

    • Nomura values diversity and inclusion in the workplace

  • Answered by AI
  • Q25. We work on a single domain so are you sure you would be happy to work with finances ?
  • Ans. 

    Yes, I am comfortable working with finances and have relevant experience.

    • I have experience working with financial data and software

    • I am comfortable with financial terminology and concepts

    • I am excited to apply my skills to this domain

  • Answered by AI
  • Q26. Family related and interests related discussion
  • Q27. Do you have any question?

Interview Preparation Tips

Round: Test
Experience: Test was relatively of medium difficulty level. One must be clear with the basic concepts to clear this test with ease. The last section must be carefully attempted.
Tips: Just keep clear concepts and make a choice of Java or C++ prior to the test and practise likewise.
Duration: 60 minutes
Total Questions: 47

Round: Technical Interview
Experience: I had two interviewers in my panel and they were rather trying to make me comfortable before asking me technical questions. They know you might forget but its important you try.
Tips: You must know your subjects of choice thoroughly. Go through java if possible. Have clear concepts.

Round: HR Interview
Experience: It was a good experience since my HR focussed on my personal traits and asked me my choice domain that I would enjoy working in
Tips: Be patient and give logical answers to the questions. Study well about the company.

Round: Directors' Round
Experience: A panel consisting of 7 members had a small discussion with me. Introduction followed by what I know about the company. Also some normal HR questions may be asked.
Tips: Be confident since this round is for acquaintance and does not have someone removed for this.

Skill Tips: Prepare well!
Skills: Confidence, Logical Thinking, 1)communication Skills, Ability To Analyse
College Name: St.thomas College Of Engineering And Technology

Skills evaluated in this interview

Associate Software Engineer Interview Questions Asked at Other Companies

asked in Accenture
Q1. Triplets with Given Sum Problem Given an array or list ARR consis ... read more
asked in Gainsight
Q2. Connecting Ropes with Minimum Cost You are given 'N' ropes, each ... read more
Q3. Intersection of Two Arrays II Given two integer arrays ARR1 and A ... read more
asked in Clarivate
Q4. Best Time to Buy and Sell Stock II Problem Statement Given the st ... read more
Q5. Ninja and Alternating Largest Problem Statement Ninja is given a ... read more

Interview questions from similar companies

I applied via Walk-in and was interviewed before Mar 2021. There were 3 interview rounds.

Round 1 - Aptitude Test 

Aptitude test

Round 2 - Group Discussion 

Current affairs

Round 3 - Technical 

(1 Question)

  • Q1. Puzzle , sql related questions

Interview Preparation Tips

Interview preparation tips for other job seekers - Be yourself, whatever you know just be confident

I applied via Referral and was interviewed before Jul 2021. There were 3 interview rounds.

Round 1 - Coding Test 

If you are a fresher , then this is for you else almost no coding test for experienced candidates.

Round 2 - One-on-one 

(1 Question)

  • Q1. Javascript basics, Angular react general questions depends upon profile.
Round 3 - Behavioral 

(1 Question)

  • Q1. They asked general questions related to some hectic situation faced in previous company / project..

Interview Preparation Tips

Interview preparation tips for other job seekers - Be calm . Clear your basics . That's it.

I appeared for an interview before Sep 2020.

Round 1 - Coding Test 

(2 Questions)

Round duration - 70 Minutes
Round difficulty - Hard

  • Q1. 

    Candies Distribution Problem Statement

    Prateek is a kindergarten teacher with a mission to distribute candies to students based on their performance. Each student must get at least one candy, and if two s...

  • Ans. 

    The task is to distribute candies to students based on their performance while minimizing the total candies distributed.

    • Create an array to store the minimum candies required for each student.

    • Iterate through the students' ratings array to determine the minimum candies needed based on the adjacent ratings.

    • Consider both left-to-right and right-to-left passes to ensure fair distribution.

    • Keep track of the total candies dist

  • Answered by AI
  • Q2. 

    Merge Sort Problem Statement

    You are given a sequence of numbers, ARR. Your task is to return a sorted sequence of ARR in non-descending order using the Merge Sort algorithm.

    Explanation:

    The Merge Sort...

  • Ans. 

    Implement Merge Sort algorithm to sort a sequence of numbers in non-descending order.

    • Use Divide and Conquer approach to recursively divide the input array into two halves.

    • Merge the sorted halves to produce a completely sorted array.

    • Ensure the implementation handles the constraints specified in the problem statement.

    • Example: For input [3, 1, 4, 1, 5], the output should be [1, 1, 3, 4, 5].

  • Answered by AI

Interview Preparation Tips

Eligibility criteria8CGPAThink Future Technologies interview preparation:Topics to prepare for the interview - Data Structures, Pointers, OOPS, System Design, Algorithms, Dynamic Programming, apti , programming language , SETime required to prepare for the interview - 1 MonthInterview preparation tips for other job seekers

Tip 1 : Practice Atleast 250 Questions
Tip 2 : Do atleast 2 projects

Application resume tips for other job seekers

Tip 1 : Do not put false things on resume.
Tip 2 : Have some projects on resume.

Final outcome of the interviewRejected

Skills evaluated in this interview

I appeared for an interview before Sep 2020.

Round 1 - Coding Test 

Round duration - 50 minutes
Round difficulty - Medium

Round 2 - Face to Face 

(1 Question)

Round duration - 20 minutes
Round difficulty - Medium

  • Q1. 

    Pair Sum Problem Statement

    You are given an integer array 'ARR' of size 'N' and an integer 'S'. Your task is to find and return a list of all pairs of elements where each sum of a pair equals 'S'.

    Note:
    ...
  • Ans. 

    Given an array and a target sum, find pairs of elements that add up to the target sum.

    • Iterate through the array and for each element, check if the complement (target sum - current element) exists in a hash set.

    • If the complement exists, add the pair to the result list. Otherwise, add the current element to the hash set.

    • Sort the pairs based on the first element and then the second element to meet the required output form

  • Answered by AI
Round 3 - Face to Face 

Round duration - 20 minutes
Round difficulty - Easy

Round 4 - Face to Face 

(1 Question)

Round duration - 40 minutes
Round difficulty - Hard

  • Q1. Can you provide an example of how to use pointers in C/C++ and discuss different concepts related to them?
  • Ans. 

    Pointers in C/C++ are variables that store memory addresses. They are used to manipulate memory directly and improve performance.

    • Pointers are declared using an asterisk (*) before the variable name.

    • Pointers can be used to dynamically allocate memory using functions like malloc() and free().

    • Pointers can be used to pass variables by reference to functions.

  • Answered by AI

Interview Preparation Tips

Professional and academic backgroundI applied for the job as Software Development in GurgaonEligibility criteriaAbove 7 CGPA, No backlogsThink Future Technologies interview preparation:Topics to prepare for the interview - Data Structures,OOPS, SQL Queries, Normalization,Software Development Life Cycles, PointersTime required to prepare for the interview - 2 monthsInterview preparation tips for other job seekers

Tip 1 : Do atleast 1 project
Tip 2 : Practice Data structure programming questions
Tip 3 : Prepare concepts with examples (Coding/Numericals)

Application resume tips for other job seekers

Tip 1 : Mention Projects
Tip 2 : Mention only those technologies which you are confident enough.
Tip 3 : Mention extra curricular activities if have.

Final outcome of the interviewSelected

Skills evaluated in this interview

Interview Preparation Tips

Round: Technical Interview
Experience: this was a telephonic round : There I was asked basics of web development (e.g Session, hidden variable difference between POST and GET etc. ) and basics of PHP e.g global variables etc , little bit of mysql e.g joins , difference between left and right joins.

Round: Technical Interview
Experience: This was pretty much about interview rounds. I got the offer.

Skills: Core java, OOP, PHP
College Name: na

I applied via Recruitment Consultant and was interviewed in Apr 2020. There were 4 interview rounds.

Interview Questionnaire 

2 Questions

  • Q1. Object Oriented Concepts and basic list/tuple/dictionary/ datetime conversion
  • Q2. Project done in last company and how will you help Saama?

Interview Preparation Tips

Interview preparation tips for other job seekers - Try to frame answers end to end and stick to what you have done. Don't try to exaggerate.
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Aptitude Test 

1 hour online test ..

Round 2 - Technical 

(1 Question)

  • Q1. Programming related questions.
Round 3 - Technical 

(1 Question)

  • Q1. DSA round (easy to medium)
Round 4 - HR 

(1 Question)

  • Q1. Technical+ hr round
Round 5 - Behavioral 

(1 Question)

  • Q1. Technical questions.
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(1 Question)

  • Q1. Data structures algorithms

NRI Financial Technologies Interview FAQs

What are the top questions asked in NRI Financial Technologies Associate Software Engineer interview?

Some of the top questions asked at the NRI Financial Technologies Associate Software Engineer interview -

  1. How to maintain relation between the broken tables if at all i require breaki...read more
  2. Which is the primary key in the table(I had constructed a single tabl...read more
  3. Explain mesh topology and how is it used in my coll...read more

Tell us how to improve this page.

Compare NRI Financial Technologies with

Maxgen Technologies

4.5
Compare

Value Point Systems

3.7
Compare

JoulestoWatts Business Solutions

2.9
Compare

F1 Info Solutions and Services

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