Upload Button Icon Add office photos

Filter interviews by

NRI Financial Technologies Associate Software Engineer Interview Questions and Answers

Updated 29 Jul 2017

19 Interview questions

An Associate Software Engineer was asked
Q. Explain 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 b...

An Associate Software Engineer was asked
Q. Explain the difference between an ArrayList and a 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 provid...

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
Q2. Intersection of Two Arrays II Given two integer arrays ARR1 and A ... read more
asked in Accenture
Q3. Write a function to determine if a given string is a valid passwo ... read more
asked in Clarivate
Q4. Best Time to Buy and Sell Stock II Problem Statement Given the st ... read more
asked in CGI Group
Q5. Frog Jump Problem Statement A frog is positioned on the first ste ... read more
An Associate Software Engineer was asked
Q. Explain NAND, NOT, and AND gates.
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.

An Associate Software Engineer was asked
Q. Explain the Binary Search Tree data structure.
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...

An Associate Software Engineer was asked
Q. 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.

An Associate Software Engineer was asked
Q. Implement the NOT logic gate using only NAND gates.
Ans. 

Constructing a NOT gate using only NAND gates, demonstrating the universality of NAND logic.

  • A NAND gate outputs false only when all its inputs are true.

  • To create a NOT gate, connect both inputs of a NAND gate to the same signal.

  • If the input is 0, the output will be 1; if the input is 1, the output will be 0.

  • Example: For input A, connect A to both inputs of the NAND gate: NOT A = NAND(A, A).

An Associate Software Engineer was asked
Q. How do you maintain relationships between tables if you need to break them?
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

Are these interview questions helpful?
An Associate Software Engineer was asked
Q. What is a 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.

An Associate Software Engineer was asked
Q. What are the drawbacks of mesh topology, and how can they 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 ...

An Associate Software Engineer was asked
Q. Explain mesh topology and its applications, particularly in a college network.
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...

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
  • Ans. 

    Constructing a NOT gate using only NAND gates, demonstrating the universality of NAND logic.

    • A NAND gate outputs false only when all its inputs are true.

    • To create a NOT gate, connect both inputs of a NAND gate to the same signal.

    • If the input is 0, the output will be 1; if the input is 1, the output will be 0.

    • Example: For input A, connect A to both inputs of the NAND gate: NOT A = NAND(A, A).

  • Answered by AI
  • 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
  • Ans. 

    Ordering t-shirts for 100 people involves planning, design, sourcing, and logistics to ensure timely delivery.

    • 1. Determine the design: Collaborate with a designer to create a t-shirt design that reflects the event or purpose.

    • 2. Choose the t-shirt type: Select the fabric, style, and color based on the target audience and event theme.

    • 3. Sizing: Collect size information from all participants to ensure proper fit (e.g., S,...

  • Answered by AI
  • Q3. Build table(s) based on your descriptions
  • Ans. 

    Design a database schema for a simple e-commerce application with users, products, and orders.

    • Users table: Contains user_id, name, email, and password.

    • Products table: Contains product_id, name, description, price, and stock_quantity.

    • Orders table: Contains order_id, user_id, product_id, quantity, and order_date.

    • Relationships: Users can have multiple orders, and each order can contain multiple products.

  • Answered by AI
  • 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
  • Ans. 

    Identifying primary and foreign keys is crucial for database integrity and relationships between tables.

    • A primary key uniquely identifies each record in a table. Example: 'user_id' in a 'Users' table.

    • A foreign key establishes a relationship between two tables. Example: 'user_id' in 'Orders' table referencing 'Users'.

    • Primary keys should be unique and not null. Example: 'product_id' in 'Products' table.

    • Foreign keys can a...

  • Answered by AI
  • 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

Top trending discussions

View All
Interview Tips & Stories
4d (edited)
a team lead
Why are women still asked such personal questions in interview?
I recently went for an interview… and honestly, m still trying to process what just happened. Instead of being asked about my skills, experience, or how I could add value to the company… the questions took a totally unexpected turn. The interviewer started asking things like When are you getting married? Are you engaged? And m sure, if I had said I was married, the next question would’ve been How long have you been married? What does my personal life have to do with the job m applying for? This is where I felt the gender discrimination hit hard. These types of questions are so casually thrown at women during interviews but are they ever asked to men? No one asks male candidates if they’re planning a wedding or how old their kids are. So why is it okay to ask women? Can we please stop normalising this kind of behaviour in interviews? Our careers shouldn’t be judged by our relationship status. Period.
Got a question about NRI Financial Technologies?
Ask anonymously on communities.

Interview questions from similar companies

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 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 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 applied via Recruitment Consultant and was interviewed in Dec 2020. There were 3 interview rounds.

Interview Questionnaire 

4 Questions

  • Q1. API testing methods
  • Ans. 

    API testing methods involve functional, performance, security, and exploratory testing.

    • Functional testing ensures that the API meets the requirements and specifications.

    • Performance testing checks the API's response time, throughput, and resource utilization.

    • Security testing verifies the API's authentication, authorization, and encryption mechanisms.

    • Exploratory testing involves ad-hoc testing to discover defects and usa...

  • Answered by AI
  • Q2. Difference between sanity and smoke
  • Ans. 

    Sanity and Smoke are types of software testing. Sanity tests a specific functionality while Smoke tests the entire system.

    • Sanity testing is a narrow and deep testing approach while Smoke testing is a broad and shallow testing approach.

    • Sanity testing is performed after a small change in code while Smoke testing is performed after a major change in code.

    • Sanity testing is used to check if the critical functionalities are ...

  • Answered by AI
  • Q3. Difference between retesting and regression
  • Ans. 

    Retesting is testing the same functionality again after fixing the defects. Regression is testing the unchanged functionality after making changes.

    • Retesting is done to ensure that the defects have been fixed and the functionality is working as expected.

    • Regression is done to ensure that the changes made to the software have not affected the existing functionality.

    • Retesting is a subset of regression testing.

    • Retesting is ...

  • Answered by AI
  • Q4. Bug life cycle

Interview Preparation Tips

Interview preparation tips for other job seekers - It was technical based interview round.

Skills evaluated in this interview

I applied via Naukri.com and was interviewed in Jul 2020. There were 4 interview rounds.

Interview Questionnaire 

5 Questions

  • Q1. How to implement Sqlite database in React Native?
  • Q2. What are generator functions?
  • Ans. 

    Generator functions are functions that can be paused and resumed, allowing for lazy evaluation of data.

    • Generator functions use the yield keyword to pause execution and return a value.

    • They can be used to generate an infinite sequence of values.

    • They are memory efficient as they only generate values when needed.

    • Example: function* myGenerator() { yield 1; yield 2; yield 3; }

    • Example: const infiniteGenerator = function*() { ...

  • Answered by AI
  • Q3. How to implement push notifications in Android and iOS?
  • Ans. 

    Push notifications can be implemented in Android and iOS using Firebase Cloud Messaging (FCM) and Apple Push Notification service (APNs) respectively.

    • For Android, integrate FCM SDK in the app and use FCM console to send notifications.

    • For iOS, create an APNs certificate, configure the app to receive notifications, and use APNs to send notifications.

    • Both platforms require handling of notification payload in the app to di...

  • Answered by AI
  • Q4. How do you use in your last app?
  • Ans. 

    I used React Native for my last app.

    • Developed UI components using React Native

    • Integrated APIs to fetch and display data

    • Implemented Redux for state management

    • Used Firebase for authentication and database

    • Optimized app performance using React Native Debugger

  • Answered by AI
  • Q5. What is the difference between functional components and non functional components?
  • Ans. 

    Functional components are stateless and return UI elements based on input props, while non-functional components have state and can change UI based on user interaction.

    • Functional components are simpler and easier to test than non-functional components.

    • Non-functional components can have state and lifecycle methods, while functional components cannot.

    • Examples of functional components include buttons, labels, and icons, w...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Its Hard and requires deep knowledge of your technical skills.

Skills evaluated in this interview

Are these interview questions helpful?

I applied via Approached by Company and was interviewed in May 2022. There were 5 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 

Contains 50 question over g-form

Round 3 - Coding Test 

It has 8 questions on coderbyte.

Round 4 - Technical 

(1 Question)

  • Q1. All about data structure.
Round 5 - HR 

(1 Question)

  • Q1. Tell about family background?

Interview Preparation Tips

Interview preparation tips for other job seekers - Keep hands-on with data structures.
Also thought of additional approach to solve problem.
Interview experience
5
Excellent
Difficulty level
Easy
Process Duration
2-4 weeks
Result
Selected Selected

I applied via Referral and was interviewed in Feb 2024. There were 2 interview rounds.

Round 1 - Aptitude Test 

Aptitude test was easy but difficult

Round 2 - Technical 

(2 Questions)

  • Q1. Technical questions linked list
  • Q2. Array binary search Dp
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
Selected Selected

I applied via Approached by Company and was interviewed before Apr 2023. There were 2 interview rounds.

Round 1 - One-on-one 

(1 Question)

  • Q1. About java mainly
Round 2 - HR 

(2 Questions)

  • Q1. What aspires you most
  • Ans. 

    I'm inspired by the potential of technology to solve real-world problems and improve lives through innovation and creativity.

    • The ability to create software that enhances user experience, like developing an app that simplifies daily tasks.

    • Working on open-source projects that contribute to community development, such as collaborating on a tool for educational purposes.

    • Learning from industry leaders and innovators, like a...

  • Answered by AI
  • Q2. Tell me about project

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. Suppose you have to send a unbreakable box along with its key you need to send ...read more
  2. Offered me cold drink then looked through my resume and went straightaway to my...read more
  3. How to maintain relation between the broken tables if at all i require breaki...read more

Tell us how to improve this page.

Compare NRI Financial Technologies with

Maxgen Technologies

4.6
Compare

JoulestoWatts Business Solutions

3.1
Compare

Value Point Systems

3.5
Compare

F1 Info Solutions and Services

3.8
Compare
write
Share an Interview