Upload Button Icon Add office photos

Filter interviews by

TSYS|Total System Services Senior Software Engineer Interview Questions, Process, and Tips for Experienced

Updated 24 Jul 2024

Top TSYS|Total System Services Senior Software Engineer Interview Questions and Answers for Experienced

View all 7 questions

TSYS|Total System Services Senior Software Engineer Interview Experiences for Experienced

4 interviews found

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

(1 Question)

  • Q1. L1 technical basic C#
Round 2 - Technical 

(1 Question)

  • Q1. L2 technical basic and advance
Round 3 - HR 

(1 Question)

  • Q1. Salary discussion

I applied via Naukri.com and was interviewed in Jun 2021. There were 4 interview rounds.

Interview Questionnaire 

7 Questions

  • Q1. Q. How to improve SQL performance
  • Ans. 

    Improving SQL performance involves optimizing queries, indexes, and server resources.

    • Optimize queries by reducing complexity and avoiding unnecessary joins

    • Use indexes to speed up data retrieval

    • Ensure server resources are adequate for the workload

    • Consider partitioning large tables to improve query performance

    • Use stored procedures to reduce network traffic and improve security

  • Answered by AI
  • Q2. Q.What is index,Trigger,Stored procedure
  • Ans. 

    Index, trigger, and stored procedure are database objects used to improve performance and automate tasks.

    • An index is a data structure that improves the speed of data retrieval operations on a database table.

    • A trigger is a set of instructions that automatically executes in response to certain events, such as an insert, update, or delete operation on a table.

    • A stored procedure is a precompiled set of SQL statements that ...

  • Answered by AI
  • Q3. Q.Define relationship in sql
  • Ans. 

    Relationship in SQL refers to the association between two or more tables based on common fields.

    • Relationships are established using foreign keys

    • Types of relationships include one-to-one, one-to-many, and many-to-many

    • Relationships can be visualized using ER diagrams

    • Joins are used to retrieve data from related tables

  • Answered by AI
  • Q4. Q.Define Class module in vba
  • Ans. 

    Class module is a custom object in VBA that allows you to define your own properties and methods.

    • Class modules are used to create custom objects in VBA

    • They allow you to define your own properties and methods

    • You can create instances of a class module and use them in your code

    • Class modules are useful for encapsulating complex logic and data

    • They can be used to create reusable code libraries

  • Answered by AI
  • Q5. Q.Objects in ms access
  • Ans. 

    Objects in MS Access are used to represent tables, forms, reports, and other database objects.

    • Objects are used to organize and manage data in MS Access.

    • Tables are the most basic object and store data in rows and columns.

    • Forms are used to display and edit data in a user-friendly way.

    • Reports are used to present data in a formatted and organized way.

    • Queries are used to retrieve and manipulate data from tables.

    • Modules are ...

  • Answered by AI
  • Q6. Q.What is Design view,Datasheet view in ms access
  • Ans. 

    Design view is used to create and modify database objects, while Datasheet view is used to view and edit data in tables.

    • Design view allows users to create and modify tables, queries, forms, reports, and macros.

    • Datasheet view displays data in a spreadsheet-like format and allows users to edit data directly.

    • Design view is used to set properties and define relationships between tables.

    • Datasheet view is used to sort, filte...

  • Answered by AI
  • Q7. Q. Describe joins and types in sql
  • Ans. 

    Joins are used to combine data from two or more tables in SQL. There are different types of joins.

    • Inner join returns only the matching rows from both tables

    • Left join returns all the rows from the left table and matching rows from the right table

    • Right join returns all the rows from the right table and matching rows from the left table

    • Full outer join returns all the rows from both tables

    • Cross join returns the Cartesian p

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare practical question for sql

Skills evaluated in this interview

Senior Software Engineer Interview Questions Asked at Other Companies for undefined

Q1. Duplicate Integer in Array Given an array ARR of size N, containi ... read more
asked in Visa
Q2. Given a grid containing 0s and 1s and source row and column, in h ... read more
asked in Capgemini
Q3. Kth Largest Number Problem Statement You are given a continuous s ... read more
asked in Mphasis
Q4. Trapping Rain Water Problem Statement Given a long type array/lis ... read more
Q5. Anagram Pairs Verification In this task, you need to verify if tw ... read more

I applied via Naukri.com and was interviewed in Jan 2021. There were 5 interview rounds.

Interview Questionnaire 

1 Question

  • Q1. What is multiple questions on java, SQL, spring and more focus on current working challenges, how your approach towards resolution

Interview Preparation Tips

Interview preparation tips for other job seekers - Be prepared with technical skills and interpersonal skills as well.

I applied via Naukri.com and was interviewed in Jun 2021. There were 2 interview rounds.

Interview Preparation Tips

Interview preparation tips for other job seekers - Core java , Spring boot , Kafka

TSYS|Total System Services interview questions for designations

 Software Engineer

 (3)

 Senior Software Developer

 (1)

 Associate Software Engineer

 (2)

 Lead Software Engineer

 (1)

 Software Development Engineer

 (1)

 Senior Software Engineer 3

 (1)

 Senior Devops Engineer

 (1)

 Software Developer

 (2)

Interview questions from similar companies

I applied via Recruitment Consultant and was interviewed before Jan 2021. There were 4 interview rounds.

Interview Questionnaire 

1 Question

  • Q1. Advance PL/SQL

Interview Preparation Tips

Interview preparation tips for other job seekers - There are mostly 2 technical rounds, Written and face to face.
For written be prepared with Oracle PL/SQL basics. In face to face mainly advance PL/SQL is asked
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

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

Round 1 - Resume Shortlist 
Pro Tip by AmbitionBox:
Properly align and format text in your resume. A recruiter will have to spend more time reading poorly aligned text, leading to high chances of rejection.
View all tips
Round 2 - Technical 

(2 Questions)

  • Q1. Comparison between REST and SOAP
  • Ans. 

    REST is lightweight and flexible, while SOAP is more structured and standardized.

    • REST uses HTTP methods for communication, while SOAP uses XML messaging.

    • REST is better suited for mobile and web applications, while SOAP is better for enterprise-level applications.

    • REST is stateless, while SOAP can maintain state between requests.

    • REST is easier to implement and understand, while SOAP has a steep learning curve.

    • REST is mor

  • Answered by AI
  • Q2. Java Fibonnaci series using recursion, questions on complexity

Skills evaluated in this interview

I applied via LinkedIn and was interviewed in Jul 2021. There were 6 interview rounds.

Interview Questionnaire 

3 Questions

  • Q1. I've been interviewed for Java profile. Mostly questions are related with data structure and algorithm complexity. Java 8 features, some coding related questions, problem solving etc.
  • Q2. Micro service related questions, designing
  • Q3. Red-black tree, implementation and complexity of the same
  • Ans. 

    Red-black tree is a self-balancing binary search tree with O(log n) complexity for insertion, deletion, and search.

    • Red-black tree is a type of binary search tree with additional properties to ensure balance.

    • It has two types of nodes - red and black - with specific rules for their placement.

    • The tree is balanced by performing rotations and color flips during insertion and deletion.

    • Complexity of insertion, deletion, and s...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Do prepare for data structure and algorithm. Problem solving and core java in depth for java developer profile.

Skills evaluated in this interview

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

I applied via Naukri.com and was interviewed in Jan 2024. There were 3 interview rounds.

Round 1 - One-on-one 

(1 Question)

  • Q1. Basic questions on opps, c#, asp. Net and angular, sql
Round 2 - Technical 

(1 Question)

  • Q1. Deep discussion on oops, angular, c# and sql. Like writing some queries and oops concepts syntax writing on notepad
Round 3 - Behavioral 

(1 Question)

  • Q1. Basic discussion on my projects and they explain their projects and methodology they follows. Their day to day tasks

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare technical interview questions and if you are not aware about some technologies then inform then instead of giving false answers. And keep your any one from both front end or back end strong
Interview experience
3
Average
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
Selected Selected

I applied via Naukri.com and was interviewed in Mar 2023. 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 - Technical 

(1 Question)

  • Q1. Regarding project question.
Round 3 - Behavioral 

(1 Question)

  • Q1. Overall experience, challenges

Interview Preparation Tips

Interview preparation tips for other job seekers - If it is Retails PS unit ask question regarding there clients. They will tell you that we have product for which customer needs customization. Ask how stable there product is and how they do customization.

I applied via Walk-in and was interviewed in Jul 2019. There were 3 interview rounds.

Interview Questionnaire 

2 Questions

  • Q1. Main focous on java and selenium.if you have devops knowledge then good to have..
  • Q2. Framework design,oops concept, challange you face,roles and responsibilities,agile concept etc...

Interview Preparation Tips

Interview preparation tips for other job seekers - Be confident, focous on core Java,do good practice to identify elements, analyse the things before you respond,be more practical,raise the concern once you stuck,try to find the solution from your end before you ask for Help,...

TSYS|Total System Services Interview FAQs

How many rounds are there in TSYS|Total System Services Senior Software Engineer interview for experienced candidates?
TSYS|Total System Services interview process for experienced candidates usually has 3 rounds. The most common rounds in the TSYS|Total System Services interview process for experienced candidates are Technical and HR.
How to prepare for TSYS|Total System Services Senior Software Engineer interview for experienced candidates?
Go through your CV in detail and study all the technologies mentioned in your CV. Prepare at least two technologies or languages in depth if you are appearing for a technical interview at TSYS|Total System Services. The most common topics and skills that interviewers at TSYS|Total System Services expect are Cobol, Coding, JQuery, Unit Testing and Cics.
What are the top questions asked in TSYS|Total System Services Senior Software Engineer interview for experienced candidates?

Some of the top questions asked at the TSYS|Total System Services Senior Software Engineer interview for experienced candidates -

  1. Q. How to improve SQL performa...read more
  2. Q.What is Design view,Datasheet view in ms acc...read more
  3. Q.What is index,Trigger,Stored proced...read more

Tell us how to improve this page.

TSYS|Total System Services Senior Software Engineer Interview Process for Experienced

based on 1 interview

2 Interview rounds

  • Technical Round
  • HR Round
View more
TSYS|Total System Services Senior Software Engineer Salary
based on 480 salaries
₹10 L/yr - ₹30 L/yr
52% more than the average Senior Software Engineer Salary in India
View more details

TSYS|Total System Services Senior Software Engineer Reviews and Ratings

based on 46 reviews

4.4/5

Rating in categories

3.8

Skill development

4.4

Work-life balance

4.0

Salary

4.2

Job security

4.3

Company culture

3.7

Promotions

3.9

Work satisfaction

Explore 46 Reviews and Ratings
Senior Software Engineer
511 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Software Engineer
284 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Lead Software Engineer
103 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Senior Associate Software Engineer
103 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Senior Business Analyst
93 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Explore more salaries
Compare TSYS|Total System Services with

Fiserv

3.0
Compare

FIS

3.9
Compare

Global Payments

4.1
Compare

First Data Corporation

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