Upload Button Icon Add office photos
Premium Employer

i

This company page is being actively managed by Finastra Team. If you also belong to the team, you can get access from here

Finastra Verified Tick

Compare button icon Compare button icon Compare

Filter interviews by

Finastra Qa Automation Testing Engineer Interview Questions and Answers

Updated 11 Jul 2022

Finastra Qa Automation Testing Engineer Interview Experiences

1 interview found

I applied via Recruitment Consulltant and was interviewed in Jun 2022. There were 2 interview rounds.

Round 1 - Technical 

(1 Question)

  • Q1. Oops concepts,few coding questions
Round 2 - Aptitude Test 

Basic aptitude questions

Interview Preparation Tips

Topics to prepare for Finastra Qa Automation Testing Engineer interview:
  • OOPS
  • Programming
  • Coding
Interview preparation tips for other job seekers - All the best guys🥳🥂 keep trying and dont loose the hope

Interview questions from similar companies

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

(9 Questions)

  • Q1. Introduction, roles and responsibilities
  • Q2. Deep copy shallow copy
  • Q3. Method Overloading overriding
  • Q4. Constuctor and its types
  • Ans. 

    Constructors are special methods in a class used to initialize objects. There are default, parameterized, copy, and static constructors.

    • Constructors have the same name as the class and do not have a return type.

    • Default constructors are automatically created by the compiler if no constructor is defined.

    • Parameterized constructors accept parameters to initialize object properties.

    • Copy constructors create a new object as a...

  • Answered by AI
  • Q5. Varags (variable length arguments)
  • Q6. Find element find elements return types of it if no elements found
  • Ans. 

    findElements method in Selenium returns a list of WebElements or an empty list if no elements are found.

    • findElements method returns a list of WebElements

    • If no elements are found, it returns an empty list

    • Return type is List

Answered by AI
  • Q7. Webdriver what is it
  • Ans. 

    Webdriver is a tool used for automating web application testing.

    • Webdriver is a popular automation tool used for testing web applications.

    • It allows testers to automate interactions with a web browser.

    • Webdriver supports multiple programming languages such as Java, Python, and C#.

    • It can simulate user interactions like clicking buttons, entering text, and navigating through pages.

    • Webdriver is commonly used in QA automation...

  • Answered by AI
  • Q8. Find duplicate numbers and its count from given list explain logic
  • Ans. 

    Logic to find duplicate numbers and their count in a given list.

    • Iterate through the list and store each number in a hashmap with its count

    • If a number is already in the hashmap, increment its count

    • After iterating, check the hashmap for numbers with count greater than 1 to find duplicates

  • Answered by AI
  • Q9. Factorial using recursion
  • Ans. 

    Factorial using recursion is a mathematical function that calculates the product of all positive integers up to a given number.

    • Define a function that takes an integer parameter n

    • Base case: if n is 0, return 1

    • Recursive case: return n multiplied by the factorial of n-1

    • Example: factorial(5) = 5 * factorial(4) = 5 * 4 * factorial(3) = 5 * 4 * 3 * factorial(2) = 5 * 4 * 3 * 2 * factorial(1) = 5 * 4 * 3 * 2 * 1 = 120

  • Answered by AI

    Interview Preparation Tips

    Interview preparation tips for other job seekers - For me Mostly 90% they asked java related questions.
    Introduction, roles responsibilities.
    Deep copy shallow copy
    Method Overloading overriding
    Constuctor
    Varags
    Find element & find elements difference and return types(if elements present and if not)
    2 coding questions
    1 repeatetive numbers/duplicates and its count from the given list eg output 4,2(4 is number and found 2 times)
    2 factorial of a number using recursion.

    I don't want to fil this form all that's why including all questions asked in the feedback.

    This was my first round and no response till now.
    Interview taken on 10 Oct.

    Skills evaluated in this interview

    Round 1 - Aptitude Test 

    20 questions of aptitude

    Round 2 - Coding Test 

    Hard

    Round 3 - Coding Test 

    Very hard

    Round 4 - HR 

    (6 Questions)

    • Q1. Share details of your previous job.
    • Q2. Why should we hire you?
    • Q3. Where do you see yourself in 5 years?
    • Q4. What is your family background?
    • Q5. What are your strengths and weaknesses?
    • Q6. Tell me about yourself.

    Interview Preparation Tips

    Interview preparation tips for other job seekers - Prepare well. Easy to crack. Coading should be practiced

    I applied via Recruitment Consulltant and was interviewed in Jul 2022. There were 2 interview rounds.

    Round 1 - HR 

    (1 Question)

    • Q1. What are doing from HR post?
    Round 2 - Java 

    (1 Question)

    • Q1. Programming bese question?

    Interview Preparation Tips

    Topics to prepare for Microsoft Corporation Associate Software Engineer interview:
    • ASP.Net
    Interview preparation tips for other job seekers - PHP ,Java programming, ASP. Net, CCC, C++.

    I applied via Walk-in and was interviewed in Jul 2022. There were 2 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 - Java 

    (1 Question)

    • Q1. Programming bese question put up

    Interview Preparation Tips

    Topics to prepare for Microsoft Corporation Associate Software Engineer interview:
    • ASP.Net
    Interview preparation tips for other job seekers - PHP ,Java programming, ASP. Net, CCC, C++.
    Interview experience
    4
    Good
    Difficulty level
    Hard
    Process Duration
    -
    Result
    Not Selected
    Round 1 - Aptitude Test 

    There are 2 sections one is Output guess and Another one is Quantitative

    Round 2 - Coding Test 

    I didn't attend 2nd round..i was eliminated in 1st round

    Interview Preparation Tips

    Interview preparation tips for other job seekers - Study hard

    I appeared for an interview in Apr 2022.

    Round 1 - Coding Test 

    (2 Questions)

    Round duration - 60 minutes
    Round difficulty - Medium

    This round had 2 questions with Easy to Medium level of difficulty

    • Q1. 

      Problem: Total Area of Overlapping Rectangles

      You are given two rectangles situated on a 2-D coordinate plane, which may overlap. Your task is to compute the total area covered by these rectangles.

      Input...
    • Ans. 

      Calculate total area covered by two overlapping rectangles on a 2-D plane.

      • Calculate the area of each rectangle separately using the given coordinates.

      • Find the overlapping region by determining the intersection of the two rectangles.

      • Calculate the area of the overlapping region by multiplying its width and height.

      • Add the areas of the two rectangles and subtract the area of the overlapping region to get the total area cov

    • Answered by AI
    • Q2. 

      Rearrange Array: Move Negative Numbers to the Beginning

      Given an array ARR consisting of N integers, rearrange the elements such that all negative numbers are located before all positive numbers. The orde...

    • Ans. 

      Yes, this can be achieved by using a two-pointer approach to rearrange the array with negative numbers at the beginning.

      • Use two pointers, one starting from the beginning and one from the end of the array.

      • Swap elements at the two pointers if one is negative and the other is positive, and move the pointers accordingly.

      • Continue this process until the two pointers meet in the middle of the array.

      • The resulting array will ha...

    • Answered by AI
    Round 2 - Face to Face 

    (2 Questions)

    Round duration - 70 minutes
    Round difficulty - Medium

    Standard DS/Algo round with 2 questions

    • Q1. 

      Middle Node of a Linked List Problem Statement

      Given the head node of a singly linked list, return a pointer to the middle node of the linked list. If there are an odd number of nodes, return the middle o...

    • Ans. 

      Return the middle node of a singly linked list, considering odd and even number of nodes.

      • Traverse the linked list with two pointers, one moving at twice the speed of the other

      • When the faster pointer reaches the end, the slower pointer will be at the middle node

      • Handle cases for odd and even number of nodes separately

      • Return null if the list is empty

    • Answered by AI
    • Q2. 

      All Prime Numbers Less Than or Equal to N

      Given a positive integer N, your task is to return all the prime numbers less than or equal to N.

      Note:

      1) A prime number is a number that has only two factors:...
    • Ans. 

      Return all prime numbers less than or equal to a given positive integer N.

      • Iterate from 2 to N and check if each number is prime using a helper function.

      • A number is prime if it is not divisible by any number from 2 to its square root.

      • Store and return the prime numbers in an array in increasing order.

    • Answered by AI
    Round 3 - HR 

    Round duration - 30 minutes
    Round difficulty - Easy

    This was a Technical Cum HR round where I was first asked some basic Java-related concepts and then we discussed my expectations from the company, learnings and growth in the forthcoming years. I would suggest be honest and try to communicate your thoughts properly in these types of rounds to maximise your chances of getting selected.

    Interview Preparation Tips

    Professional and academic backgroundI applied for the job as Associate Software Engineer in BangaloreEligibility criteria0-3 years of ExperienceSAP Labs interview preparation:Topics to prepare for the interview - Data Structures, Algorithms, SQL, Angular, JavaTime required to prepare for the interview - 2 monthsInterview preparation tips for other job seekers

    Tip 1 : Must do Previously asked Interview as well as Online Test Questions.

    Tip 2 : Go through all the previous interview experiences from Codestudio and Leetcode.

    Tip 3 : Do at-least 2 good projects and you must know every bit of them.


     

    Application resume tips for other job seekers

    Tip 1 : Resume should be informative but not more than two pages
    Tip 2 : Provide the links of all your achievements, projects and certificates in your resume

    Final outcome of the interviewSelected

    Skills evaluated in this interview

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

    I applied via Referral and was interviewed in Jul 2023. There were 4 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 - Assignment 

    Platform - Hackerrank
    time- 90 minutes
    2 dsa questions
    output- got link for technical interview same day

    Round 3 - Technical 

    (2 Questions)

    • Q1. Binary tree traversal
    • Q2. Longest common subsequence
    • Ans. 

      Longest common subsequence is the longest sequence of characters that appear in the same order in both strings.

      • Use dynamic programming to solve this problem efficiently.

      • Create a 2D array to store the lengths of longest common subsequences.

      • Iterate through the strings and fill the array based on the characters' matches.

      • Trace back the array to find the actual longest common subsequence.

    • Answered by AI
    Round 4 - Technical 

    (2 Questions)

    • Q1. Medium questions on OOPS
    • Ans. Questions on polymorphism and a design class question
    • Answered Anonymously
    • Q2. Explain all projects
    • Ans. Explain in detail and interviewer asked followup questions
    • Answered Anonymously

    Interview Preparation Tips

    Topics to prepare for SAP Associate Software Engineer interview:
    • OOPS
    Interview preparation tips for other job seekers - Prepare Medium leetcode questions and oops

    Skills evaluated in this interview

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

    1 hour, around 40 questions on well known aptitude topics.

    Round 2 - Coding Test 

    Simple questions - overlapping area, bit manipulation

    Round 3 - Technical 

    (1 Question)

    • Q1. Simple program on printing even numbers, optimizing the code. Interviewer wanted to test your logical ability.
    Round 4 - Behavioral 

    (1 Question)

    • Q1. Three facts about you, you haven't mentioned in resume, why should we hire you etc..
    Interview experience
    3
    Average
    Difficulty level
    -
    Process Duration
    -
    Result
    -
    Round 1 - Group Discussion 

    Machine learning advantages and disadvantage
    hello world hello OWRLD2

    Round 2 - HR 

    (2 Questions)

    • Q1. What is u r name
    • Ans. 

      My name is John Doe.

      • Full name is John Doe

      • Common first and last name combination

      • No middle name provided

    • Answered by AI
    • Q2. What is salary expectation?
    • Ans. 

      I am looking for a competitive salary based on my skills, experience, and the industry standard.

      • Research the average salary for Associate Software Engineers in the industry

      • Consider your level of experience and skills when determining your salary expectation

      • Be prepared to negotiate based on the company's offer and benefits package

    • Answered by AI

    Interview Preparation Tips

    Interview preparation tips for other job seekers - nothing

    Finastra Interview FAQs

    How many rounds are there in Finastra Qa Automation Testing Engineer interview?
    Finastra interview process usually has 2 rounds. The most common rounds in the Finastra interview process are Technical and Aptitude Test.

    Tell us how to improve this page.

    Interview Questions from Similar Companies

    Zoho Interview Questions
    4.3
     • 512 Interviews
    SAP Interview Questions
    4.2
     • 285 Interviews
    Adobe Interview Questions
    3.9
     • 236 Interviews
    24/7 Customer Interview Questions
    3.5
     • 176 Interviews
    Chetu Interview Questions
    3.2
     • 176 Interviews
    AVASOFT Interview Questions
    2.9
     • 167 Interviews
    Dassault Systemes Interview Questions
    4.0
     • 166 Interviews
    Oracle Cerner Interview Questions
    3.7
     • 158 Interviews
    VMware Software Interview Questions
    4.4
     • 145 Interviews
    View all
    Finastra Qa Automation Testing Engineer Salary
    based on 25 salaries
    ₹5 L/yr - ₹17.5 L/yr
    69% more than the average Qa Automation Testing Engineer Salary in India
    View more details

    Finastra Qa Automation Testing Engineer Reviews and Ratings

    based on 1 review

    3.0/5

    Rating in categories

    2.0

    Skill development

    2.0

    Work-life balance

    3.0

    Salary

    4.0

    Job security

    3.0

    Company culture

    2.0

    Promotions

    2.0

    Work satisfaction

    Explore 1 Review and Rating
    Software Engineer
    328 salaries
    unlock blur

    ₹5.4 L/yr - ₹16.7 L/yr

    Senior Software Engineer
    324 salaries
    unlock blur

    ₹9 L/yr - ₹30 L/yr

    Associate Software Engineer
    165 salaries
    unlock blur

    ₹5 L/yr - ₹10 L/yr

    QA Engineer
    88 salaries
    unlock blur

    ₹5.5 L/yr - ₹11.5 L/yr

    Senior QA Engineer
    86 salaries
    unlock blur

    ₹7.2 L/yr - ₹24.4 L/yr

    Explore more salaries
    Compare Finastra with

    24/7 Customer

    3.5
    Compare

    Microsoft Corporation

    4.0
    Compare

    SAP

    4.2
    Compare

    Thomson Reuters

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