Upload Button Icon Add office photos

Filter interviews by

Broadridge Financial Solutions DOT NET Developer Interview Questions and Answers

Updated 19 Jul 2024

Broadridge Financial Solutions DOT NET Developer Interview Experiences

1 interview found

Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(1 Question)

  • Q1. What is the difference between singleton class and static class
  • Ans. 

    Singleton class allows only one instance to be created, while static class cannot be instantiated and all members are static.

    • Singleton class can have instance methods and properties, while static class can only have static members.

    • Singleton class can be lazy loaded, while static class is eagerly loaded.

    • Singleton class can be implemented using a static property or method to return the single instance, while static class...

  • Answered by AI

Skills evaluated in this interview

DOT NET Developer Jobs at Broadridge Financial Solutions

View all

Interview questions from similar companies

Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
Selected Selected

I applied via Company Website

Round 1 - Coding Test 

2 DSA medium questions was asked.

Round 2 - Coding Test 

2 DSA coding questions and CS fundamentals

Round 3 - Technical 

(1 Question)

  • Q1. System design questions in a projects

Interview Preparation Tips

Interview preparation tips for other job seekers - Know the fundamentals & go through must do easy and medium questions.
Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Group Discussion 

The topic was -> "One nation one election"

Round 2 - Technical 

(2 Questions)

  • Q1. What is a String pool in Java?
  • Ans. 

    String pool in Java is a pool of unique strings stored in memory to optimize memory usage.

    • String pool is a part of Java's memory where unique string literals are stored.

    • When a new string is created, Java checks if it already exists in the pool to save memory.

    • Strings created using double quotes are added to the pool, while those created using 'new' keyword are not.

    • Example: String str1 = "hello"; String str2 = "hello"; /...

  • Answered by AI
  • Q2. Explain different types of exception in Java.
  • Ans. 

    Java has checked and unchecked exceptions. Checked exceptions must be handled at compile time, while unchecked exceptions do not need to be handled explicitly.

    • Checked exceptions: Must be caught or declared in the method signature. Example: IOException, SQLException

    • Unchecked exceptions: Do not need to be caught or declared. Example: NullPointerException, ArrayIndexOutOfBoundsException

  • Answered by AI

Skills evaluated in this interview

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

I applied via Walk-in and was interviewed in May 2024. There was 1 interview round.

Round 1 - Technical 

(2 Questions)

  • Q1. Sort the list, after many queries
  • Q2. LRU cache with multi level caching
  • Ans. 

    LRU cache with multi level caching involves implementing a cache with multiple levels of storage, where the least recently used items are evicted first.

    • Implement a two-level cache system with a primary cache (e.g. in-memory) and a secondary cache (e.g. disk-based).

    • Use a data structure like a doubly linked list and a hash map to efficiently manage the cache and track the least recently used items.

    • When an item is accesse...

  • Answered by AI

Skills evaluated in this interview

Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(1 Question)

  • Q1. Basic DSA Question
Round 2 - Technical 

(1 Question)

  • Q1. Mobile Development Related Questions
Round 3 - HR 

(1 Question)

  • Q1. Basic HR Questions
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-

I applied via Campus Placement

Round 1 - Coding Test 

One medium and one standard DP question

Round 2 - Technical 

(1 Question)

  • Q1. Medium level question based on binary search
Round 3 - Technical 

(2 Questions)

  • Q1. Design google-pay
  • Ans. 

    Design Google Pay - a digital wallet platform for online payments and transactions.

    • Allow users to securely store payment information such as credit/debit cards, bank accounts, and loyalty cards.

    • Enable users to make payments in stores, online, and within apps using their stored payment methods.

    • Implement security features like biometric authentication, tokenization, and encryption to protect user data.

    • Provide features fo...

  • Answered by AI
  • Q2. HLD of recursive
  • Ans. 

    High Level Design (HLD) of recursive functions in software development.

    • Recursive functions call themselves to solve smaller instances of the same problem.

    • HLD of recursive functions involves defining the base case, recursive case, and termination condition.

    • Example: HLD of a recursive function to calculate factorial of a number involves defining base case as factorial(0) = 1.

  • Answered by AI
Round 4 - HR 

(2 Questions)

  • Q1. Puzzles available on GFG
  • Q2. Behavioral question

Interview Preparation Tips

Interview preparation tips for other job seekers - be good in DSA, system design, projects, puzzles

Skills evaluated in this interview

Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
Selected Selected
Round 1 - Technical 

(1 Question)

  • Q1. Array basics, java basics oops and all
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Referral and was interviewed in Nov 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 - Telephonic Call 

(2 Questions)

  • Q1. Tell me about yourself and about previous organisation.
  • Ans. 

    I am a software developer with 5 years of experience. I previously worked at XYZ Company as a full-stack developer.

    • 5 years of experience in software development

    • Previous role as a full-stack developer at XYZ Company

    • Proficient in programming languages such as Java, Python, and JavaScript

  • Answered by AI
  • Q2. Basic technical questions about the framework and the specific language.
Round 3 - One-on-one 

(1 Question)

  • Q1. More technical questions
Round 4 - Coding Test 

SQL and coding questions

Round 5 - HR 

(1 Question)

  • Q1. Salary negotiation
Round 1 - Aptitude Test 

Basic aptitude , same syllabus that of tcs

Round 2 - Coding Test 

Two debugging questions, of medium level

Round 3 - One-on-one 

(2 Questions)

  • Q1. What are react hooks, class based components ,linked list ,palindrome , state in components , virtual and real dom
  • Ans. 

    A set of concepts and tools used in React for managing state and rendering UI components.

    • React hooks are functions that allow you to use state and other React features without writing a class component.

    • Class based components are a way of defining React components using ES6 classes.

    • Linked list is a data structure that consists of a sequence of nodes, each containing a reference to the next node.

    • Palindrome is a word, phr...

  • Answered by AI
  • Q2. Sql quries, 2nd max salary, Nth max salary , Group by, deff between delete, truncate,drop

Interview Preparation Tips

Interview preparation tips for other job seekers - Learn SQL thoroughly, practice top 50 gfg sql questions for interview, Know in detail all that you have mentioned in CV, and be fluent on your projects. extra preference if project is in financial domain

Skills evaluated in this interview

I applied via Campus Placement

Round 1 - Resume Shortlist 
Pro Tip by AmbitionBox:
Don’t add your photo or details such as gender, age, and address in your resume. These details do not add any value.
View all tips
Round 2 - Aptitude Test 

There is some aptitude questions along with some subject question(C++,DBMS,OS). And also there is one easy/medium coding question

Round 3 - Technical 

(1 Question)

  • Q1. Interview involves subjects(OS,DBMS,CN,OOPs) , project related questions, and also easy questions from DSA.
Round 4 - HR 

(1 Question)

  • Q1. It was an easy round HR asked me about intoduction,will you be able to relocate,.... Overall it is an easy round.

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare DSA concepts like array, string, maps, linked list .
Mainly focus on subjects for interview.

Broadridge Financial Solutions Interview FAQs

How many rounds are there in Broadridge Financial Solutions DOT NET Developer interview?
Broadridge Financial Solutions interview process usually has 1 rounds. The most common rounds in the Broadridge Financial Solutions interview process are Technical.
How to prepare for Broadridge Financial Solutions DOT NET Developer 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 .Net, C#, Javascript, WCF and WPF.

Tell us how to improve this page.

Broadridge Financial Solutions DOT NET Developer Interview Process

based on 1 interview

Interview experience

4
  
Good
View more

DOT NET Developer Interview Questions from Similar Companies

View all
Broadridge Financial Solutions DOT NET Developer Salary
based on 9 salaries
₹4.2 L/yr - ₹11.2 L/yr
48% more than the average DOT NET Developer Salary in India
View more details

Broadridge Financial Solutions DOT NET Developer Reviews and Ratings

based on 1 review

5.0/5

Rating in categories

4.0

Skill development

5.0

Work-life balance

4.0

Salary

5.0

Job security

5.0

Company culture

4.0

Promotions

4.0

Work satisfaction

Explore 1 Review and Rating
Dotnet Developer

Bangalore / Bengaluru

1-3 Yrs

Not Disclosed

Explore more jobs
Process Analyst
1.3k salaries
unlock blur

₹1.8 L/yr - ₹6 L/yr

Senior Member Technical
1.3k salaries
unlock blur

₹5.4 L/yr - ₹20 L/yr

Member Technical
600 salaries
unlock blur

₹3 L/yr - ₹10 L/yr

Technical Lead
583 salaries
unlock blur

₹9.6 L/yr - ₹34 L/yr

Senior Process Analyst
582 salaries
unlock blur

₹2.2 L/yr - ₹8.5 L/yr

Explore more salaries
Compare Broadridge Financial Solutions with

Fiserv

3.0
Compare

SS&C TECHNOLOGIES

3.4
Compare

State Street Corporation

3.7
Compare

BNY

3.9
Compare
Did you find this page helpful?
Yes No
write
Share an Interview