Upload Button Icon Add office photos

Filter interviews by

Broadridge Financial Solutions Junior .NET Developer Interview Questions and Answers

Updated 11 May 2023

Broadridge Financial Solutions Junior .NET Developer Interview Experiences

1 interview found

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

I applied via Recruitment Consulltant and was interviewed before May 2022. There were 6 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 - Aptitude Test 

Aptitude test has very less time and it has four section aptitude, reasoning and English and IT related MCQ's.each question carries one min you have to be fast while reading the question, has to be answer in secs then only we can get a time to think for hard questions.

Round 3 - Technical 

(3 Questions)

  • Q1. Coding round 1. Write a code for prime and odd numbers
  • Ans. 

    Code for prime and odd numbers

    • For prime numbers, check if the number is divisible by any number less than itself

    • For odd numbers, check if the number is not divisible by 2

    • Use loops and conditional statements to implement the checks

    • Consider edge cases such as negative numbers and 0

  • Answered by AI
  • Q2. 2. SQL select, insert, update and delete queries
  • Q3. 3. Write a code for fibannoci series
  • Ans. 

    Code for Fibonacci series

    • Declare two variables to store the first two numbers of the series

    • Use a loop to generate the next numbers in the series by adding the previous two

    • Print or store the generated numbers

  • Answered by AI
Round 4 - Technical 

(2 Questions)

  • Q1. Write a code for reverse string
  • Ans. 

    Code to reverse a string

    • Create an empty string variable to store the reversed string

    • Loop through the original string from the end to the beginning

    • Append each character to the empty string variable

    • Return the reversed string

  • Answered by AI
  • Q2. SQL basic queries
Round 5 - Behavioral 

(1 Question)

  • Q1. Asked we analytical questions and few programs like fibannoci series, select queries for employee tables,prime and non prime numbers ,oops concept
Round 6 - Vice president round 

(2 Questions)

  • Q1. They will check your communication skills like they will ask your family details.
  • Q2. Hr will ask you question like, are you interested or not if get a chance to join in this company like basic questions

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare well, all the best

Skills evaluated in this interview

Interview questions from similar companies

Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
-
Round 1 - One-on-one 

(3 Questions)

  • Q1. Lazy loading and eager loading in Java in context of Singleton class
  • Ans. 

    Lazy loading defers the initialization of an object until it is actually needed, while eager loading initializes the object immediately.

    • Lazy loading is commonly used in Singleton pattern to delay the creation of the instance until it is requested.

    • Eager loading initializes the Singleton instance at the time of class loading.

    • Lazy loading can help improve performance by only creating the instance when needed, while eager ...

  • Answered by AI
  • Q2. Connect master and slave instances of a DB in spring boot project
  • Ans. 

    Use Spring Boot configuration to connect master and slave instances of a DB

    • Configure multiple data sources in application.properties or application.yml file

    • Use @Primary annotation for the master data source and @Qualifier annotation for the slave data source

    • Define separate DataSource, JdbcTemplate, and EntityManager beans for each data source

    • Use @Transactional annotation with the appropriate data source to specify whic

  • Answered by AI
  • Q3. Global Exception handler in Spring boot
  • Ans. 

    Global exception handler in Spring Boot handles all exceptions thrown by the application.

    • Global exception handler can be implemented using @ControllerAdvice annotation in Spring Boot.

    • It allows centralized exception handling for all controllers in the application.

    • You can define methods annotated with @ExceptionHandler to handle specific exceptions.

    • Global exception handler can return custom error responses or redirect to

  • Answered by AI

Skills evaluated in this interview

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

I was interviewed in Jun 2024.

Round 1 - Coding Test 

Writing URLShortener or LoadBalancer in Java

Round 2 - Technical 

(2 Questions)

  • Q1. ACID definition and Isolation levels
  • Q2. CAP Theoreme and Distributed transactions

Interview Preparation Tips

Interview preparation tips for other job seekers - You should perfectly know multithreading in Java/Kotlin and have a deep knowledge of databases.
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(2 Questions)

  • Q1. Design patterns
  • Q2. How hashcode and equals related to each other
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
3
Average
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via Naukri.com and was interviewed in Aug 2024. There was 1 interview round.

Round 1 - Aptitude Test 

DSA leetcode on hackerrank

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
3
Average
Difficulty level
-
Process Duration
-
Result
-
Round 1 - System Design 

(1 Question)

  • Q1. HLD for rental property website
  • Ans. 

    High-level design for a rental property website

    • Use case analysis to identify key functionalities such as property listing, search, booking, payment

    • Design a user-friendly interface with filters, maps, and photos for property listings

    • Implement a secure payment gateway for online transactions

    • Utilize a database to store property details, user information, and booking history

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - NA

Skills evaluated in this interview

Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - One-on-one 

(2 Questions)

  • Q1. Screening Round
  • Q2. Question Related to Resume
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
Not Selected
Round 1 - Coding Test 

Design text editor, one problem, explain while you code.

Round 2 - Technical 

(1 Question)

  • Q1. Based on your resume

Broadridge Financial Solutions Interview FAQs

How many rounds are there in Broadridge Financial Solutions Junior .NET Developer interview?
Broadridge Financial Solutions interview process usually has 6 rounds. The most common rounds in the Broadridge Financial Solutions interview process are Technical, Resume Shortlist and Aptitude Test.
What are the top questions asked in Broadridge Financial Solutions Junior .NET Developer interview?

Some of the top questions asked at the Broadridge Financial Solutions Junior .NET Developer interview -

  1. Coding round 1. Write a code for prime and odd numb...read more
  2. Write a code for reverse str...read more
  3. 3. Write a code for fibannoci ser...read more

Tell us how to improve this page.

Broadridge Financial Solutions Junior .NET Developer Interview Process

based on 1 interview

Interview experience

4
  
Good
View more

Interview Questions from Similar Companies

TCS Interview Questions
3.7
 • 10.4k Interviews
Infosys Interview Questions
3.7
 • 7.6k Interviews
Wipro Interview Questions
3.7
 • 5.6k Interviews
Tech Mahindra Interview Questions
3.5
 • 3.8k Interviews
HCLTech Interview Questions
3.5
 • 3.8k Interviews
Paytm Interview Questions
3.3
 • 760 Interviews
FIS Interview Questions
3.9
 • 476 Interviews
BNY Interview Questions
3.9
 • 334 Interviews
PhonePe Interview Questions
4.0
 • 300 Interviews
View all

Broadridge Financial Solutions Junior .NET Developer Reviews and Ratings

based on 1 review

4.0/5

Rating in categories

4.0

Skill development

3.0

Work-life balance

4.0

Salary

5.0

Job security

4.0

Company culture

3.0

Promotions

3.0

Work satisfaction

Explore 1 Review and Rating
Process Analyst
1.3k salaries
unlock blur

₹1.8 L/yr - ₹6.2 L/yr

Senior Member Technical
1.3k salaries
unlock blur

₹5.2 L/yr - ₹19.3 L/yr

Member Technical
610 salaries
unlock blur

₹3 L/yr - ₹10 L/yr

Senior Process Analyst
574 salaries
unlock blur

₹2.4 L/yr - ₹9 L/yr

Technical Lead
573 salaries
unlock blur

₹9.1 L/yr - ₹34 L/yr

Explore more salaries
Compare Broadridge Financial Solutions with

Fiserv

3.1
Compare

SS&C TECHNOLOGIES

3.4
Compare

State Street Corporation

3.8
Compare

BNY

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