Upload Button Icon Add office photos

Filter interviews by

TSYS|Total System Services Software Development Engineer Interview Questions and Answers

Updated 6 Aug 2023

TSYS|Total System Services Software Development Engineer Interview Experiences

1 interview found

Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
-
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 

Aptitude questions, some reasoning and puzzle questions with fundamental computer language questions.

Round 3 - Technical 

(3 Questions)

  • Q1. Oops question Language fundamental questions Puzzle Coding questions.
  • Q2. What is polymorphism?
  • Ans. 

    Polymorphism is the ability of a function or method to behave differently based on the object it is acting upon.

    • Polymorphism allows objects of different classes to be treated as objects of a common superclass.

    • It enables a single interface to represent multiple data types.

    • Examples include method overloading and method overriding in object-oriented programming.

  • Answered by AI
  • Q3. What is abstraction?
  • Ans. 

    Abstraction is the concept of hiding complex implementation details and showing only the necessary information to the user.

    • Abstraction allows developers to focus on the essential features of an object or system without getting bogged down in unnecessary details.

    • It helps in reducing complexity and improving efficiency by providing a simplified view of the system.

    • For example, in object-oriented programming, abstract clas...

  • Answered by AI
Round 4 - One-on-one 

(1 Question)

  • Q1. Project discussion Puzzle
Round 5 - HR 

(1 Question)

  • Q1. What is your salary expectation? What is your long term goal?

Interview questions from similar companies

I applied via Naukri.com and was interviewed in Aug 2020. There were 3 interview rounds.

Interview Questionnaire 

2 Questions

  • Q1. Check palindrome , anagram of string with O(n)
  • Ans. 

    To check palindrome and anagram of a string with O(n), use a hash table to store character frequencies.

    • Create a hash table to store the frequency of each character in the string.

    • For palindrome, check that no more than one character has an odd frequency.

    • For anagram, compare the hash tables of the two strings.

    • If the hash tables are equal, the strings are anagrams.

    • If the hash tables differ by only one character, the strin...

  • Answered by AI
  • Q2. Optimized solutions and core principles applied in OOPS
  • Ans. 

    Optimized solutions and core principles applied in OOPS

    • Encapsulation, Inheritance, Polymorphism, Abstraction are core principles of OOPS

    • Optimized solutions can be achieved through efficient algorithms and data structures

    • Design patterns like Singleton, Factory, Observer can also be used for optimized solutions

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - They are looking for best possible solutions. and they are not using that in project then also they ask

Skills evaluated in this interview

I appeared for an interview before May 2021.

Round 1 - Coding Test 

(1 Question)

Round duration - 45 Minutes
Round difficulty - Hard

  • Q1. 

    Find the Duplicate Number Problem Statement

    Given an integer array 'ARR' of size 'N' containing numbers from 0 to (N - 2). Each number appears at least once, and there is one number that appears twice. Yo...

  • Ans. 

    Find the duplicate number in an integer array containing numbers from 0 to (N - 2).

    • Iterate through the array and keep track of the frequency of each number using a hashmap.

    • Return the number that appears twice in the array.

    • The duplicate number is always present in the given array.

  • Answered by AI
Round 2 - Coding Test 

(1 Question)

Round duration - 50 Minutes
Round difficulty - Easy

  • Q1. 

    Bubble Sort Problem Statement

    Sort an unsorted array of non-negative integers using the Bubble Sort algorithm, which swaps adjacent elements if they are not in the correct order to sort the array in non-d...

  • Ans. 

    Bubble Sort is used to sort an array of non-negative integers in non-decreasing order by swapping adjacent elements if they are not in the correct order.

    • Iterate through the array and compare adjacent elements, swapping them if they are in the wrong order.

    • Repeat this process until the array is sorted in non-decreasing order.

    • Time complexity of Bubble Sort is O(n^2) in worst case.

    • Example: For input [6, 2, 8, 4, 10], the o

  • Answered by AI
Round 3 - Coding Test 

(1 Question)

Round duration - 60 Minutes
Round difficulty - Medium

  • Q1. 

    Unweighted Graph Shortest Path Problem

    You are tasked with finding the shortest path between two houses in the city of Ninjaland, represented as an unweighted graph. The city has N houses numbered from 1 ...

  • Ans. 

    Find the shortest path between two houses in a city represented as an unweighted graph.

    • Use breadth-first search (BFS) algorithm to find the shortest path in an unweighted graph.

    • Start BFS from the source house and keep track of the shortest path to each house.

    • Once the destination house is reached, backtrack to find the shortest path.

    • Consider using a queue data structure to implement BFS efficiently.

  • Answered by AI
Round 4 - HR 

Round duration - 60 Minutes
Round difficulty - Easy

Interview Preparation Tips

Eligibility criteria7Morgan Stanley interview preparation:Topics to prepare for the interview - Java , spring, aws,azure, Algorithm, computer Architecture, compiler designTime required to prepare for the interview - 6 MonthsInterview preparation tips for other job seekers

Tip 1 : online resources
Tip 2 : cracking the coding interview by Gayle laykemann this is one of the best book for learning the concept at the initial level. Start practicing the approaches mention in the book once done apply the same to similar level pattern questions.
Tip 3 : geeks for geeks start from school level and then move towards easy medium and hard once done practice the previous year questions

Application resume tips for other job seekers

Tip 1 : precise clear concise and well written 
Tip 2 : mentions the skills sets along with the projects

Final outcome of the interviewSelected

Skills evaluated in this interview

I applied via Approached by Company and was interviewed before Aug 2021. There were 3 interview rounds.

Round 1 - Technical 

(3 Questions)

  • Q1. Basic Java related questions, like internals working of hashMap, what is lambda function & why is it used with functional interface and one small coding question.
  • Q2. What is Microservices and why it is used
  • Ans. 

    Microservices are small, independent, and loosely coupled services that work together to form a larger application.

    • Microservices architecture breaks down a large application into smaller, independent services

    • Each service is responsible for a specific task and communicates with other services through APIs

    • This approach allows for greater flexibility, scalability, and easier maintenance

    • Examples of companies using microser

  • Answered by AI
  • Q3. Features of Spring boot, Rest API related questions etc
Round 2 - Technical 

(1 Question)

  • Q1. Explain structure & complete flow of your current project, how Authorization, session etc works in your project.
Round 3 - Technical 

(1 Question)

  • Q1. Design Snake & Ladder
  • Ans. 

    Design a Snake & Ladder game.

    • Create a board with 100 squares and mark the snakes and ladders on it.

    • Use a random number generator to simulate dice rolls.

    • Implement logic to move the player's token based on the dice roll.

    • Add game rules such as extra turns for rolling a six and penalty for landing on a snake.

    • Display the current position of the player and the board after each turn.

  • Answered by AI

Interview Preparation Tips

Topics to prepare for JPMorgan Chase & Co. Associate Software Engineer interview:
  • Java
  • LLD
  • Microservices
  • Spring Boot
Interview preparation tips for other job seekers - Brush up all the basic concepts and practice LLD if your experience is less than 5 years of more than do practice HLD as well.

Skills evaluated in this interview

I applied via Referral and was interviewed before Aug 2021. There were 2 interview rounds.

Round 1 - Coding Test 

Easy basic questions on ds algo, swap two numbers with out extra space

Round 2 - Technical 

(1 Question)

  • Q1. LLD library management system with apis table schema java classes and their interaction

Interview Preparation Tips

Topics to prepare for JPMorgan Chase & Co. Associate Software Engineer interview:
  • DS Algo
Interview preparation tips for other job seekers - Simple questions just prepare on core java and basic ds algo with medium level questions

I applied via LinkedIn and was interviewed in Feb 2021. There was 1 interview round.

Interview Questionnaire 

2 Questions

  • Q1. - Data Structures and Algo - Core Python specific questions
  • Q2. - Design a Cache and some design based questions

Interview Preparation Tips

Interview preparation tips for other job seekers - I actually attended a Weekend drive. So in the 1st round almost related to 2/3 DS Algo questions.
2nd round was related to design small cache and little bit on python questions.
3rd round was managerial and some basic technical questions.

I appeared for an interview before Nov 2020.

Round 1 - Coding Test 

(1 Question)

Round duration - 90 minutes
Round difficulty - Medium

It was in the evening at about 7 pm. The test platform was quite user friendly and easy to use.
There were 3 sections in test. One was logical ability, second was english, third was coding 
Questions were of medium difficulty.

  • Q1. 

    Ways To Make Coin Change

    Given an infinite supply of coins of varying denominations, determine the total number of ways to make change for a specified value using these coins. If it's not possible to make...

  • Ans. 

    The task is to find the total number of ways to make change for a specified value using given denominations.

    • Use dynamic programming to solve this problem efficiently.

    • Create a 1D array to store the number of ways to make change for each value from 0 to the target value.

    • Iterate through the denominations and update the array based on the current denomination.

    • The final answer will be the value at the target index of the ar

  • Answered by AI
Round 2 - Face to Face 

(1 Question)

Round duration - 30 Minutes
Round difficulty - Medium

It was a 30 minute interview. In which I was provided with questions on data structures and algorithms to check my problem solving skills.

  • Q1. 

    Non-Decreasing Array Problem Statement

    Given an integer array ARR of size N, determine if it can be transformed into a non-decreasing array by modifying at most one element.

    An array is defined as non-de...

  • Ans. 

    Determine if an array can be transformed into a non-decreasing array by modifying at most one element.

    • Iterate through the array and check if there are more than one decreasing elements.

    • If there is only one decreasing element, check if modifying it can make the array non-decreasing.

    • Return true if the array can be made non-decreasing by modifying at most one element, otherwise false.

  • Answered by AI
Round 3 - Face to Face 

Round duration - 40 Minutes
Round difficulty - Medium

In this round , interviewer discussed about my resume. As I had done a internship in sql and database so he asked me questions related to dbms and sql queries.

Interview Preparation Tips

Professional and academic backgroundI applied for the job as SDE - 1 in PuneEligibility criteriaAbove 7.5 cgpaCiti Bank interview preparation:Topics to prepare for the interview - Data structures, oops, algorithms, operating system, dbms, pointers, dynamic programmingTime required to prepare for the interview - 2 MonthsInterview preparation tips for other job seekers

Tip 1 : practice data structures and algorithms thoroughly
Tip 2 : do atleast 2 project
Tip 3 : maintain a decent cgpa (above 8.5)

Application resume tips for other job seekers

Tip 1 : write all your academic achievements on resume
Tip 2 : do not write false things in resume
Tip 3 : be thorough with your resume

Final outcome of the interviewSelected

Skills evaluated in this interview

I applied via Recruitment Consultant and was interviewed in Oct 2020. There were 4 interview rounds.

Interview Questionnaire 

3 Questions

  • Q1. I was mostly asked about the process. First round was technical, mostly on Java
  • Q2. JVM Architecture, Java 9 new feature, collection framework, hibernate
  • Q3. 2nd round was mostly on tools and processes.

Interview Preparation Tips

Interview preparation tips for other job seekers - Always come prepare with whatever you have mentioned in your resume, if you talking about any tools, you should have end to end knowledge on that, you can't say I used Jenkins and then while answering, you would say I don't know how to create a job or pipeline. That kind of answer is not acceptable.

Interview Questionnaire 

1 Question

  • Q1. 1)Questions were asked related to Oracle plsql langauge and 2) Performance tuning and about 3) my data science master program,and like 4)my most challenging task ever I faced in my carrier.

I applied via Recruitment Consulltant and was interviewed before Mar 2021. There was 1 interview round.

Round 1 - One-on-one 

(2 Questions)

  • Q1. Java and OOPS Associated Questions
  • Q2. Spring and Basic Programming Like Sort, Searching

Interview Preparation Tips

Interview preparation tips for other job seekers - Don't bother to give interviews it's not a good place to work for.

TSYS|Total System Services Interview FAQs

How many rounds are there in TSYS|Total System Services Software Development Engineer interview?
TSYS|Total System Services interview process usually has 5 rounds. The most common rounds in the TSYS|Total System Services interview process are Resume Shortlist, Aptitude Test and Technical.
What are the top questions asked in TSYS|Total System Services Software Development Engineer interview?

Some of the top questions asked at the TSYS|Total System Services Software Development Engineer interview -

  1. What is polymorphi...read more
  2. What is abstracti...read more
  3. Oops question Language fundamental questions Puzzle Coding questio...read more

Tell us how to improve this page.

TSYS|Total System Services Software Development Engineer Interview Process

based on 1 interview

Interview experience

3
  
Average
View more

Interview Questions from Similar Companies

Citicorp Interview Questions
3.7
 • 571 Interviews
Wells Fargo Interview Questions
3.8
 • 570 Interviews
American Express Interview Questions
4.2
 • 365 Interviews
UBS Interview Questions
3.9
 • 338 Interviews
Morgan Stanley Interview Questions
3.7
 • 292 Interviews
Morningstar Interview Questions
3.9
 • 242 Interviews
FactSet Interview Questions
3.9
 • 208 Interviews
BNP Paribas Interview Questions
3.8
 • 180 Interviews
View all
22% less than the average Software Development Engineer Salary in India
View more details

TSYS|Total System Services Software Development Engineer Reviews and Ratings

based on 1 review

4.0/5

Rating in categories

4.0

Skill development

5.0

Work-life balance

3.0

Salary

4.0

Job security

4.0

Company culture

3.0

Promotions

4.0

Work satisfaction

Explore 1 Review and Rating
Senior Software Engineer
481 salaries
unlock blur

₹9.7 L/yr - ₹30 L/yr

Software Engineer
289 salaries
unlock blur

₹7 L/yr - ₹23 L/yr

Lead Software Engineer
106 salaries
unlock blur

₹18 L/yr - ₹39 L/yr

Senior Associate Software Engineer
105 salaries
unlock blur

₹11 L/yr - ₹25 L/yr

Senior Test Analyst
84 salaries
unlock blur

₹8.7 L/yr - ₹24 L/yr

Explore more salaries
Compare TSYS|Total System Services with

Wells Fargo

3.8
Compare

JPMorgan Chase & Co.

3.9
Compare

Citicorp

3.7
Compare

American Express

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