Upload Button Icon Add office photos

Filter interviews by

SS&C TECHNOLOGIES Senior Test Engineer Interview Questions, Process, and Tips

Updated 14 Mar 2024

Top SS&C TECHNOLOGIES Senior Test Engineer Interview Questions and Answers

SS&C TECHNOLOGIES Senior Test Engineer Interview Experiences

2 interviews found

Senior Test Engineer Interview Questions & Answers

user image Arin Kumar Biswas

posted on 14 Mar 2024

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

(1 Question)

  • Q1. Basic java programs
Round 2 - Technical 

(1 Question)

  • Q1. Java+Selenium basic questions
Round 3 - HR 

(1 Question)

  • Q1. Basic HR questions

I applied via Referral and was interviewed in Jul 2020. There were 5 interview rounds.

Interview Questionnaire 

8 Questions

  • Q1. Tell me about yourself?
  • Q2. Tell something about project?
  • Q3. How to handle team?
  • Q4. Selenium exp in deep?
  • Ans. 

    Yes, I have extensive experience in using Selenium for automated testing.

    • I have used Selenium WebDriver to automate web application testing

    • I am proficient in writing test scripts using Java and Python

    • I have experience in using Selenium Grid for parallel testing

    • I have worked with various testing frameworks like TestNG and JUnit

    • I have used Selenium to test web applications on different browsers and platforms

  • Answered by AI
  • Q5. What's is polymorphism ?
  • Ans. 

    Polymorphism is the ability of an object to take on many forms.

    • Polymorphism allows objects of different classes to be treated as if they are of the same class.

    • It is achieved through method overriding and method overloading.

    • Examples include function overloading in C++ and Java's method overriding.

    • Polymorphism helps in achieving loose coupling and flexibility in code design.

  • Answered by AI
  • Q6. Why you want Pune location?
  • Q7. Explain framework ?
  • Ans. 

    A framework is a set of guidelines, standards, and tools used to develop software applications.

    • It provides a structure for organizing code and facilitates development.

    • Frameworks can be front-end, back-end, or full-stack.

    • Examples include React, Angular, Django, and Ruby on Rails.

  • Answered by AI
  • Q8. Validation test cases in selenium ?
  • Ans. 

    Validation test cases in Selenium are used to verify that the application under test meets the specified requirements.

    • Validation test cases are designed to check if the application is working as expected.

    • They are used to ensure that the application meets the specified requirements.

    • Validation test cases can be automated using Selenium.

    • Examples of validation test cases include verifying that a login page accepts valid cr...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - no any special advice just go like you are going to attend other company interview

Skills evaluated in this interview

Senior Test Engineer Interview Questions Asked at Other Companies

asked in Sapiens
Q1. From Selenium -> Which Automation framework I have implemented ... read more
asked in LTIMindtree
Q2. What should be done when a defect is found in production?
Q3. What is the difference between manual testing and automated testi ... read more
asked in LTIMindtree
Q4. How do you performed incrimental load in your project?
asked in CGI Group
Q5. What are Java 8 streams?

Interview questions from similar companies

Interview experience
4
Good
Difficulty level
Moderate
Process Duration
4-6 weeks
Result
Selected Selected
Round 1 - One-on-one 

(2 Questions)

  • Q1. Have you handled project alone?
  • Q2. API testing tools related questions.
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
Not Selected
Round 1 - Aptitude Test 

20 aptitude questions and 50 technical questions

Round 2 - One-on-one 

(10 Questions)

  • Q1. Tell me about your self
  • Q2. Explain automation framework
  • Ans. 

    Automation framework is a set of guidelines, rules, and tools that help in creating and executing automated tests.

    • Automation framework provides structure and guidelines for creating automated tests

    • It helps in organizing test scripts, data, and results

    • Frameworks can be data-driven, keyword-driven, or hybrid

    • Examples of automation frameworks include Selenium WebDriver, TestNG, and Robot Framework

  • Answered by AI
  • Q3. Java code for sorting without using built in function
  • Ans. 

    Sorting array of strings in Java without using built-in functions

    • Create a custom sorting algorithm like bubble sort, selection sort, or insertion sort

    • Compare each pair of strings and swap them if necessary to sort in ascending order

    • Repeat the process until the array is fully sorted

  • Answered by AI
  • Q4. Explain testng annotations and how will we use annotation in our framework
  • Ans. 

    TestNG annotations are used to control the flow of test methods and provide additional information about the test methods.

    • TestNG annotations are used to mark methods as test methods, setup methods, teardown methods, etc.

    • Annotations like @Test, @BeforeMethod, @AfterMethod, @BeforeClass, @AfterClass, @BeforeSuite, @AfterSuite are commonly used in TestNG framework.

    • Annotations help in organizing and prioritizing test metho...

  • Answered by AI
  • Q5. What is testng listener
  • Ans. 

    TestNG listener is an interface that allows users to customize the test execution process.

    • TestNG listeners can be used to perform actions before or after a test method is run.

    • Listeners can be used to generate logs, take screenshots, or perform other custom actions during test execution.

    • Examples of TestNG listeners include ITestListener, ISuiteListener, and IInvokedMethodListener.

  • Answered by AI
  • Q6. What is overriding and where it is used in automation framework
  • Ans. 

    Overriding is a concept in object-oriented programming where a subclass provides a specific implementation of a method that is already provided by its superclass.

    • Overriding allows a subclass to provide a specific implementation of a method that is already provided by its superclass

    • It is used in automation frameworks to customize or extend the functionality of existing methods or classes

    • In automation testing, overriding...

  • Answered by AI
  • Q7. Explain bdd hooks and tags
  • Ans. 

    BDD hooks and tags are used in Behavior-Driven Development to set up preconditions and execute actions before or after scenarios, and to categorize and filter scenarios.

    • BDD hooks are used to set up preconditions and execute actions before or after scenarios

    • Tags are used to categorize and filter scenarios based on certain criteria

    • Hooks can be used to perform setup and teardown actions, such as initializing test data or ...

  • Answered by AI
  • Q8. Explain bdd background keyword
  • Ans. 

    BDD background keyword is used to define common preconditions for all scenarios in a feature file.

    • Used at the beginning of a feature file to define common preconditions

    • Helps in setting up the initial state for all scenarios in the feature file

    • Reduces duplication of steps in scenarios by defining them once in the background

  • Answered by AI
  • Q9. Explain ci/cd pipeline using jenkins
  • Ans. 

    CI/CD pipeline using Jenkins automates the process of integrating code changes and deploying them to production.

    • Jenkins is a popular automation server used for CI/CD

    • CI/CD stands for Continuous Integration/Continuous Deployment

    • In a CI/CD pipeline, code changes are automatically built, tested, and deployed

    • Jenkins pipelines can be defined using a Jenkinsfile which specifies the stages and steps of the pipeline

    • Example: Che...

  • Answered by AI
  • Q10. Explain rest assured and write a code for post and verify the response
  • Ans. 

    Rest Assured is a Java library for testing RESTful APIs. It simplifies API testing by providing a fluent interface to make HTTP requests and validate responses.

    • Rest Assured is commonly used in API automation testing to validate the functionality of RESTful APIs.

    • It allows testers to easily make HTTP requests, set headers, parameters, and body, and validate the response.

    • Here is an example code snippet for posting data an...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Please prepare all concepts in framwork

Skills evaluated in this interview

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

(3 Questions)

  • Q1. What is defect tracking
  • Ans. 

    Defect tracking is the process of identifying, documenting, prioritizing, and resolving issues or bugs in software.

    • Defect tracking involves recording details of defects found during testing.

    • Each defect is assigned a unique identifier for tracking purposes.

    • Defects are categorized based on severity and priority to determine the order in which they should be fixed.

    • Defect tracking tools like Jira, Bugzilla, or HP ALM are c...

  • Answered by AI
  • Q2. What is the regression testing
  • Ans. 

    Regression testing is the process of retesting a software application to ensure that new code changes have not adversely affected existing functionality.

    • Regression testing is performed after code changes to verify that the existing functionality still works correctly.

    • It helps in identifying any defects introduced by new code changes.

    • Automated testing tools are often used for regression testing to save time and effort.

    • R...

  • Answered by AI
  • Q3. How you will write the test scenario for elevator
  • Ans. 

    Test scenarios for an elevator to ensure proper functionality and safety

    • Test the elevator buttons for all floors

    • Test emergency stop button functionality

    • Test door opening and closing mechanism

    • Test elevator capacity by loading it with maximum weight limit

    • Test response time for elevator arrival at different floors

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare basic selenium and Java program

Skills evaluated in this interview

Interview experience
3
Average
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
No response

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

Round 1 - Technical 

(3 Questions)

  • Q1. Questions on Framework
  • Q2. Programs on Strings and Collections
  • Q3. Selenium scenario based programs on window handling
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(1 Question)

  • Q1. What are Xpaths and it types
  • Ans. 

    Xpaths are a way to navigate through elements in XML documents. They can be absolute or relative.

    • Xpaths are used to locate elements in XML documents

    • There are two types of Xpaths: absolute and relative

    • Absolute Xpaths start with a single forward slash (/) and specify the location of the element from the root node

    • Relative Xpaths do not start with a forward slash and specify the location of the element based on its current

  • Answered by AI

Skills evaluated in this interview

Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via LinkedIn and was interviewed before Dec 2023. There were 3 interview rounds.

Round 1 - Technical 

(2 Questions)

  • Q1. Manual Testing Questions
  • Q2. Situation based questions
Round 2 - Behavioral 

(2 Questions)

  • Q1. Client related discussion
  • Q2. Some questions from technical round
Round 3 - HR 

(2 Questions)

  • Q1. Package discussion
  • Q2. Explaining about company
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
4-6 weeks
Result
Selected Selected

I applied via Naukri.com and was interviewed before Aug 2023. There was 1 interview round.

Round 1 - Technical 

(3 Questions)

  • Q1. What is unit testing
  • Ans. 

    Unit testing is a software testing method where individual units or components of a software are tested in isolation.

    • Unit testing helps in identifying bugs early in the development process

    • It ensures that each unit of code is working as expected

    • Unit tests are usually automated and run frequently during development

    • Examples of unit testing frameworks include JUnit for Java, NUnit for .NET, and pytest for Python

  • Answered by AI
  • Q2. How do you perform unit testing
  • Ans. 

    Unit testing is performed by writing test cases for individual units or components of the software to ensure they work as expected.

    • Write test cases for each unit or component of the software

    • Execute the test cases to verify the functionality of the unit

    • Check for expected outcomes and compare with actual results

    • Use testing frameworks like JUnit, NUnit, or PyTest

    • Automate unit tests to run them regularly during development

  • Answered by AI
  • Q3. Which tool you have used to perform unit testing please elaborate
  • Ans. 

    I have used JUnit for performing unit testing in Java projects.

    • JUnit is a popular unit testing framework for Java

    • It provides annotations like @Test to define test methods

    • JUnit assertions like assertEquals are used to verify expected results

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - I have been applied for the post of Senior software Test engineer in the field of Embedded domain, Interview was quite difficult went around 1.25 hr.

Skills evaluated in this interview

I was interviewed in Oct 2021.

Round 1 - Video Call 

(7 Questions)

Round duration - 60 Minutes
Round difficulty - Medium

In this round, the interviewer first started asking me questions around Java and Java 8 and then he switched to OOPS and SQL.

  • Q1. What are Java 8 streams?
  • Ans. 

    A stream is an abstraction to express data processing queries in a declarative way. 

    A Stream, which represents a sequence of data objects & series of operations on that data is a data pipeline that is not related to Java I/O Streams does not hold any data permanently.
    The key interface is "java.util.stream.Stream". It accepts Functional Interfaces so that lambdas can be passed. Streams support a fluent interfac

  • Answered Anonymously
  • Q2. What are the features of a lambda expression?
  • Ans. 

    Below are the two significant features of the methods that are defined as the lambda expressions: 

    1) Lambda expressions can be passed as a parameter to another method. 
    2) Lambda expressions can be standalone without belonging to any class.

  • Answered Anonymously
  • Q3. What is the difference between an abstract class and an interface in OOP?
  • Ans. 

    Answer :
    The differences between Abstract Class and Interface are as follows:

    Abstract Class:

    1) Abstract classes have a default constructor and it is called whenever the concrete subclass is instantiated.
    2) It contains Abstract methods as well as Non-Abstract methods.
    3) The class which extends the Abstract class shouldn’t require the implementation of all the methods, only Abstract
    methods need to be implemented in the co...

  • Answered Anonymously
  • Q4. What do you mean by data encapsulation?
  • Ans. 

    1) Data Encapsulation is an Object-Oriented Programming concept of hiding the data attributes and their behaviors in a single unit.

    2) It helps developers to follow modularity while developing software by ensuring that each object is independent of other objects by having its own methods, attributes, and functionalities.

    3) It is used for the security of the private properties of an object and hence serves the purpose of

  • Answered Anonymously
  • Q5. Can static methods be overridden?
  • Ans. 

    1) No. Declaration of static methods having the same signature can be done in the subclass but run time polymorphism can not take place in such cases.

    2) Overriding or dynamic polymorphism occurs during the runtime, but the static methods are loaded and looked up at the compile time statically. Hence, these methods cant be overridden.

  • Answered Anonymously
  • Q6. What is the difference between CHAR and VARCHAR2 data types in SQL?
  • Ans. 

    Both of these data types are used for characters, but varchar2 is used for character strings of variable length, whereas char is used for character strings of fixed length. For example, if we specify the type as char(5) then we will not be allowed to store a string of any other length in this variable, but if we specify the type of this variable as varchar2(5) then we will be allowed to store strings of variable length...

  • Answered Anonymously
  • Q7. What is a view in SQL?
  • Ans. 

    Views in SQL are a kind of virtual table. A view also has rows and columns as they are on a real table in the database. We can create a view by selecting fields from one or more tables present in the database. A View can either have all the rows of a table or specific rows based on certain conditions. 

    The CREATE VIEW statement of SQL is used for creating views. 

    Basic Syntax : 

    CREATE VIEW view_name AS
    SELE...

  • Answered Anonymously
Round 2 - Video Call 

(7 Questions)

Round duration - 60 Minutes
Round difficulty - Medium

In this round, the interviewer asked me questions around BDD Frameworks, Cucumber and C#. At the end, I was also asked some basic questions revolving around SQL.

  • Q1. Can you explain briefly how Behavioral Driven Development (BDD) works?
  • Ans. 

    There are majorly three steps in the working of BDD. They are as follows :-

    1) Behaviour Description : We list down the features of our application first in the feature file.

    2) Making the Step Definition file : The mapping between each step of the scenario defined in the feature file and a
    code of the function to be executed is stored in the steps definition file.

    3) Testing and running : We run the test cases to check if...

  • Answered Anonymously
  • Q2. What are annotations in Cucumber?
  • Ans. 

    An annotation is a type of text that has been pre-defined and has a specified meaning. It tells the compiler/interpreter
    what to do when the program runs. The annotations on Cucumber are as follows:

    1) Given : It specifies the requirements for running the test.
    Example : Given I have an account on Interviewbit.

    2) When : It establishes the starting point for any test scenario.
    Example : When I log in to Interviewbit.

    3) Then...

  • Answered Anonymously
  • Q3. How can you run a selected test from a group of tests in Cucumber?
  • Ans. 

    1) We may execute a single test from a set of tests in the Cucumber framework using the tags idea.

    2) This is found in the TestRunner file's @CucumberOptions section. With the use of the @t keyword, we may tag a scenario in the feature file. 

    3) A scenario can have one or more tags within the feature file. We can separate test scenarios with the assistance of tagging. 

    4) We must pass the value within the tags a...

  • Answered Anonymously
  • Q4. What is the difference between an Array and an ArrayList in C#?
  • Ans. 

    An array is a collection of similar variables clubbed together under one common name. While ArrayList is a collection of objects that can be indexed individually. With ArrayList you can access a number of features like dynamic memory allocation, adding, searching, and sorting items in the ArrayList. 

    1) When declaring an array the size of the items is fixed therefore, the memory allocation is fixed. But with ArrayL...

  • Answered Anonymously
  • Q5. What is Reflection in C#?
  • Ans. 

    Reflection in C# extracts metadata from the datatypes during runtime. 

    To add reflection in the .NET framework, simply use System.Refelction namespace in your program to retrieve the type which can be anything from :

    1) Assembly
    2) Module
    3) Enum
    4) MethodInfo
    5) ConstructorInfo
    6) MemberInfo
    7) ParameterInfo
    8) Type
    9) FieldInfo
    10) EventInfo
    11) PropertyInfo

  • Answered Anonymously
  • Q6. How do you find the second highest salary from a table in SQL?
  • Ans. 

    Approach : Sort the distinct salary in descend order and then utilize the LIMIT clause to get the second highest salary.

    Query : 

    SELECT DISTINCT Salary
    FROM Employee
    ORDER BY Salary DESC
    LIMIT 1 OFFSET 1;

  • Answered Anonymously
  • Q7. What is the ALIAS command in SQL?
  • Ans. 

    Aliases are the temporary names given to a table or column for the purpose of a particular SQL query. It is used when the name of a column or table is used other than their original name, but the modified name is only temporary.

    1) Aliases are created to make table or column names more readable.
    2) The renaming is just a temporary change and the table name does not change in the original database.
    3) Aliases are useful wh...

  • Answered Anonymously
Round 3 - HR 

(1 Question)

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
about my expectations from the company , learnings and growth in the forthcomig years. I would suggest be honest and
try to communicate your thoughts properly in these type of rounds to maximise your chances of getting selected.

  • Q1. Why should we hire you?
  • Ans. 

    Tip 1 : The cross questioning can go intense some time, think before you speak.

    Tip 2 : Be open minded and answer whatever you are thinking, in these rounds I feel it is important to have opinion.

    Tip 3 : Context of questions can be switched, pay attention to the details. It is okay to ask questions in these round,
    like what are the projects currently the company is investing, which team you are mentoring. How all is the ...

  • Answered Anonymously

Interview Preparation Tips

Eligibility criteriaAbove 2 years of experienceCGI Inc. interview preparation:Topics to prepare for the interview - Software Testing , OOPS, C#, Automation Testing, BDD, TDD , SQLTime required to prepare for the interview - 4 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.

Application resume tips for other job seekers

Tip 1 : Have at-least 2 good projects explained in short with all important points covered.
Tip 2 : Every skill must be mentioned.
Tip 3 : Focus on skills, projects and experiences more.

Final outcome of the interviewSelected

Skills evaluated in this interview

SS&C TECHNOLOGIES Interview FAQs

How many rounds are there in SS&C TECHNOLOGIES Senior Test Engineer interview?
SS&C TECHNOLOGIES interview process usually has 3 rounds. The most common rounds in the SS&C TECHNOLOGIES interview process are Technical and HR.
What are the top questions asked in SS&C TECHNOLOGIES Senior Test Engineer interview?

Some of the top questions asked at the SS&C TECHNOLOGIES Senior Test Engineer interview -

  1. validation test cases in seleniu...read more
  2. what's is polymorphis...read more
  3. selenium exp in de...read more

Tell us how to improve this page.

SS&C TECHNOLOGIES Senior Test Engineer Interview Process

based on 2 interviews

Interview experience

5
  
Excellent
View more
SS&C TECHNOLOGIES Senior Test Engineer Salary
based on 55 salaries
₹6.3 L/yr - ₹18 L/yr
14% more than the average Senior Test Engineer Salary in India
View more details

SS&C TECHNOLOGIES Senior Test Engineer Reviews and Ratings

based on 6 reviews

4.4/5

Rating in categories

4.3

Skill development

4.4

Work-life balance

4.3

Salary

4.6

Job security

4.3

Company culture

4.3

Promotions

4.3

Work satisfaction

Explore 6 Reviews and Ratings
Senior Associate
3.4k salaries
unlock blur

₹2.4 L/yr - ₹10 L/yr

Associate
1.4k salaries
unlock blur

₹2 L/yr - ₹8.8 L/yr

Associate Manager
1.1k salaries
unlock blur

₹4.9 L/yr - ₹18.5 L/yr

Manager
519 salaries
unlock blur

₹6.9 L/yr - ₹25 L/yr

Senior Software Engineer
276 salaries
unlock blur

₹8.5 L/yr - ₹35 L/yr

Explore more salaries
Compare SS&C TECHNOLOGIES with

Fiserv

3.1
Compare

FIS

3.9
Compare

Broadridge Financial Solutions

3.9
Compare

Wipro

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