Upload Button Icon Add office photos

Filter interviews by

TSYS|Total System Services Technical Support Engineer Interview Questions and Answers

Updated 21 Mar 2024

TSYS|Total System Services Technical Support Engineer Interview Experiences

1 interview found

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

I applied via Recruitment Consulltant and was interviewed before Mar 2023. There were 3 interview rounds.

Round 1 - Technical 

(2 Questions)

  • Q1. What are the different SQL joins
  • Ans. 

    SQL joins are used to combine rows from two or more tables based on a related column between them.

    • INNER JOIN: Returns rows when there is at least one match in both tables

    • LEFT JOIN: Returns all rows from the left table and the matched rows from the right table

    • RIGHT JOIN: Returns all rows from the right table and the matched rows from the left table

    • FULL JOIN: Returns rows when there is a match in one of the tables

    • CROSS J...

  • Answered by AI
  • Q2. What are CODS rule
  • Ans. 

    CODS rule is a troubleshooting method used in technical support to identify and resolve issues.

    • CODS stands for Cause, Observation, Diagnosis, Solution.

    • It helps technical support engineers systematically identify the root cause of a problem and provide a solution.

    • By following the CODS rule, engineers can efficiently troubleshoot and resolve technical issues.

    • Example: If a customer reports slow internet connection, the en...

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

(1 Question)

  • Q1. Different Questions Related to project development
Round 3 - HR 

(1 Question)

  • Q1. Personal Questions to judge the interest level,salary expectations

Interview Preparation Tips

Interview preparation tips for other job seekers - Good Company

Skills evaluated in this interview

Interview questions from similar companies

I applied via Campus Placement and was interviewed before Nov 2020. There were 3 interview rounds.

Interview Questionnaire 

4 Questions

  • Q1. Focus mainly on Collection classes and concepts of Core Java.
  • Q2. Meaning of each keyword in public static void main( String args).
  • Ans. 

    Explanation of keywords in public static void main( String args)

    • public - access modifier, allows main method to be accessed from anywhere

    • static - method belongs to class, not instance of class

    • void - method does not return any value

    • main - name of method, entry point for program execution

    • String - data type of array args

    • args - array of strings, command line arguments passed to program

  • Answered by AI
  • Q3. Questions on Spring MVC framework.
  • Q4. Postgress and Sql queries

Interview Preparation Tips

Interview preparation tips for other job seekers - Just be confident and presentable.

Skills evaluated in this interview

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

I applied via Campus Placement and was interviewed before Oct 2022. There were 4 interview rounds.

Round 1 - Resume Shortlist 
Pro Tip by AmbitionBox:
Do not use an unprofessional email address such as cool_boy@email.com. It shows a lack of professionalism by the candidate.
View all tips
Round 2 - Aptitude Test 

Basic aptitude questions

Round 3 - Group Discussion 

The topic was is reservation for educational institutions needed

Round 4 - Technical 

(5 Questions)

  • Q1. Basic DSA questions like Sorting, searching,etc
  • Q2. Questions on Java and rdbms
  • Q3. Managerial questions like How I handle stress ? What are weakness and strength ?
  • Q4. Basic problem solving questions
  • Q5. Questions from my resume College projects Internship Projects

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

Interview Questionnaire 

4 Questions

  • Q1. Basic Java concepts, Opps concepts.
  • Q2. Spring framework, Orm, Design pattern,
  • Q3. Modern forntend technology like Angular Js , React Js, Web services like Rest and Soap
  • Q4. Asking some logical question related to Java and spring

Interview Preparation Tips

Interview preparation tips for other job seekers - interview process will take 2 rounds, technical round and managerial. whole process will take around 7 days to 15 days... HR will inform you quickly, once you get selected.
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Naukri.com and was interviewed in Sep 2023. There was 1 interview round.

Round 1 - One-on-one 

(1 Question)

  • Q1. Java basics, collections

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

I applied via Campus Placement

Round 1 - Resume Shortlist 
Pro Tip by AmbitionBox:
Don’t add your photo or details such as gender, age, and address in your resume. These details do not add any value.
View all tips
Round 2 - Technical 

(2 Questions)

  • Q1. 1. Coding question based on Kadanes algorithm?
  • Q2. 2. What is normalization
  • Ans. 

    Normalization is the process of organizing data in a database to reduce redundancy and improve data integrity.

    • Normalization involves breaking down a database into smaller, more manageable tables

    • Each table should have a primary key that uniquely identifies each record

    • Data should be stored in a way that minimizes redundancy and avoids data inconsistencies

    • Normalization is typically divided into several levels, with each l...

  • Answered by AI

Interview Preparation Tips

Topics to prepare for ACI Worldwide Associate Software Engineer interview:
  • DSA
  • DBMS
Interview preparation tips for other job seekers - Keep a small presentation ready about your project.
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
-
Process Duration
-
Result
-
Round 1 - Aptitude Test 

MCQ 50 questions for half hour

Round 2 - Technical 

(1 Question)

  • Q1. OOPs concepts with example
  • Ans. 

    OOPs concepts are fundamental principles of object-oriented programming, including inheritance, encapsulation, polymorphism, and abstraction.

    • Inheritance: Allows a class to inherit properties and behavior from another class. Example: Animal class can inherit from Mammal class.

    • Encapsulation: Bundling data and methods that operate on the data into a single unit. Example: Using private variables and public methods in a cla...

  • Answered by AI
Round 3 - HR 

(1 Question)

  • Q1. Tell me about your self

TSYS|Total System Services Interview FAQs

How many rounds are there in TSYS|Total System Services Technical Support Engineer interview?
TSYS|Total System Services interview process usually has 3 rounds. The most common rounds in the TSYS|Total System Services interview process are Technical, One-on-one Round and HR.
What are the top questions asked in TSYS|Total System Services Technical Support Engineer interview?

Some of the top questions asked at the TSYS|Total System Services Technical Support Engineer interview -

  1. What are the different SQL jo...read more
  2. What are CODS r...read more
  3. Different Questions Related to project developm...read more

Tell us how to improve this page.

TSYS|Total System Services Technical Support Engineer Interview Process

based on 1 interview

Interview experience

4
  
Good
View more
TSYS|Total System Services Technical Support Engineer Salary
based on 6 salaries
₹4.7 L/yr - ₹16 L/yr
105% more than the average Technical Support Engineer Salary in India
View more details
Senior Software Engineer
508 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Software Engineer
284 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Senior Associate Software Engineer
103 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Lead Software Engineer
102 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