Upload Button Icon Add office photos

Filter interviews by

TSYS|Total System Services Software Engineer2 Interview Questions and Answers

Updated 27 Jun 2022

TSYS|Total System Services Software Engineer2 Interview Experiences

1 interview found

I applied via Naukri.com and was interviewed before Jun 2021. There were 3 interview rounds.

Round 1 - Technical 

(2 Questions)

  • Q1. Oracle collections and procedures
  • Q2. Ref cursors object types tuning
Round 2 - Behavioral 

(1 Question)

  • Q1. Work details, every routine, business details
Round 3 - HR 

(2 Questions)

  • Q1. About yourself, family details
  • Q2. What would you do if you get an offer from another organization during notice period?

Interview Preparation Tips

Interview preparation tips for other job seekers - Practice collections and be confident. Keep the concepts clear. Easy interview.

Interview questions from similar companies

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

I applied via Approached by Company and was interviewed before Apr 2023. There were 5 interview rounds.

Round 1 - Coding Test 

Hackerrank Test with 2 coding questions with 1 hour time period

Round 2 - Technical 

(1 Question)

  • Q1. Questions on Angular basics to intermediate concepts which lasted about 1 hour
Round 3 - Technical 

(1 Question)

  • Q1. Questions on JavaScript concepts from basic to medium like Closures, Temporal Dead Zone, Call, Bind methods etc... for 1 hour
Round 4 - Behavioral 

(1 Question)

  • Q1. About personal match with the company along with some questions on full stack development and a kind of System Design for 45minutes
Round 5 - Team Matching 

(1 Question)

  • Q1. Matching round with one of the Engineer from the Team that I'm going to join, some general development conceptual questions were asked along with System design concepts by asking end to end development of ...

Interview Preparation Tips

Topics to prepare for FactSet Software Engineer2 interview:
  • Javascript Frameworks
Interview experience
5
Excellent
Difficulty level
Hard
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Naukri.com and was interviewed before May 2022. There were 4 interview rounds.

Round 1 - Coding Test 

Online one and one session for me it as 3 Rounds

1) one and one approx 1 Hour, this round is Technical, we need to share the screen and we need to say our overall experience and products involved and roles and responsibilities, They will ask the practical questions how we need to solve questions ( like I am from .Net technology) so they asked for .Net related technical questions, After that answer also will ask for any other possible ways we can write the code in different formats, This process will go until an Hour.

2) Same as Technical as Point 1 and this round will taken by manager and this is also 1 Hour, No changes as per about point.

3) This round also Technical, But this will took by the Senior manager, But it is just 20 minutes, The senior manager will just touch’s the technical part and they will check the your behaviour , English skills and they will ask the CEO of the company 😜.

4) HR round.

Round 2 - Coding Test 

Check the above round 1

Round 3 - Coding Test 

Check the above round 1

Round 4 - HR 

(1 Question)

  • Q1. Salary discussions
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(1 Question)

  • Q1. List and tuple difference
  • Ans. 

    List is mutable, tuple is immutable in Python.

    • List can be modified after creation, tuple cannot.

    • List is defined using square brackets [], tuple using parentheses ().

    • Example: list_example = [1, 2, 3], tuple_example = (4, 5, 6)

  • Answered by AI
Round 2 - HR 

(1 Question)

  • Q1. Salary discussion and hybrid model discussion

Skills evaluated in this interview

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

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

Round 1 - Technical 

(1 Question)

  • Q1. What is the difference between var let and const?
  • Ans. 

    var, let, and const are all used for variable declaration in JavaScript, but they have different scopes and mutability.

    • var is function-scoped and can be redeclared and reassigned

    • let is block-scoped and can be reassigned but not redeclared

    • const is block-scoped and cannot be reassigned or redeclared

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare on core concepts of the technologies and easy to medium problem solving questions. I interviewed for frontend developer so most of my questions were around Reactjs and Javascript. I was asked about arrays and variable scoping etc. Core Javascripts and ReactJS concepts are a must.

Skills evaluated in this interview

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

I applied via Company Website and was interviewed in Dec 2024. There were 2 interview rounds.

Round 1 - Technical 

(5 Questions)

  • Q1. Introduce yourself
  • Q2. What has been your experience with framework design and implementation?
  • Ans. 

    I have extensive experience in designing and implementing frameworks for various software projects.

    • Designed and implemented a custom testing framework for automated testing of web applications.

    • Utilized Spring framework for developing enterprise applications, including dependency injection and aspect-oriented programming.

    • Contributed to the design and implementation of a microservices architecture using Netflix OSS frame

  • Answered by AI
  • Q3. What is the tech and languages you are comfortable with? Rate yourself on each.
  • Ans. 

    I am comfortable with Java, Python, and SQL. I rate myself 8/10 in Java, 7/10 in Python, and 9/10 in SQL.

    • Java - 8/10

    • Python - 7/10

    • SQL - 9/10

  • Answered by AI
  • Q4. What is your experience with finance?
  • Ans. 

    I have experience working on financial software applications and projects.

    • Developed financial software applications for tracking expenses and budgeting

    • Worked on projects involving payment processing and transaction management

    • Familiar with financial data analysis and reporting tools

    • Collaborated with finance teams to understand requirements and implement solutions

  • Answered by AI
  • Q5. What is TDD and BDD? What are the differences and which one do you prefer?
  • Ans. 

    TDD stands for Test-Driven Development and BDD stands for Behavior-Driven Development. TDD focuses on writing tests before writing code, while BDD focuses on the behavior of the system.

    • TDD involves writing a failing test, writing code to make the test pass, and then refactoring the code.

    • BDD focuses on defining the behavior of the system through examples written in a specific format like Given-When-Then.

    • TDD is more deve...

  • Answered by AI
Round 2 - Technical 

(6 Questions)

  • Q1. Write a program to find the frequency of word in a sentence
  • Ans. 

    Program to find frequency of words in a sentence

    • Split the sentence into words using space as delimiter

    • Create a map to store word frequencies

    • Iterate through the words and update the map accordingly

    • Handle case sensitivity and punctuation if needed

  • Answered by AI
  • Q2. Write a program to check if the sum of digits of.the given number is a prime number
  • Ans. 

    Program to check if sum of digits of a number is prime

    • Convert the number to a string to iterate through each digit

    • Calculate the sum of digits

    • Check if the sum is a prime number

  • Answered by AI
  • Q3. Write an SQL query to get the second highest salary in the table
  • Ans. 

    SQL query to get the second highest salary in a table

    • Use the MAX() function to find the highest salary

    • Use the WHERE clause to exclude the highest salary

    • Order the salaries in descending order and limit the result to 1

  • Answered by AI
  • Q4. What is the difference between abstract class and interface? Give a use case for both.
  • Ans. 

    Abstract class allows partial implementation while interface allows full abstraction.

    • Abstract class can have both abstract and non-abstract methods, while interface can only have abstract methods.

    • A class can only extend one abstract class, but can implement multiple interfaces.

    • Abstract class is used when some common functionality needs to be shared among subclasses, while interface is used to define a contract for clas...

  • Answered by AI
  • Q5. Explain static and give it's use case.
  • Ans. 

    Static keyword is used in programming to declare variables or methods that belong to the class itself, rather than instances of the class.

    • Static variables are shared among all instances of a class.

    • Static methods can be called without creating an instance of the class.

    • Static keyword is used to define constants in a class.

    • Static keyword is used in Java, C++, and other programming languages.

  • Answered by AI
  • Q6. Where are objects stored in memory?
  • Ans. 

    Objects are stored in memory in the heap or stack depending on their scope and lifetime.

    • Objects with local scope are stored on the stack, while objects with dynamic memory allocation are stored on the heap.

    • Primitive data types like int, float are stored on the stack, while complex objects like arrays, classes are stored on the heap.

    • Objects stored on the stack have faster access but limited size, while objects on the he

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Thoroughly practice and study language of your choice
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(2 Questions)

  • Q1. Dsa questions- medium level
  • Q2. Dsa questions - medium level
Interview experience
3
Average
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Naukri.com and was interviewed before Jun 2023. There were 5 interview rounds.

Round 1 - One-on-one 

(1 Question)

  • Q1. Asked about my work experience and questions based on the resume points
Round 2 - One-on-one 

(1 Question)

  • Q1. Asked java programs, SQL questions.
Round 3 - One-on-one 

(1 Question)

  • Q1. With Manager, asked few technical questions based on resume points
Round 4 - Behavioral 

(1 Question)

  • Q1. It was casual discussion
Round 5 - HR 

(1 Question)

  • Q1. It was mainly salary discussion and joining date related

I appeared for an interview in May 2017.

Interview Questionnaire 

6 Questions

  • Q1. Can string class be extended
  • Ans. 

    Yes, the string class can be extended in most programming languages.

    • Inheritance can be used to extend the functionality of the string class.

    • By creating a new class that inherits from the string class, additional methods and properties can be added.

    • Extending the string class allows for customization and adding specific functionality to strings.

    • Example: In Python, the string class can be extended by creating a new class

  • Answered by AI
  • Q2. What are the implecit object in JSP
  • Ans. 

    Implicit objects in JSP are predefined objects that are available for use without any declaration or initialization.

    • Implicit objects in JSP include request, response, session, application, out, config, pageContext, page, exception, and others.

    • These objects provide access to various aspects of the JSP environment and can be used to perform common tasks.

    • For example, the request object allows access to HTTP request parame...

  • Answered by AI
  • Q3. How does hash map works
  • Ans. 

    A hash map is a data structure that uses a hash function to map keys to values.

    • Hash map stores key-value pairs

    • It uses a hash function to compute an index for each key

    • Collisions can occur when two keys hash to the same index

    • Hash maps provide fast access to values based on their keys

  • Answered by AI
  • Q4. Difference between string buffer and string builder
  • Ans. 

    StringBuffer and StringBuilder are both used to manipulate strings, but StringBuffer is thread-safe while StringBuilder is not.

    • StringBuffer is synchronized, making it safe for use in multi-threaded environments.

    • StringBuilder is not synchronized, making it faster but not thread-safe.

    • StringBuffer is preferred when multiple threads are involved, while StringBuilder is preferred for single-threaded scenarios.

    • Both classes p...

  • Answered by AI
  • Q5. What is MVC
  • Ans. 

    MVC is a software architectural pattern that separates an application into three main components: Model, View, and Controller.

    • Model represents the data and business logic of the application.

    • View is responsible for displaying the user interface.

    • Controller handles user input, updates the model, and interacts with the view.

    • MVC promotes separation of concerns and modularity in software development.

    • Example: In a web applica...

  • Answered by AI
  • Q6. What are the annotation used in RESTFULL web services
  • Ans. 

    Annotations used in RESTful web services

    • 1. @Path - Specifies the URI path for the resource

    • 2. @GET - Specifies that the method handles HTTP GET requests

    • 3. @POST - Specifies that the method handles HTTP POST requests

    • 4. @PUT - Specifies that the method handles HTTP PUT requests

    • 5. @DELETE - Specifies that the method handles HTTP DELETE requests

    • 6. @PathParam - Binds the value of a URI template parameter to a method paramete...

  • Answered by AI

Interview Preparation Tips

Skills: Java Application Development

Skills evaluated in this interview

Interview Preparation Tips

Round: Technical Interview
Experience: Technical on paper test questions:(dis was only for 12 among d 26 shortlisted ppl after apti...others directly had interviews)
5 wer selected in this test who wer nw sent for interviews
TECHNICAL INTERVIEW: (pls list the questions asked in all the rounds)
26 shortlisted after apti (14 directly for interviews & 12 had one more technical on paper test...mentioned above)
der wer min 2 technical rounds for each of them...max were 5

- You are given course dependencies
A->B,C
B->D
C->A
D->nothing
The above dependencies mean...if you want to take course A...you should take courses B and C first....To take B,Course D must be taken first....D is an independent course and can be taken without any prior requirements.
Now you are told these dependencies.Come up with an appropriate data structure to represent these dependencies.Then write a code that finds out all the courses that the student can take up...in this case the student can first take course D because its independent.Now that course D has been taken he can next take up B as it depends on B alone...But the courses A and C can never be taken because they depend on each other...So here all the courses that can be taken are B and D.
After i wrote the code....he asked for all possible test cases
-Given an array of length N....It can be filled with nos. only from 1 to N....find which nos are repeated in the array
-Given pointers to two nodes in a binary tree....find their least common ancestor...each node has pointer to only the parent node...not the left and right child..
-In a binary tree(Not necessarily a BST)...suppose the weight of any node is defined as the product of the key value of the node and the level of the node(Root at level 1)...find the node with maximum weight in the binary tree
-A sorted array of size n is right circularly rotated k times and this rotated array is given to you as input...Find out the value of k in log n time .
-There are some processes running at time T....and there are processes running at time T+30.
You have to find out
1)Which processes died at time T+30,which were alive at time T
2)Which are the new processes at time T+30,which were not there at time T
3)Which are the processes that were there at time T and are still running at time T+30
What data structure will you use to represent the process lists and write code to find out the answers to the 3 questions above
-Given a binary search tree...and a target sum...starting at the root...which all paths add up to the target sum?...if there are multiple paths....return the path with least no. of nodes.


College Name: Veermata Jijabai Technological Institute, Mumbai [ VJTI ]

TSYS|Total System Services Interview FAQs

How many rounds are there in TSYS|Total System Services Software Engineer2 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, Behavioral and HR.
What are the top questions asked in TSYS|Total System Services Software Engineer2 interview?

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

  1. Oracle collections and procedu...read more
  2. Ref cursors object types tun...read more

Tell us how to improve this page.

Interview Questions from Similar Companies

Wells Fargo Interview Questions
3.8
 • 570 Interviews
Citicorp Interview Questions
3.7
 • 568 Interviews
American Express Interview Questions
4.2
 • 364 Interviews
UBS Interview Questions
3.9
 • 336 Interviews
Morgan Stanley Interview Questions
3.7
 • 291 Interviews
Morningstar Interview Questions
3.9
 • 241 Interviews
FactSet Interview Questions
3.9
 • 206 Interviews
BNP Paribas Interview Questions
3.8
 • 180 Interviews
View all
TSYS|Total System Services Software Engineer2 Salary
based on 40 salaries
₹8 L/yr - ₹15 L/yr
36% less than the average Software Engineer2 Salary in India
View more details
Senior Software Engineer
482 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
83 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