Filter interviews by
I applied via Recruitment Consulltant and was interviewed before Jan 2022. There were 3 interview rounds.
Fintech is a rapidly growing industry that combines finance and technology to provide innovative financial solutions.
Fintech companies use technology to disrupt traditional financial services
Examples include mobile payment apps, robo-advisors, and blockchain-based solutions
Fintech has the potential to increase financial inclusion and improve access to capital
Regulatory challenges and cybersecurity risks are major conce
I applied via Approached by Company and was interviewed in Oct 2024. There were 4 interview rounds.
Codility Test General C# and SQL
Create a class Employees with fields FirstName LastName, DoB, and Gender. Return avg age of employees and avg age by genders.
Create a class Employees with fields FirstName, LastName, DoB, and Gender
Calculate the average age of all employees
Calculate the average age by genders
I am familiar with design patterns such as Singleton, Factory, Observer, and MVC.
Singleton pattern ensures a class has only one instance and provides a global point of access to it.
Factory pattern creates objects without specifying the exact class of object that will be created.
Observer pattern defines a one-to-many dependency between objects so that when one object changes state, all its dependents are notified and up...
Optimizing SQL queries involves using indexes, minimizing data retrieval, avoiding unnecessary joins, and optimizing query structure.
Use indexes on columns frequently used in WHERE clauses
Minimize data retrieval by selecting only necessary columns
Avoid unnecessary joins by using EXISTS or IN clauses instead
Optimize query structure by using appropriate joins and subqueries
Types of indexes include clustered, non-clustered, unique, composite, and filtered indexes.
Clustered index: Physically reorders the data in the table based on the index key.
Non-clustered index: Contains a sorted list of references to the table data rows.
Unique index: Ensures that no two rows have the same values in the indexed columns.
Composite index: Index that is created on multiple columns.
Filtered index: Index that...
Yes, I have read SQL Execution Plans to optimize query performance.
I have analyzed SQL Execution Plans to identify bottlenecks in queries.
I have used SQL Execution Plans to optimize query performance by understanding how the database engine executes queries.
I have made query optimization recommendations based on SQL Execution Plans.
I have experience with tools like SQL Server Management Studio to view and analyze Execu
I applied via Campus Placement and was interviewed in Nov 2024. There were 3 interview rounds.
Logical reasoning, grammar, and coding: two basic level questions.
posted on 12 Dec 2024
I applied via Campus Placement and was interviewed in Nov 2024. There were 2 interview rounds.
Soo easy aptitude exam asked questions
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...
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.
posted on 15 Nov 2024
I applied via Referral and was interviewed in Oct 2024. There were 2 interview rounds.
Merge two sorted linked lists into a single sorted linked list
Create a new linked list to store the merged result
Iterate through both input linked lists and compare nodes to determine the order in which they should be added to the result list
Handle cases where one list is longer than the other
To check if parentheses are balanced, use a stack data structure to keep track of opening and closing parentheses.
Use a stack to push opening parentheses and pop when encountering a closing parenthesis
If stack is empty when encountering a closing parenthesis, return false
After iterating through all parentheses, if stack is empty, return true
The right view of a Binary Search Tree shows the nodes that are visible when viewing the tree from the right side.
The right view of a Binary Search Tree includes the rightmost node at each level.
Nodes at each level that are not visible from the right side are not included in the right view.
Example: For the Binary Search Tree with values 1, 2, 3, 4, 5, the right view would be 1, 3, 5.
I applied via LinkedIn and was interviewed in Nov 2024. There were 2 interview rounds.
API chaining is the process of making multiple API calls in a sequence to achieve a desired outcome.
Identify the APIs that need to be called in sequence
Extract necessary data from the response of one API call to use in the next call
Handle errors and exceptions that may occur during the chaining process
Use tools like Postman, RestAssured, or programming languages like Python to automate the chaining process
Page object for login functionality
Create a LoginPage class with methods for entering username, password, and clicking login button
Use locators to identify the username input field, password input field, and login button
Implement a method to perform the login action and return the next page object
Eslint file extension is .eslintrc.js and rules can be combined using extends property
Eslint file extension is .eslintrc.js
Rules can be combined using the 'extends' property in the eslint configuration file
For example, to combine rules from multiple eslint configurations, you can use: 'extends: ['eslint:recommended', 'plugin:react/recommended']
Program to check if braces are well-formed
Use a stack to keep track of opening braces
Iterate through the input string and push opening braces onto the stack
When a closing brace is encountered, pop from the stack and check if it matches the corresponding opening brace
If stack is empty at the end and all braces are matched, return true
posted on 28 Oct 2024
I applied via Approached by Company and was interviewed in Sep 2024. There was 1 interview round.
Maintaining security in Microservices involves implementing authentication, authorization, encryption, and monitoring.
Implement authentication and authorization mechanisms to control access to microservices.
Use encryption to secure communication between microservices.
Implement monitoring and logging to detect and respond to security incidents.
Regularly update dependencies and patches to address security vulnerabilities...
Kafka is a distributed streaming platform while RabbitMQ is a message broker.
Kafka is designed for high-throughput, fault-tolerant, real-time data streaming.
RabbitMQ is a traditional message broker that follows the AMQP protocol.
Kafka uses a publish-subscribe model while RabbitMQ uses a message queuing model.
Kafka is horizontally scalable and provides strong durability guarantees.
RabbitMQ supports multiple messaging pr...
CQRS pattern can be used in scenarios where read and write operations need to be separated for better scalability and performance.
CQRS can be used in applications with complex domain models that require different models for reading and writing data.
It can be beneficial in scenarios where read operations heavily outnumber write operations.
CQRS is useful when there is a need to optimize read and write operations independ...
Implementing eventual consistency in a relational DB involves careful design and use of techniques like conflict resolution and versioning.
Use timestamp-based conflict resolution to handle conflicting updates.
Implement versioning to track changes and resolve conflicts.
Consider using distributed transactions or distributed consensus algorithms like Paxos or Raft.
Use compensating transactions to rollback changes in case ...
posted on 14 Nov 2024
I applied via Company Website and was interviewed in Oct 2024. There were 2 interview rounds.
KNN algorithm is a simple and effective machine learning algorithm for classification and regression tasks.
KNN stands for K-Nearest Neighbors.
It is a non-parametric, lazy learning algorithm.
Works by finding the K closest training examples in feature space to a given input data point.
Classification: Assign the most common class among the K nearest neighbors.
Regression: Take the average of the K nearest neighbors' target...
I applied via LinkedIn and was interviewed in Jul 2024. There were 3 interview rounds.
Supporting application for SSO enablement involves configuring authentication settings, integrating with identity providers, and testing functionality.
Configure authentication settings within the application to enable SSO
Integrate the application with identity providers such as Okta, Azure AD, or PingFederate
Test the SSO functionality to ensure seamless user experience
Provide documentation and training for users on how
I handle outages by following established procedures and prioritize tasks based on impact.
Immediately assess the situation to determine the root cause of the outage
Communicate with stakeholders to keep them informed of the issue and expected resolution time
Work with cross-functional teams to troubleshoot and resolve the outage as quickly as possible
Document the outage incident and steps taken for future reference and i...
I handle change management by implementing structured processes, communication, and stakeholder involvement.
Implementing a change management process to track and document changes
Communicating changes effectively to all stakeholders
Involving key stakeholders in decision-making and planning
Ensuring proper testing and validation of changes before implementation
Enable SSO for SaaS applications by integrating with identity providers and configuring authentication protocols.
Integrate with identity providers such as Okta, Azure AD, or Google Workspace
Configure authentication protocols like SAML, OAuth, or OpenID Connect
Implement single sign-on functionality in the application code
Ensure secure communication between the application and the identity provider
RTO stands for Recovery Time Objective in disaster recovery, representing the targeted duration of time within which a business process must be restored after a disaster.
RTO is a crucial metric in disaster recovery planning, indicating the maximum acceptable downtime for a system or process.
It helps organizations determine the resources and strategies needed to recover from a disaster within a specific timeframe.
For ex...
I primarily use SSH (Secure Shell) to connect servers.
SSH (Secure Shell) is a widely used application for securely connecting to servers
Other applications like PuTTY, OpenSSH, and WinSCP can also be used for server connections
Yes, I am experienced in vulnerability management.
I have experience in identifying, prioritizing, and mitigating vulnerabilities in systems and networks.
I am proficient in using vulnerability scanning tools such as Nessus, Qualys, and OpenVAS.
I have implemented patch management processes to address vulnerabilities in a timely manner.
I have conducted vulnerability assessments and penetration testing to identify weakness...
I have experience working with both connected and disconnected applications.
I have experience developing applications that can function both online and offline.
I have worked on projects where data synchronization is crucial for seamless user experience.
Examples include mobile apps that can work offline and sync data when connected to the internet.
Yes, I have experience in taking care of the Authorization part in various projects.
Implemented role-based access control (RBAC) to manage user permissions
Configured and managed authentication protocols such as OAuth and SAML
Worked on setting up access control lists (ACLs) for network security
Experience with managing user roles and permissions in Active Directory
Utilized single sign-on (SSO) solutions for seamless user
Assistant System Engineer
12
salaries
| ₹3.1 L/yr - ₹7 L/yr |
Client Relationship Manager
4
salaries
| ₹3 L/yr - ₹5 L/yr |
Assistant Software Engineer
3
salaries
| ₹3.1 L/yr - ₹4 L/yr |
Senior Android Developer
3
salaries
| ₹6.5 L/yr - ₹8.6 L/yr |
FIS
HighRadius
Broadridge Financial Solutions
PayPal