Upload Button Icon Add office photos

Filter interviews by

Broadridge Financial Solutions Test Engineer Interview Questions and Answers

Updated 4 Nov 2024

Broadridge Financial Solutions Test Engineer Interview Experiences

1 interview found

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

(1 Question)

  • Q1. Explain testing framework used in project
  • Ans. 

    The testing framework used in the project is Selenium with TestNG for automated testing.

    • Selenium is used for automating web applications testing

    • TestNG is used for organizing test cases and generating reports

    • Framework allows for easy maintenance and scalability

    • Integration with CI/CD tools like Jenkins for continuous testing

  • Answered by AI

Skills evaluated in this interview

Interview questions from similar companies

Round 1 - Technical 

(1 Question)

  • Q1. Revise well concept of testing automation manual
Round 2 - Group Discussion 

Technology boon or curse 8 members 15 Minute happened

Interview Preparation Tips

Interview preparation tips for other job seekers - Automation testing manual testing api testing do revise well
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
Selected Selected

I applied via Naukri.com and was interviewed before Apr 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 - Aptitude Test 

Only technical question will be ask

Round 3 - Coding Test 

Questions from java, c programing, selenium, api

Round 4 - Technical 

(1 Question)

  • Q1. Basics of selenium Testng Cucumber Core java Some programs Git commands
Round 5 - HR 

(1 Question)

  • Q1. Discussion about your role Salary
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(2 Questions)

  • Q1. Explain SOLID principle
  • Ans. 

    SOLID is a set of five design principles to make software designs more understandable, flexible, and maintainable.

    • S - Single Responsibility Principle: A class should have only one reason to change.

    • O - Open/Closed Principle: Software entities should be open for extension but closed for modification.

    • L - Liskov Substitution Principle: Objects of a superclass should be replaceable with objects of its subclasses without aff...

  • Answered by AI
  • Q2. Memory Allocation in Java
  • Ans. 

    Memory allocation in Java is managed by the JVM using the heap and stack memory areas.

    • Java uses the heap memory for storing objects and the stack memory for storing method calls and local variables.

    • Memory allocation in Java is automatic and managed by the garbage collector.

    • Java provides the 'new' keyword to allocate memory for objects on the heap.

    • Primitive data types are stored on the stack, while objects are stored on

  • Answered by AI

Skills evaluated in this interview

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

I applied via Recruitment Consulltant and was interviewed before Oct 2023. There were 3 interview rounds.

Round 1 - Coding Test 

Hacker earth coding round

Round 2 - Technical 

(2 Questions)

  • Q1. About java and selenium based frameworks
  • Q2. Database queries
Round 3 - Behavioral 

(1 Question)

  • Q1. Have you worked in an agile environment before?
  • Ans. 

    Yes, I have worked in an agile environment before.

    • I have experience working in Scrum and Kanban methodologies

    • I have participated in daily stand-up meetings, sprint planning, and retrospectives

    • I have collaborated closely with developers, product owners, and other team members to deliver high-quality software

  • Answered by AI
Interview experience
3
Average
Difficulty level
Moderate
Process Duration
6-8 weeks
Result
Selected Selected

I was interviewed before Jun 2023.

Round 1 - HR 

(1 Question)

  • Q1. Introduction nd experience
Round 2 - One-on-one 

(1 Question)

  • Q1. General questions
Round 3 - One-on-one 

(1 Question)

  • Q1. Engineering questions. Problem solving
Round 4 - Assignment 

1-1 with the HR head

Round 5 - One-on-one 

(1 Question)

  • Q1. Regular questions

Interview Preparation Tips

Interview preparation tips for other job seekers - If you want to work in Revolut then do not join the India team. It is horribly managed and the leadership is a big boo!
One of the worst experiences after 3½ years still our product is not out and they show a lot of hope. This firm will shut down in India in 3 years. Cheap planning and politics ruin the experience of working here.
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via campus placement at KIIT University, Bhuvaneshwar and was interviewed before Sep 2022. There were 4 interview rounds.

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 

Reasoning, aptitude, mathematics

Round 3 - Technical 

(1 Question)

  • Q1. Question about basic of c , java, dbms, os cloud computing ,oops concept
Round 4 - Coding Test 

DSA , JAVA , dynamic Programing

I was interviewed in Nov 2020.

Round 1 - Face to Face 

(2 Questions)

Round duration - 60 minutes
Round difficulty - Easy

Started with the introduction.
Then there were two-three coding questions.
Some OS and DBMS concepts were asked.
Questions related to testing were also included.

  • Q1. 

    Reverse the String Problem Statement

    You are given a string STR which contains alphabets, numbers, and special characters. Your task is to reverse the string.

    Example:

    Input:
    STR = "abcde"
    Output:
    "e...
  • Ans. Optimal Solution
    • Traverse the string and swap the first character with the last character, the second character with the second last character and so on.
    • Basically, you need to swap the i-th character with the (N-i-1)-th character where N is the length of the string and 0-based indexing is considered.
    Space Complexity: O(1)Explanation:

    O(1).

     

    In the worst case, only constant extra space is required.

    Time Complexity: O(...
  • Answered Anonymously
  • Q2. 

    Number and Digits Problem Statement

    You are provided with a positive integer N. Your task is to identify all numbers such that the sum of the number and its digits equals N.

    Example:

    Input:
    N = 21
    Out...
  • Ans. Brute Force

    In this approach, we iterate through the numbers from 1 to N. We will find the sum of its digits and add it to the integer itself for each number. Then, we check if the obtained sum is equal to N.

    We create a recursive function called sumOfDigits(num) that returns the sum of digits of the number num.

     

    Algorithm:

    • The function sumOfDigits(num) 
      • If num is equal to 0 return 0
      • Otherwise, return num % 10 + su...
  • Answered Anonymously
Round 2 - Face to Face 

Round duration - 60 minutes
Round difficulty - Medium

This was quite a tough round that can be cleared only by practice and understanding the problem. They asked about the profile first, then questions related to testing, SDLC, and so on. And then, I was asked to write test cases for two to three problems. Writing a test case was a task in this round. The interview was a senior testing engineer and was very friendly and helpful also and answered all my queries related to work.

Interview Preparation Tips

Professional and academic backgroundI completed Computer Science Engineering from Indira Gandhi Delhi Technical University for Women. I applied for the job as Software Testing Engineer in NoidaEligibility criteria6.8 and above CGPA, Active and dead backlogs not allowedPaytm (One97 Communications Limited) interview preparation:Topics to prepare for the interview - OOPS, Data Structures and Algorithms, Operating System, Low-Level Design, DBMSTime required to prepare for the interview - 5 monthsInterview preparation tips for other job seekers

Tip 1 : Practice question from every section (Arrays, String, Data Structures) 
Tip 2 : Practice question that required you to write test cases for a problem (as they judge you on your practical implementation)
Tip 3 : Practice low level designing questions (it indirectly helps you to write test cases )
Tip 4 : Choose your favorite Data Structure and practice well on it (as this is the most commonly asked question)

Application resume tips for other job seekers

Tip 1 : Have at least three projects in your resume (Include only those which you can explain and demonstrate)
Tip 2 : Include a column of "Position of Responsibility" in addition to your work experience and technicalities (it is impactful as it shows your extra activities apart from your regular curriculum)

Final outcome of the interviewSelected

Skills evaluated in this interview

I was interviewed in Jan 2021.

Interview Questionnaire 

1 Question

  • Q1. Find duplicates in a string and count repeated letters
  • Ans. 

    Find duplicates in a string and count repeated letters

    • Iterate through each character in the string

    • Use a hash map to store the count of each character

    • If a character is already present in the hash map, increment its count

    • After iterating through the string, filter the hash map to get the duplicate characters and their counts

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - 2 techno managerial rounds followed by HR Round.
Questions were on java, collections, selenium and Jenkins.

Process took over a month.

Skills evaluated in this interview

Software Tester Interview Questions & Answers

Fiserv user image Liudmila Khatsko

posted on 12 Jun 2024

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

I applied via Company Website and was interviewed in Dec 2023. There was 1 interview round.

Round 1 - One-on-one 

(2 Questions)

  • Q1. Tell me about yourself?
  • Q2. What is Jira?Difference between Zephyr and X-Ray?
  • Ans. 

    Jira is a project management tool. Zephyr and X-Ray are test management tools integrated with Jira.

    • Jira is a project management tool used for tracking issues, managing projects, and agile development.

    • Zephyr is a test management tool that integrates with Jira for test case management and execution.

    • X-Ray is another test management tool that integrates with Jira, offering more advanced test management features like test p

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - be yourself

Broadridge Financial Solutions Interview FAQs

How many rounds are there in Broadridge Financial Solutions Test Engineer interview?
Broadridge Financial Solutions interview process usually has 1 rounds. The most common rounds in the Broadridge Financial Solutions interview process are Technical.

Tell us how to improve this page.

Broadridge Financial Solutions Test Engineer Interview Process

based on 1 interview

Interview experience

4
  
Good
View more

Test Engineer Interview Questions from Similar Companies

View all
Broadridge Financial Solutions Test Engineer Salary
based on 13 salaries
₹3.7 L/yr - ₹14.8 L/yr
64% more than the average Test Engineer Salary in India
View more details

Broadridge Financial Solutions Test Engineer Reviews and Ratings

based on 2 reviews

4.5/5

Rating in categories

4.5

Skill development

4.0

Work-life balance

4.0

Salary

4.5

Job security

4.5

Company culture

4.5

Promotions

4.5

Work satisfaction

Explore 2 Reviews and Ratings
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
636 salaries
unlock blur

₹3 L/yr - ₹10 L/yr

Senior Process Analyst
575 salaries
unlock blur

₹2.4 L/yr - ₹9 L/yr

Technical Lead
571 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