Upload Button Icon Add office photos

Filter interviews by

Broadridge Financial Solutions Senior Technical Manager Interview Questions and Answers

Updated 13 Mar 2021

Broadridge Financial Solutions Senior Technical Manager Interview Experiences

1 interview found

Interview Questionnaire 

1 Question

  • Q1. What is micro Service? How do you use Spring Boot to create micro service? What is rest controller? Explain Lamda function? What is Binary functions?
  • Ans. 

    Microservices are small, independent services that work together to form a larger application. Spring Boot is a framework that simplifies the creation of microservices.

    • Microservices are designed to be modular and scalable

    • Spring Boot provides a simple way to create microservices using annotations and auto-configuration

    • A REST controller is a class that handles HTTP requests and returns responses in a RESTful way

    • Lambda fu...

  • Answered by AI

Skills evaluated in this interview

Interview questions from similar companies

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

I applied via Job Portal

Round 1 - Technical 

(1 Question)

  • Q1. BI related questions
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

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

Round 1 - Technical 

(2 Questions)

  • Q1. Work regarding your job profile
  • Q2. Linux related questions
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
No response

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

Round 1 - Technical 

(10 Questions)

  • Q1. What is dependency injection?
  • Ans. 

    Dependency injection is a design pattern in which components are given their dependencies rather than creating them internally.

    • Dependency injection helps in achieving loose coupling between classes.

    • It allows for easier testing by mocking dependencies.

    • There are three types of dependency injection: constructor injection, setter injection, and interface injection.

    • Example: Instead of a class creating an instance of another...

  • Answered by AI
  • Q2. What is app.use in .net core?
  • Ans. 

    app.use in .NET Core is used to add middleware to the request pipeline.

    • app.use is a method used in ASP.NET Core to add middleware components to the request pipeline.

    • Middleware components are software components that are executed in the request pipeline to handle requests and responses.

    • Middleware components can perform tasks such as authentication, logging, error handling, and more.

    • Example: app.use(new MiddlewareCompone

  • Answered by AI
  • Q3. What is difference between Interface and abstract class?
  • Ans. 

    Interface is a contract that defines the methods a class must implement, while abstract class can have both abstract and concrete methods.

    • Interface cannot have any implementation, while abstract class can have both abstract and concrete methods.

    • A class can implement multiple interfaces but can only inherit from one abstract class.

    • Interfaces are used to achieve multiple inheritance in Java, while abstract classes are us...

  • Answered by AI
  • Q4. Boxing Unboxing
  • Q5. ArrayList and List
  • Q6. Can abstract class instantiated?
  • Ans. 

    No, abstract classes cannot be instantiated.

    • Abstract classes are meant to be inherited and extended by other classes.

    • Attempting to instantiate an abstract class will result in a compilation error.

    • Abstract classes can have abstract methods that must be implemented by the subclass.

  • Answered by AI
  • Q7. How to optimize react application?
  • Ans. 

    Optimizing a React application involves code splitting, lazy loading, minimizing bundle size, using memoization, and optimizing render performance.

    • Implement code splitting to load only necessary code for each route or component.

    • Utilize lazy loading to defer loading of non-essential components until they are needed.

    • Minimize bundle size by removing unused code, optimizing images, and using tree shaking.

    • Use memoization te...

  • Answered by AI
  • Q8. Props destructuring?
  • Q9. Parent child component communication in react?
  • Ans. 

    Parent child component communication in React involves passing data from parent to child components and triggering events from child to parent components.

    • Use props to pass data from parent to child components

    • Use callback functions to trigger events from child to parent components

    • Context API can be used for passing data to deeply nested components

  • Answered by AI
  • Q10. What is useRef, useMemo, useCallback?
  • Ans. 

    useRef is used to persist a value across renders, useMemo is used to memoize expensive calculations, useCallback is used to memoize functions.

    • useRef is commonly used to access DOM elements or persist values between renders.

    • useMemo is used to memoize expensive calculations to avoid re-computation.

    • useCallback is used to memoize functions to prevent unnecessary re-renders.

    • Example: useRef can be used to store a reference t...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Most of questions were scenario based, no straight forward questions.
Although you are experienced, you can expect OOPS concept complex questions.
Be prepared with all concepts.

Skills evaluated in this interview

Technical Lead Interview Questions & Answers

Paytm user image Prasad Saitwal

posted on 15 Nov 2024

Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Aptitude Test 

Data structures related to dynamic program

Round 2 - Coding Test 

React coding test . Design drop-down

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

(1 Question)

  • Q1. Tell me about yourself?
  • Ans. 

    Experienced technical lead with a strong background in software development and project management.

    • Over 8 years of experience in leading technical teams and delivering successful projects

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

    • Skilled in Agile methodologies and implementing best practices for software development

    • Strong communication and leadership skills, able to collaborate effe

  • Answered by AI
Round 2 - Technical 

(2 Questions)

  • Q1. COBOL functions.
  • Q2. File Management

Interview Preparation Tips

Interview preparation tips for other job seekers - Through with the concepts
Interview experience
1
Bad
Difficulty level
Moderate
Process Duration
More than 8 weeks
Result
No response

I applied via Approached by Company and was interviewed in Apr 2024. There was 1 interview round.

Round 1 - Technical 

(1 Question)

  • Q1. I cleared 2 round of interview. After the interview i waited for 4 5 days. Dint hear back from recruiter. Later I only called to check on the feedback. He said im selected and waiting for slots from next p...
Interview experience
2
Poor
Difficulty level
-
Process Duration
Less than 2 weeks
Result
-

I applied via LinkedIn and was interviewed in Jul 2023. There were 3 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 - Coding Test 

1. One question regarding the MaxPartitions for a given array, if array is [4, 3, 2, 6 , 5, 10, 9] => upon sorting it appears like [2, 3, 4, 5, 6, 7, 9, 10] ..Max slices are [2,3,4] [5, 6] [9, 10] so slice count is 3

2. Another one Max integer upon removal 5 digit

Round 3 - Technical 

(1 Question)

  • Q1. Two technical rounds happened 1. One technical round : It was all about the Architecture , Design patterns on Microservices like CircuitBreaker etc and also security concepts, 2. Another technical round...

Interview Preparation Tips

Interview preparation tips for other job seekers - Interview of 2 hours each which is more than expected time and Interviewers were unable to judge properly or efficiently and On the last day was told that you are not right fitment, Actually the role is for Desktop applications and interviewers are expecting to have all the design experience, Felt so disappointed as Hiring manager was not interested to proceed and Status of the Interview was not shared properly it was positive but not proceeding further it was mixed up
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
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 - Technical 

(2 Questions)

  • Q1. .Net Core difference
  • Ans. 

    .Net Core is a cross-platform, open-source framework for building modern applications.

    • Supports development on Windows, Linux, and macOS

    • Modular architecture allows for lightweight and efficient applications

    • Includes ASP.NET Core for building web applications

    • Provides improved performance and scalability compared to .NET Framework

    • Supports containerization and microservices architecture

    • Example: .NET Core is used to build ap...

  • Answered by AI
  • Q2. Angular Basic and their life cycles

Interview Preparation Tips

Interview preparation tips for other job seekers - Fir se basically find out the candidate who is having a good knowledge in there basic logics such as they will provide you some basic programming review questions and other basic questions
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(3 Questions)

  • Q1. Recursion program
  • Q2. System Design questions based on current project
  • Q3. Micro service design patterns
  • Ans. 

    Micro service design patterns are architectural patterns used to design and implement microservices.

    • Service discovery

    • Circuit breaker

    • API gateway

    • Event sourcing

    • Saga pattern

  • Answered by AI

Skills evaluated in this interview

Tell us how to improve this page.

Interview Questions from Similar Companies

TCS Interview Questions
3.7
 • 10.1k Interviews
Infosys Interview Questions
3.7
 • 7.4k Interviews
Wipro Interview Questions
3.7
 • 5.5k Interviews
Tech Mahindra Interview Questions
3.6
 • 3.7k Interviews
HCLTech Interview Questions
3.5
 • 3.7k Interviews
Paytm Interview Questions
3.3
 • 744 Interviews
FIS Interview Questions
3.9
 • 468 Interviews
BNY Interview Questions
4.0
 • 325 Interviews
PhonePe Interview Questions
4.0
 • 292 Interviews
View all

Broadridge Financial Solutions Senior Technical Manager Reviews and Ratings

based on 1 review

1.0/5

Rating in categories

3.0

Skill development

1.0

Work-Life balance

2.0

Salary & Benefits

1.0

Job Security

1.0

Company culture

1.0

Promotions/Appraisal

2.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.3 L/yr - ₹20 L/yr

Member Technical
631 salaries
unlock blur

₹3 L/yr - ₹10 L/yr

Technical Lead
577 salaries
unlock blur

₹9.1 L/yr - ₹34 L/yr

Senior Process Analyst
569 salaries
unlock blur

₹2.4 L/yr - ₹9 L/yr

Explore more salaries
Compare Broadridge Financial Solutions with

Fiserv

3.2
Compare

SS&C TECHNOLOGIES

3.4
Compare

State Street Corporation

3.8
Compare

BNY

4.0
Compare

Calculate your in-hand salary

Confused about how your in-hand salary is calculated? Enter your annual salary (CTC) and get your in-hand salary
Did you find this page helpful?
Yes No
write
Share an Interview