Filter interviews by
I appeared for an interview in Mar 2025, where I was asked the following questions.
I have diverse experience in software development, focusing on system architecture and team collaboration.
Worked as a software engineer at XYZ Corp, developing scalable web applications using Java and Spring Boot.
Led a team of 5 in a project that improved system performance by 30% through code optimization and refactoring.
Collaborated with cross-functional teams to integrate APIs, enhancing user experience and function...
I possess a diverse range of technical skills, including programming, data analysis, and cloud computing.
Proficient in programming languages such as Python and Java, with experience in developing web applications.
Skilled in data analysis using tools like SQL and Excel, having worked on projects that involved data visualization.
Experienced in cloud computing platforms like AWS, where I deployed scalable applications and...
I applied via Naukri.com and was interviewed before Sep 2023. There were 2 interview rounds.
Partial view is a reusable view component in ASP.NET MVC which can be rendered within a view.
Partial views can be used to break down complex views into smaller, manageable components.
They can be rendered within other views using the @Html.Partial() method.
Partial views are useful for reusing code and improving maintainability of MVC applications.
Index in a database is a data structure that improves the speed of data retrieval operations.
Indexes are used to quickly locate data without having to search every row in a database table.
They are created on columns in a database table to speed up the query process.
Examples of indexes include primary keys, unique keys, and composite keys.
Hashing is a process of converting input data into a fixed-size string of bytes using a mathematical algorithm.
Hashing is used to securely store passwords by converting them into a hash value.
Hashing is used in data retrieval systems to quickly locate data based on its hash value.
Common hashing algorithms include MD5, SHA-1, and SHA-256.
Security vulnerabilities include SQL injection, cross-site scripting, and insecure direct object references.
SQL injection: attackers insert malicious SQL code into input fields to access or manipulate database
Cross-site scripting: attackers inject malicious scripts into web pages viewed by other users
Insecure direct object references: attackers access unauthorized data by manipulating object references
Java Coding questions
I applied via Walk-in and was interviewed before Aug 2022. There were 4 interview rounds.
All the arthmatic topics
Broadridge Financial Solutions interview questions for designations
I applied via Kcsgroup.com, jobs site, and was interviewed in Jun 2020. There were 3 interview rounds.
Pointers are variables that store memory addresses of other variables. They allow direct manipulation of memory.
Pointers are declared using the * symbol.
They can be used to pass values by reference.
Pointers can be used to dynamically allocate memory.
Example: int *ptr; ptr = # *ptr = 10;
Example: void swap(int *a, int *b) { int temp = *a; *a = *b; *b = temp; }
Different types of pointers include null pointers, void pointers, function pointers, and array pointers.
Null pointers: pointers that do not point to any memory location.
Void pointers: pointers that can point to any data type.
Function pointers: pointers that point to functions.
Array pointers: pointers that point to the first element of an array.
Iterate through array using pointers
Declare a pointer variable to point to the first element of the array
Use a loop to iterate through the array by incrementing the pointer
Stop the loop when the pointer reaches the end of the array
Min's angle from 5 to 5:40 is 120 degrees.
The minute hand moves 360 degrees in 60 minutes.
From 5 to 6, the minute hand moves 30 degrees per 5 minutes.
From 5 to 5:40, the minute hand moves 30 degrees per 8 minutes.
Therefore, the angle made by the minute hand is 30 degrees x 8 = 240 degrees.
However, the angle between 5 and 5:40 is only 240 degrees - 120 degrees = 120 degrees.
Get interview-ready with Top Broadridge Financial Solutions Interview Questions
I applied via Company Website and was interviewed in Apr 2020. There were 4 interview rounds.
I applied via Naukri.com and was interviewed in Sep 2018. There were 5 interview rounds.
Top trending discussions
I applied via Company Website and was interviewed before Jan 2021. There were 3 interview rounds.
Routing through a proxy involves configuring the proxy server to forward requests to the destination server.
Configure the proxy server to listen for incoming requests
Configure the proxy server to forward requests to the destination server
Configure the client to use the proxy server for outgoing requests
Use a proxy server to bypass network restrictions or improve performance
Examples: Nginx, Apache, Squid
I appeared for an interview before Jan 2021.
Round duration - 90 minutes
Round difficulty - Medium
It was conducted in Hacker rank which consisted of 10 aptitude questions that included C, C++, Java MCQ. 2 programming questions were also given.
Given an N x M
matrix filled with integers, determine the minimum sum obtainable from a path that starts at a specified cell (x, y)
and ends at the top left corner of t...
The problem involves finding the minimum sum path from a specified cell to the top left corner of a matrix.
Start from the specified cell and calculate the minimum sum path to reach the top left corner using dynamic programming.
Consider the three possible moves: down, right, and down-right diagonal.
Keep track of the minimum sum at each cell and update it based on the minimum of the three possible moves.
Finally, the mini...
Given an integer N
representing the number of pairs of parentheses, find all the possible combinations of balanced parentheses using the given number of pairs.
Generate all possible combinations of balanced parentheses for a given number of pairs.
Use backtracking to generate all possible combinations of balanced parentheses.
Keep track of the number of open and close parentheses used in each combination.
Recursively generate combinations by adding open parentheses if there are remaining, and closing parentheses if the number of open parentheses is greater than the number of clo...
Round duration - 60 minutes
Round difficulty - Medium
Technical round with questions based on data structures, oops and networking.
Create a program that counts and prints the total number of specific character types from user input. Specifically, you need to count lowercase English alphabets, numeric digi...
Create a program to count lowercase alphabets, digits, and white spaces from user input until '$' is encountered.
Read characters from input stream until '$' is encountered
Count lowercase alphabets, digits, and white spaces separately
Print the counts of each character type as three integers separated by spaces
Given an unsorted array containing 'N' integers, you are required to find 'K' largest elements from the array and return them in non-decreasing order.
The fir...
Find K largest elements in an unsorted array and return them in non-decreasing order.
Sort the array in non-decreasing order.
Return the last K elements of the sorted array.
To check internet connection on a system, you can use various methods like pinging a website or checking network status.
Use ping command to check connectivity to a website (e.g. ping www.google.com)
Check network status using network settings or command line tools
Try accessing a website or online service to verify internet connection
When you type a URL in a web browser, the browser sends a request to the server hosting the website, which then responds with the necessary files to display the webpage.
Browser checks cache for DNS resolution
If not found, browser sends a DNS query to resolve the domain name to an IP address
Browser establishes a TCP connection with the server
Browser sends an HTTP request to the server for the webpage
Server processes the...
Round duration - 60 minutes
Round difficulty - Medium
Technical round with questions based on data structures, oops and networking.
Ninja is learning about sorting algorithms, specifically those that do not rely on comparisons. Can you help Ninja implement the counting sort algorithm?
Implement counting sort algorithm to sort an array of integers without comparisons.
Count the frequency of each element in the input array.
Calculate the prefix sum of frequencies to determine the position of each element in the sorted array.
Place each element in its correct position based on the prefix sum.
Time complexity of counting sort is O(n+k), where n is the number of elements and k is the range of input.
Example: ...
The Fibonacci series has applications in various fields such as mathematics, computer science, art, and nature.
Used in algorithms for optimization problems and dynamic programming.
Found in nature, such as the arrangement of leaves on a stem, the branching of trees, and the spiral shapes of shells.
Applied in financial markets for predicting stock prices and analyzing market trends.
Utilized in art and design for creating
Round duration - 30 minutes
Round difficulty - Easy
HR round where the interviewer asked questions to know more about me.
Tip 1 : Must do Previously asked Interview as well as Online Test Questions.
Tip 2 : Go through all the previous interview experiences from Codestudio and Leetcode.
Tip 3 : Do at-least 2 good projects and you must know every bit of them.
Tip 1 : Have at-least 2 good projects explained in short with all important points covered.
Tip 2 : Every skill must be mentioned.
Tip 3 : Focus on skills, projects and experiences more.
I appeared for an interview before Jan 2021.
Round duration - 60 minutes
Round difficulty - Easy
I couldn't find an optimal approach to the first question, so she skipped that question and proceeded to next questions. Remaining questions I have answered satisfactorily.
Given an array/list of positive integers and an integer K, determine if there exists a subset whose sum equals K.
Provide true
if such a subset exists, otherwise r...
Given an array of positive integers and an integer K, determine if there exists a subset whose sum equals K.
Use dynamic programming to solve this problem efficiently
Create a 2D array to store if a subset with a particular sum exists
Iterate through the array and update the 2D array accordingly
Check if the value at the end of the iteration is true for the given K
Given an undirected and disconnected graph G(V, E) where V vertices are numbered from 0 to V-1, and E represents edges, your task is to output the BFS traversal starting from the ...
BFS traversal in a disconnected graph starting from vertex 0.
Implement BFS algorithm to traverse the graph starting from vertex 0.
Use a queue to keep track of visited nodes and their neighbors.
Ensure to print the traversal sequence in the correct order.
Handle disconnected components by checking for unvisited nodes.
Follow the BFS approach of exploring neighbors before moving to the next level.
Round duration - 60 minutes
Round difficulty - Easy
I told that my strength is problem solving and I can always find a way when there is a bottle-neck. Gave some examples of my experiences while doing my assignments.
Given a string STR
consisting of words separated by spaces, your task is to replace all spaces between words with the characters "@40".
The first line contains an integ...
Replace spaces in a string with '@40'.
Iterate through each character in the string
Replace spaces with '@40'
Return the modified string
Tip 1 : Must do Previously asked Interview as well as Online Test Questions.
Tip 2 : Go through all the previous interview experiences from Codestudio and Leetcode.
Tip 3 : Do at-least 2 good projects and you must know every bit of them.
Tip 1 : Have at-least 2 good projects explained in short with all important points covered.
Tip 2 : Every skill must be mentioned.
Tip 3 : Focus on skills, projects and experiences more.
Some of the top questions asked at the Broadridge Financial Solutions Member Technical interview for experienced candidates -
based on 4 interviews
2 Interview rounds
based on 95 reviews
Rating in categories
Process Analyst
1.4k
salaries
| ₹1.8 L/yr - ₹6.2 L/yr |
Senior Member Technical
1.3k
salaries
| ₹5.3 L/yr - ₹20 L/yr |
Member Technical
594
salaries
| ₹3 L/yr - ₹11.9 L/yr |
Technical Lead
593
salaries
| ₹9.1 L/yr - ₹34 L/yr |
Senior Process Analyst
572
salaries
| ₹2.2 L/yr - ₹9 L/yr |
Paytm
Fiserv
PhonePe
KFintech