Filter interviews by
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...
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...
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.
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...
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.
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).
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
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.
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 ...
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...
I appeared for an interview in Sep 2016.
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.
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).
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...
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...
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.
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...
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
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
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...
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 ...
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.
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
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,...
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.
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.
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.
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
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
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...
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
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
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...
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...
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...
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.
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 ...
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...
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.
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.
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
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
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 ...
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
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
Top trending discussions
posted on 10 May 2020
I applied via Recruitment Consultant and was interviewed in Apr 2020. There were 4 interview rounds.
posted on 15 Jul 2022
I applied via Referral and was interviewed before Jul 2021. There were 3 interview rounds.
If you are a fresher , then this is for you else almost no coding test for experienced candidates.
posted on 30 Jan 2021
I applied via Recruitment Consultant and was interviewed in Dec 2020. There were 3 interview rounds.
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...
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 ...
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 ...
I applied via Naukri.com and was interviewed in Jul 2020. There were 4 interview rounds.
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*() { ...
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...
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
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...
posted on 8 Nov 2022
I applied via Approached by Company and was interviewed in May 2022. There were 5 interview rounds.
Contains 50 question over g-form
It has 8 questions on coderbyte.
I applied via Referral and was interviewed in Feb 2024. There were 2 interview rounds.
Aptitude test was easy but difficult
I applied via Approached by Company and was interviewed before Apr 2023. There were 2 interview rounds.
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...
Some of the top questions asked at the NRI Financial Technologies Associate Software Engineer interview -
Senior Business Analyst
7
salaries
| ₹12.2 L/yr - ₹15.8 L/yr |
Maxgen Technologies
JoulestoWatts Business Solutions
Value Point Systems
F1 Info Solutions and Services