Upload Button Icon Add office photos

Filter interviews by

Broadridge Financial Solutions Member Technical Interview Questions and Answers

Updated 27 Apr 2025

15 Interview questions

A Member Technical was asked 9mo ago
Q. What is a partial view?
Ans. 

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.

A Member Technical was asked 9mo ago
Q. What is an index in a database?
Ans. 

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.

Member Technical Interview Questions Asked at Other Companies

Q1. There are two ropes, each taking 30 minutes to burn completely. H ... read more
Q2. What is the angle made by the minute hand when it moves from 5 to ... read more
asked in HCLTech
Q3. What is DFMEA, VAVE etc... and all other design parameters (that ... read more
Q4. What are different kind of security vulnerabilities and how to ha ... read more
Q5. Write a program to add two command line arguments in C shell.
A Member Technical was asked 9mo ago
Q. What is Hashing?
Ans. 

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.

A Member Technical was asked 9mo ago
Q. Write a program to find the occurrences of each element and sort the array in increasing order.
Ans. 

Program to find occurrences of each element and sort array in increasing order.

  • Use a HashMap to store the count of each element in the array.

  • Sort the array based on the occurrences of each element.

  • Handle edge cases like empty array or null input.

A Member Technical was asked
Q. What is your expected CTC and percentage increase from your previous role?
Ans. 

Expected CTC and percentage

  • Expected CTC refers to the salary package that the candidate is looking for

  • Percentage refers to the academic percentage achieved by the candidate

  • The candidate can mention their expected CTC based on their experience and industry standards

  • The academic percentage can showcase the candidate's academic performance and potential

A Member Technical was asked
Q. What is object oriented programming?
Ans. 

Object oriented programming is a programming paradigm that uses objects to represent and manipulate data.

  • It focuses on encapsulation, inheritance, and polymorphism.

  • Encapsulation hides the implementation details of an object from the outside world.

  • Inheritance allows a class to inherit properties and methods from another class.

  • Polymorphism allows objects of different classes to be treated as if they were of the same...

A Member Technical was asked
Q. What is abstraction in OOPS?
Ans. 

Abstraction in OOP is the process of hiding unnecessary details and exposing only essential features of an object.

  • Abstraction focuses on what an object does rather than how it does it.

  • It allows us to create abstract classes and interfaces that can be used as blueprints for creating objects.

  • Abstraction helps in achieving modularity, reusability, and maintainability of code.

  • Example: A car can be abstracted as a vehi...

Are these interview questions helpful?
A Member Technical was asked
Q. Write a program to calculate the factorial of a number and explain the code.
Ans. 

A factorial is the product of all positive integers up to a given number, denoted as n!.

  • Factorial of 0 is defined as 1: 0! = 1.

  • Factorial of a positive integer n is n! = n × (n-1) × ... × 2 × 1.

  • Example: 5! = 5 × 4 × 3 × 2 × 1 = 120.

  • Factorials grow very quickly; for instance, 10! = 3,628,800.

  • Factorials are used in permutations and combinations.

A Member Technical was asked
Q. What are pointers?
Ans. 

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; }

A Member Technical was asked
Q. What is the angle made by the minute hand when it moves from 5 to 5:40?
Ans. 

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.

Broadridge Financial Solutions Member Technical Interview Experiences

18 interviews found

Interview experience
4
Good
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via Campus Placement and was interviewed in Aug 2024. There were 3 interview rounds.

Round 1 - Aptitude Test 

1st round was an aptitude test based on all the basic topics of Computer Science like Html,OOPS,DSA etc

Round 2 - Technical 

(1 Question)

  • Q1. Write a program to find the occurrences of each element and sort the array in the increasing order of
  • Ans. 

    Program to find occurrences of each element and sort array in increasing order.

    • Use a HashMap to store the count of each element in the array.

    • Sort the array based on the occurrences of each element.

    • Handle edge cases like empty array or null input.

  • Answered by AI
Round 3 - Technical 

(1 Question)

  • Q1. Difference between linkedlist and arrays and project related questions

Interview Preparation Tips

Interview preparation tips for other job seekers - Basics are what is tested .Learn arrays ,linkedlists, and understand all concepts in your resume end to end

Skills evaluated in this interview

Interview experience
4
Good
Difficulty level
-
Process Duration
More than 8 weeks
Result
Not Selected

I appeared for an interview in Mar 2025, where I was asked the following questions.

  • Q1. Tell about your past experience
  • Ans. 

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

  • Answered by AI
  • Q2. Tell about your technical skills
  • Ans. 

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

  • Answered by AI
  • Q3. Coding questions using Java on arrays
Interview experience
2
Poor
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Not Selected

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

Round 1 - Aptitude Test 

Easy basics 65min duration

Round 2 - Technical 

(2 Questions)

  • Q1. Sql quary, basic coding,
  • Q2. C c++ python java questions
Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
Not Selected

I appeared for an interview in Aug 2024.

Round 1 - Aptitude Test 

Easy Aptitude and medium level cs fundamental questions

Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Naukri.com and was interviewed before Sep 2023. There were 2 interview rounds.

Round 1 - Technical 

(2 Questions)

  • Q1. What is partial View
  • Ans. 

    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.

  • Answered by AI
  • Q2. What is index in database
  • Ans. 

    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.

  • Answered by AI
Round 2 - One-on-one 

(2 Questions)

  • Q1. What is Hashing
  • Ans. 

    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.

  • Answered by AI
  • Q2. What are different kind of security vulnerabilities and how to handle that
  • Ans. 

    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

  • Answered by AI

Interview Preparation Tips

Topics to prepare for Broadridge Financial Solutions Member Technical interview:
  • ASP.Net
  • Xss
  • Oracle SQL
Interview preparation tips for other job seekers - Keep basics good and if you are experienced, you may face situational problems and you need to solve those on the spot. So be prepared.

Skills evaluated in this interview

Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
-
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 - Technical 

(1 Question)

  • Q1. Mainframes and data base oracle testing
Round 3 - Technical 

(1 Question)

  • Q1. Linux and Java ,core and data base
Round 4 - Case Study 

Background verification

Round 5 - HR 

(1 Question)

  • Q1. Expected CTC and percentage
  • Ans. 

    Expected CTC and percentage

    • Expected CTC refers to the salary package that the candidate is looking for

    • Percentage refers to the academic percentage achieved by the candidate

    • The candidate can mention their expected CTC based on their experience and industry standards

    • The academic percentage can showcase the candidate's academic performance and potential

  • Answered by AI
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
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 - Coding Test 

Java Coding questions

Round 3 - One-on-one 

(1 Question)

  • Q1. Simple Java questions

Interview Preparation Tips

Interview preparation tips for other job seekers - No
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I appeared for an interview in Jun 2022.

Round 1 - Coding Test 

(3 Questions)

  • Q1. What is object oriented programming?
  • Ans. 

    Object oriented programming is a programming paradigm that uses objects to represent and manipulate data.

    • It focuses on encapsulation, inheritance, and polymorphism.

    • Encapsulation hides the implementation details of an object from the outside world.

    • Inheritance allows a class to inherit properties and methods from another class.

    • Polymorphism allows objects of different classes to be treated as if they were of the same clas...

  • Answered by AI
  • Q2. What is abstraction in oops?
  • Ans. 

    Abstraction in OOP is the process of hiding unnecessary details and exposing only essential features of an object.

    • Abstraction focuses on what an object does rather than how it does it.

    • It allows us to create abstract classes and interfaces that can be used as blueprints for creating objects.

    • Abstraction helps in achieving modularity, reusability, and maintainability of code.

    • Example: A car can be abstracted as a vehicle w...

  • Answered by AI
  • Q3. What do u know about product life cycle?
Round 2 - Technical 

(2 Questions)

  • Q1. Live coding questions
  • Q2. More questions based on my resume.

Interview Preparation Tips

Interview preparation tips for other job seekers - Be confident while giving the interview
Don't fake your resume
Make sure you know everything you have mentioned in your resume
have proper knowledge on your previous projects

Member Technical Interview Questions & Answers

user image Bharadwaj sharma

posted on 27 Apr 2025

Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I appeared for an interview before Apr 2024, where I was asked the following questions.

  • Q1. Tell me about your self
  • Q2. Tell me about the company
Round 1 - One-on-one 

(2 Questions)

  • Q1. Asked to write program on factorial and explain it.
  • Ans. 

    A factorial is the product of all positive integers up to a given number, denoted as n!.

    • Factorial of 0 is defined as 1: 0! = 1.

    • Factorial of a positive integer n is n! = n × (n-1) × ... × 2 × 1.

    • Example: 5! = 5 × 4 × 3 × 2 × 1 = 120.

    • Factorials grow very quickly; for instance, 10! = 3,628,800.

    • Factorials are used in permutations and combinations.

  • Answered by AI
  • Q2. Tell us why should we hire you.

Interview Preparation Tips

Interview preparation tips for other job seekers - Be strong with basic programming questions and communcation skill are also seen

Top trending discussions

View All
Interview Tips & Stories
1w
toobluntforu
·
works at
Cvent
Can speak English, can’t deliver in interviews
I feel like I can't speak fluently during interviews. I do know english well and use it daily to communicate, but the moment I'm in an interview, I just get stuck. since it's not my first language, I struggle to express what I actually feel. I know the answer in my head, but I just can’t deliver it properly at that moment. Please guide me
Got a question about Broadridge Financial Solutions?
Ask anonymously on communities.

Broadridge Financial Solutions Interview FAQs

How many rounds are there in Broadridge Financial Solutions Member Technical interview?
Broadridge Financial Solutions interview process usually has 2-3 rounds. The most common rounds in the Broadridge Financial Solutions interview process are Technical, Resume Shortlist and Aptitude Test.
How to prepare for Broadridge Financial Solutions Member Technical interview?
Go through your CV in detail and study all the technologies mentioned in your CV. Prepare at least two technologies or languages in depth if you are appearing for a technical interview at Broadridge Financial Solutions. The most common topics and skills that interviewers at Broadridge Financial Solutions expect are SQL, Analytical skills, Troubleshooting, Javascript and Selenium.
What are the top questions asked in Broadridge Financial Solutions Member Technical interview?

Some of the top questions asked at the Broadridge Financial Solutions Member Technical interview -

  1. Two puzzle. Iq test. Ex- there are 2 rope which u have to burn.if both rope se...read more
  2. What is the angle made by min when it moved from 5 to 5:...read more
  3. What are different kind of security vulnerabilities and how to handle t...read more
How long is the Broadridge Financial Solutions Member Technical interview process?

The duration of Broadridge Financial Solutions Member Technical interview process can vary, but typically it takes about less than 2 weeks to complete.

Tell us how to improve this page.

Overall Interview Experience Rating

3.8/5

based on 11 interview experiences

Difficulty level

Easy 33%
Moderate 67%

Duration

Less than 2 weeks 71%
2-4 weeks 14%
More than 8 weeks 14%
View more

Interview Questions from Similar Companies

Paytm Interview Questions
3.2
 • 798 Interviews
FIS Interview Questions
3.9
 • 502 Interviews
PhonePe Interview Questions
4.0
 • 341 Interviews
PayPal Interview Questions
3.8
 • 224 Interviews
Fiserv Interview Questions
2.9
 • 181 Interviews
Razorpay Interview Questions
3.6
 • 159 Interviews
KFintech Interview Questions
3.5
 • 148 Interviews
Angel One Interview Questions
3.8
 • 148 Interviews
Visa Interview Questions
3.5
 • 145 Interviews
MasterCard Interview Questions
3.9
 • 144 Interviews
View all
Broadridge Financial Solutions Member Technical Salary
based on 582 salaries
₹3 L/yr - ₹11 L/yr
At par with the average Member Technical Salary in India
View more details

Broadridge Financial Solutions Member Technical Reviews and Ratings

based on 100 reviews

4.2/5

Rating in categories

3.7

Skill development

4.2

Work-life balance

3.7

Salary

4.3

Job security

4.2

Company culture

3.5

Promotions

3.8

Work satisfaction

Explore 100 Reviews and Ratings
Member Technical

Mumbai

0-2 Yrs

Not Disclosed

Member Technical

Hyderabad / Secunderabad

0-2 Yrs

Not Disclosed

Member Technical

Mumbai

0-2 Yrs

Not Disclosed

Explore more jobs
Process Analyst
1.4k salaries
unlock blur

₹2.5 L/yr - ₹6 L/yr

Senior Member Technical
1.3k salaries
unlock blur

₹6 L/yr - ₹20 L/yr

Technical Lead
597 salaries
unlock blur

₹9.1 L/yr - ₹33.5 L/yr

Senior Process Analyst
591 salaries
unlock blur

₹2.2 L/yr - ₹8.5 L/yr

Member Technical
582 salaries
unlock blur

₹3 L/yr - ₹11 L/yr

Explore more salaries
Compare Broadridge Financial Solutions with

Paytm

3.2
Compare

FIS

3.9
Compare

PhonePe

4.0
Compare

Fiserv

2.9
Compare
write
Share an Interview