Upload Button Icon Add office photos

SS&C TECHNOLOGIES

Compare button icon Compare button icon Compare

Filter interviews by

SS&C TECHNOLOGIES Softwaretest Engineer Interview Questions, Process, and Tips

Updated 10 Mar 2024

SS&C TECHNOLOGIES Softwaretest Engineer Interview Experiences

1 interview found

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

I applied via Job Fair and was interviewed in Feb 2024. There were 3 interview rounds.

Round 1 - Technical 

(3 Questions)

  • Q1. Reverse a string with spaces present in same position Ex: i am indian o/p:n ai dnimai
  • Ans. 

    To reverse a string with spaces present in the same position, we can split the string by spaces, reverse each word, and then join them back together.

    • Split the string by spaces to get individual words

    • Reverse each word

    • Join the reversed words back together with spaces in between

  • Answered by AI
  • Q2. Difference between put and post in sql
  • Ans. 

    PUT is used to update an existing resource in SQL, while POST is used to create a new resource.

    • PUT is idempotent, meaning multiple identical requests will have the same effect as a single request.

    • POST is not idempotent, meaning multiple identical requests may have different effects.

    • PUT is used to update specific resources identified by the request URI.

    • POST is used to create new resources under the request URI.

    • PUT is ty...

  • Answered by AI
  • Q3. What is bad request in api testing
  • Ans. 

    A bad request in API testing is when the server cannot process the request due to incorrect syntax or missing parameters.

    • Bad request status code is 400

    • Common causes include missing or incorrect parameters, invalid data format, or unauthorized access

    • Examples: missing required parameters, incorrect data type in request body

  • Answered by AI
Round 2 - Technical 

(4 Questions)

  • Q1. Permutations of string of length n in string of length m
  • Ans. 

    Generate all permutations of a string of length n within a string of length m.

    • Use recursion to generate all possible permutations of the string of length n.

    • Iterate through the string of length m and insert the permutations at different positions.

    • Return an array of strings containing all permutations of the string of length n within the string of length m.

  • Answered by AI
  • Q2. Count ocurrence of characters in digit
  • Ans. 

    Count occurrences of characters in a digit

    • Iterate through each digit in the input array

    • For each digit, convert it to a string and iterate through each character

    • Use a hashmap to keep track of the count of each character

  • Answered by AI
  • Q3. Find second highest salary in sql
  • Ans. 

    Use SQL query with ORDER BY and LIMIT to find the second highest salary.

    • Use ORDER BY clause to sort the salaries in descending order

    • Use LIMIT 1,1 to get the second row after skipping the first row

    • Consider handling cases where there might be ties for the highest salary

  • Answered by AI
  • Q4. Http status in API
  • Ans. 

    HTTP status codes are used to indicate the result of a HTTP request made to an API.

    • HTTP status codes range from 1xx to 5xx, with each range representing a different type of response.

    • Some common HTTP status codes include 200 (OK), 404 (Not Found), and 500 (Internal Server Error).

    • Status codes starting with 2 indicate success, 4 indicate client errors, and 5 indicate server errors.

  • Answered by AI
Round 3 - Behavioral 

(2 Questions)

  • Q1. Explain about your project
  • Q2. How do you run your automation Regression scripts
  • Ans. 

    I run automation Regression scripts using a test automation framework and scheduling tools.

    • I organize regression scripts into test suites based on functionality

    • I use a test automation framework like Selenium or Appium to execute the scripts

    • I schedule the regression runs using tools like Jenkins or TeamCity

    • I analyze the test results and report any failures for further investigation

  • Answered by AI

Skills evaluated in this interview

Interview questions from similar companies

I applied via Campus Placement and was interviewed before Nov 2021. 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 - Coding Test 

30 Min test on data structures on code blocks

Round 3 - Aptitude Test 

Same as the coding test 50 question on logic and reasoning

Round 4 - Group Discussion 

10 minute 4 people , technical problem was given and solutions were discussed.

Round 5 - HR 

(2 Questions)

  • Q1. HR questions were about teamwork and working culture and future ambitions.
  • Q2. What aspects of corporate responsibility can you make a contribution to?

Interview Preparation Tips

Interview preparation tips for other job seekers - All the very best to the aspirants. All the best for all the rounds. its a decent place to work if you find a great manager.
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Naukri.com and was interviewed before Jan 2022. 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 

SQL, DBMS, ETL, UNIX, SQL JOIN, putty and TIDAL

Round 3 - HR 

(2 Questions)

  • Q1. Experience on ETL REASON FOR CHANGE
  • Q2. Reason for change Availability of interview

Interview Preparation Tips

Interview preparation tips for other job seekers - Be confident at SQL and ETL concepts
SQL JOIN
Unix command
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(1 Question)

  • Q1. Basics of oops ,Basics of string
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Aptitude Test 

C++,oops questions are there

Round 2 - Technical 

(1 Question)

  • Q1. Basics of oops and c++ and DS
Interview experience
5
Excellent
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via LinkedIn and was interviewed before Apr 2023. There were 2 interview rounds.

Round 1 - Technical 

(1 Question)

  • Q1. Questions related to basics of javascript like eventloop, hoisting, clousers, etc
Round 2 - Coding Test 

Simple coding question like moveing zeros to right

Interview Preparation Tips

Interview preparation tips for other job seekers - Keep your basics strong
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Naukri.com and was interviewed before May 2023. There were 3 interview rounds.

Round 1 - Coding Test 

Reverse a string using java

Round 2 - Technical 

(1 Question)

  • Q1. Selenium and java
Round 3 - HR 

(1 Question)

  • Q1. Project related questions
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Aptitude Test 

1 hour aptitude test

Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(3 Questions)

  • Q1. What is delegates
  • Ans. 

    Delegates are a type-safe function pointers used in C# to reference methods.

    • Delegates allow methods to be passed as parameters

    • Delegates can be used to define callback methods

    • Delegates are used in event handling in C#

  • Answered by AI
  • Q2. Why we use interface in .net core
  • Ans. 

    Interfaces in .NET Core provide a way to define a contract for classes to implement, promoting code reusability and flexibility.

    • Interfaces allow for multiple inheritance in .NET Core, as a class can implement multiple interfaces.

    • Interfaces help in achieving loose coupling between components, making the code more maintainable and testable.

    • Interfaces are used for dependency injection in .NET Core, allowing for easier uni...

  • Answered by AI
  • Q3. Why we use garbage collection
  • Ans. 

    Garbage collection is used to automatically manage memory by reclaiming unused memory and preventing memory leaks.

    • Prevents memory leaks by reclaiming memory that is no longer in use

    • Reduces the risk of memory errors and crashes

    • Improves performance by freeing up memory for other processes

    • Eliminates the need for manual memory management, reducing developer workload

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - it was good experience

Skills evaluated in this interview

Interview experience
4
Good
Difficulty level
Moderate
Process Duration
6-8 weeks
Result
-

I applied via Naukri.com

Round 1 - Technical 

(1 Question)

  • Q1. Deep technical and hand own working scenario and challanges faced
Round 2 - HR 

(1 Question)

  • Q1. Salary, expectations

SS&C TECHNOLOGIES Interview FAQs

How many rounds are there in SS&C TECHNOLOGIES Softwaretest 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 Behavioral.
What are the top questions asked in SS&C TECHNOLOGIES Softwaretest Engineer interview?

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

  1. Reverse a string with spaces present in same position Ex: i am indian o/p:n ai ...read more
  2. Permutations of string of length n in string of lengt...read more
  3. How do you run your automation Regression scri...read more

Tell us how to improve this page.

SS&C TECHNOLOGIES Softwaretest Engineer Interview Process

based on 2 interviews

Interview experience

4.5
  
Good
View more
SS&C TECHNOLOGIES Softwaretest Engineer Salary
based on 15 salaries
₹3.4 L/yr - ₹8.8 L/yr
20% more than the average Softwaretest Engineer Salary in India
View more details

SS&C TECHNOLOGIES Softwaretest Engineer Reviews and Ratings

based on 1 review

4.0/5

Rating in categories

3.0

Skill development

5.0

Work-life balance

4.0

Salary

5.0

Job security

5.0

Company culture

3.0

Promotions

5.0

Work satisfaction

Explore 1 Review and Rating
Senior Associate
3.4k salaries
unlock blur

₹2.4 L/yr - ₹10 L/yr

Associate
1.5k salaries
unlock blur

₹2.2 L/yr - ₹8.8 L/yr

Associate Manager
1.2k salaries
unlock blur

₹5 L/yr - ₹18.5 L/yr

Manager
611 salaries
unlock blur

₹7.3 L/yr - ₹25.5 L/yr

Senior Software Engineer
307 salaries
unlock blur

₹8.8 L/yr - ₹32.7 L/yr

Explore more salaries
Compare SS&C TECHNOLOGIES with

Virtusa Consulting Services

3.7
Compare

Nagarro

4.0
Compare

Sopra Steria

3.8
Compare

Sutherland Global Services

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