Upload Button Icon Add office photos

Filter interviews by

TSYS|Total System Services Sdet Automation Test Engineer Interview Questions and Answers

Updated 28 Nov 2022

TSYS|Total System Services Sdet Automation Test Engineer Interview Experiences

1 interview found

I applied via Campus Placement and was interviewed in May 2022. There were 2 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 

(5 Questions)

  • Q1. Questions about framework you have used in project, TestNG annotations ,flags.
  • Q2. String reverse program,
  • Q3. Find duplicate in array program
  • Ans. 

    Program to find duplicates in an array.

    • Iterate through the array and compare each element with the rest of the elements.

    • If a match is found, add it to a separate array or print it.

    • Use a hash table to keep track of the frequency of each element.

    • Sort the array and compare adjacent elements to find duplicates.

  • Answered by AI
  • Q4. Open perticular page and inspect element (link)
  • Q5. Selenium waits , difference
  • Ans. 

    Selenium waits are used to pause the execution of the script, while the difference is in the way they wait for an element.

    • Implicit wait is used to wait for a certain amount of time before throwing an exception if the element is not found.

    • Explicit wait is used to wait for a certain condition to occur before proceeding with the execution.

    • Fluent wait is used to wait for an element with a certain frequency and timeout peri...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Focus on framework, oops concepts, programs on Array, String

Skills evaluated in this interview

Interview questions from similar companies

Interview experience
5
Excellent
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 - Technical 

(1 Question)

  • Q1. Prepare interview questions from geekforgeeks & leetcode.
Round 3 - Technical 

(1 Question)

  • Q1. Api automation related questions with writing the framework.
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
4-6 weeks
Result
Selected Selected

I applied via Referral and was interviewed in Aug 2023. There was 1 interview round.

Round 1 - Coding Test 

90 min coding test
Mid level questions

Interview Preparation Tips

Interview preparation tips for other job seekers - Read more on basic concepts and programming
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(1 Question)

  • Q1. OOPS Concepts,Java Coding,Testing
Round 2 - Technical 

(1 Question)

  • Q1. Selenium, APIs, Automation

I applied via Naukri.com and was interviewed before Apr 2020. There were 3 interview rounds.

Interview Questionnaire 

1 Question

  • Q1. 1. Explain SCD Type 2 Implementation in Informatica
  • Ans. 

    SCD Type 2 is a technique used to track historical changes in data over time in a data warehouse.

    • SCD Type 2 maintains a separate row for each change in data, with a start and end date.

    • It requires a surrogate key to uniquely identify each row.

    • Informatica provides a built-in SCD Type 2 transformation to implement this technique.

    • Example: tracking changes in customer addresses over time.

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Kindly focus on basic BI terminologies, common to trivial scenarios and introductory information on latest trending tools and technologies.

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 ]

Interview Questionnaire 

11 Questions

  • Q1. What is the difference between multi tasking, multi processing and multi programming operating systems with examples ?
  • Ans. 

    Multi tasking, multi processing, and multi programming are different approaches to managing tasks in an operating system.

    • Multi tasking allows multiple tasks to run concurrently on a single processor.

    • Multi processing involves multiple processors running tasks simultaneously.

    • Multi programming allows multiple programs to be loaded into memory and executed concurrently.

    • Examples of multi tasking operating systems include Wi...

  • Answered by AI
  • Q2. Tell me about memory allocation (stack vs. heap)?
  • Ans. 

    Memory allocation refers to the process of assigning memory to programs during runtime.

    • Stack allocation is done automatically and is limited in size.

    • Heap allocation is done manually and is larger in size.

    • Stack memory is used for local variables and function calls.

    • Heap memory is used for dynamic memory allocation.

    • Memory leaks can occur if heap memory is not properly managed.

  • Answered by AI
  • Q3. You have two threads one printing even numbers in order and other odd numbers. Design an algorithm so that it prints numbers in natural order?
  • Ans. 

    Use a shared variable and synchronization mechanisms to ensure natural order printing of numbers.

    • Create two threads, one for printing even numbers and the other for printing odd numbers.

    • Use a shared variable to keep track of the current number to be printed.

    • Implement synchronization mechanisms like locks or semaphores to ensure only one thread can access the shared variable at a time.

    • Each thread should check if it is i...

  • Answered by AI
  • Q4. Print a matrix in spiral order?
  • Ans. 

    Printing a matrix in spiral order

    • Start from the first element and print it

    • Move in a spiral order towards the center of the matrix

    • Repeat until all elements are printed

  • Answered by AI
  • Q5. Thread class and Runnable Interface?
  • Ans. 

    Thread class and Runnable Interface are used for multithreading in Java.

    • Thread class is a predefined class in Java that provides methods to create and control threads.

    • Runnable interface is used to define a task that can be executed by a thread.

    • Thread class implements Runnable interface.

    • Thread class provides more control over threads than Runnable interface.

    • Example: Thread t = new Thread(new MyRunnable()); t.start();

    • Exa...

  • Answered by AI
  • Q6. What’s the difference between a Linked List and an ArrayList and give me an example of when to use which?
  • Ans. 

    Linked List is a dynamic data structure while ArrayList is a static data structure.

    • Linked List is best for frequent insertion and deletion operations.

    • ArrayList is best for frequent access operations.

    • Linked List uses more memory than ArrayList.

    • ArrayList is faster than Linked List for accessing elements.

    • Use Linked List when you need to frequently add or remove elements from the list.

    • Use ArrayList when you need to frequen

  • Answered by AI
  • Q7. Questions of OS concepts?
  • Q8. A role play scenario was given. With a clear instruction on I don’t need to know the basis and the hypothetical assumption was presented. I was told that I was expected to respond to the given scenario, in...
  • Q9. Why are you interested in a career in investment banking?
  • Ans. 

    I am not interested in a career in investment banking.

    • I am more interested in a career in software development

    • I enjoy problem-solving and creating innovative solutions through coding

    • Investment banking does not align with my passion and skill set

  • Answered by AI
  • Q10. Why have you chosen to apply to J.P. Morgan?
  • Ans. 

    I have chosen to apply to J.P. Morgan because of their reputation, global presence, and opportunities for growth.

    • J.P. Morgan has a strong reputation in the financial industry.

    • They have a global presence with offices in multiple countries.

    • The company offers various opportunities for career growth and development.

    • J.P. Morgan is known for its innovative technology solutions in the financial sector.

    • I am impressed by their ...

  • Answered by AI
  • Q11. Have you ever made a mistake? Tell us about it?
  • Ans. 

    Yes, I have made a mistake in my previous project.

    • I underestimated the complexity of a task and ended up missing the deadline.

    • I failed to properly test a feature, resulting in a bug that affected user experience.

    • I accidentally deleted an important file without having a backup.

    • I misunderstood a requirement and implemented a feature incorrectly.

  • Answered by AI

Interview Preparation Tips

Round: Test
Total Questions: 1

General Tips: Interview Process: Aptitude test, followed by 3 rounds of interview. Interview process was very good. Just be positive to clear the interview.
Check this link before appearing for interview with JP Morgan. It will help  -----
Skills: Algorithm, Data structure, Stack
College Name: Na

Skills evaluated in this interview

Business Analyst Interview Questions & Answers

Citicorp user image Bhargava Excalibur

posted on 30 Aug 2015

Interview Questionnaire 

9 Questions

  • Q1. Tell me about your education background
  • Ans. 

    I have a Bachelor's degree in Business Administration and a Master's degree in Finance.

    • Bachelor's degree in Business Administration

    • Master's degree in Finance

  • Answered by AI
  • Q2. Explain one of your internships or project
  • Q3. Do you want to ask any question?
  • Q4. Estimate the number of atm in India
  • Ans. 

    There are approximately 200,000 ATMs in India.

    • As of March 2021, there were around 200,000 ATMs in India.

    • The number of ATMs in India has been steadily increasing over the years.

    • ATMs are operated by various banks and financial institutions in India.

    • The Reserve Bank of India regulates the functioning of ATMs in the country.

  • Answered by AI
  • Q5. Explain me about the internships followed by many questions
  • Q6. Why are you going for analytics though you have graduated from mining engineer
  • Ans. 

    Analytics offers a diverse range of career opportunities and aligns with my interests and skills.

    • Mining engineering and analytics share common skills such as data analysis and problem-solving.

    • Analytics offers a wider range of industries to work in, including finance, healthcare, and technology.

    • I have taken courses in data analytics and found it to be a fascinating field with endless possibilities.

    • I believe that my back...

  • Answered by AI
  • Q7. Why not Ph.d
  • Ans. 

    Ph.D not necessary for Business Analyst role

    • Ph.D is not a requirement for a Business Analyst role

    • Experience and skills are more important than a Ph.D

    • A Ph.D may not provide practical business knowledge

    • A Ph.D may not align with the goals of a Business Analyst role

  • Answered by AI
  • Q8. Why citi
  • Ans. 

    Citi is a leading global bank with a strong reputation for innovation and customer service.

    • Citi has a strong global presence with operations in over 160 countries

    • Citi is known for its innovative approach to banking, including its mobile app and digital banking services

    • Citi has a strong reputation for customer service, consistently ranking highly in customer satisfaction surveys

    • Citi offers a wide range of financial prod...

  • Answered by AI
  • Q9. Do you need to ask me anything

Interview Preparation Tips

Round: Test
Experience: The quantitative part is relatively easy, it is for testing the speed and accuracy, there are two math cases given the exam but they were also comparatively easy based on probability and statistics
Tips: In the math cases it is very important to analyse the result after solving it. that is what makes the difference because almost every one solves it
Duration: 30 minutes
Total Questions: 22

Round: Interview
Experience: The guy was one of the vice presidents in the firm. He seemed pretty cool.
They will make you more comfortable and they want you answer the questions.
Tips: Do not try to babble about all the courses that you have taken just brief him your specialization, projects and internships.

Try to explain an intern or project related to the position and be sure about what you are explaining these guys are technically very sound.

Try not to ask the bland questions like what are the opportunities at Citi , what is the vertical hierarchy in the firm. This is not an hr question and this is a trap. Ask him about the plunging profits or gains or what is citi's strategy to hold its position in certain countries. This will give him the impression that you did prepare for the interview.

Round: Interview
Experience: This was a mix of stress +guesstimate+ technical interview.
This round went so much longer than the first round. Some times they may ask an irrelevant question just to see how you react to it. In this round they have asked me everything about the projects and internships. As I told you they were technically sound they will track you up to every minute detail of the project. They have also asked many situation type questions. They have asked me about my high CGPA and why not a Ph.D.
Tips: Try to be as much cool as possible in this interview do not show a blank face to the interviewers when they have asked something from your CV. In the situation type questions try to relate those situations to something on your CV and then tell them how you have solved it. And you must be a master of your CV you must be able to answer about a particular graph or result from your project even during sleep. they shoot a lot of questions at you and answer them as appropriately as you can. Be sure to know what your strengths and weakness are. do not try to disguise your weakness as a strength, they will find out that you are trying to fake, they have seen thousand of candidates like you.

Round: Interview
Experience: I had a friendly chat with the HR to begin with as he was asking about my surname and stuff. the interview went on for 15-20 mins of the phone. here you need to really explain about why you are interested in citi and why you are into analytics
Tips: Follow the same tips mentioned in the third round.

General Tips: Be thorough with your projects and internships and do not try to fake the technical details
Skill Tips: Good technical knowledge is required and taking statistics courses would really help
Skills: Speed, Accuracy, Analytical ability, Stress handling, statistical methods basics, reasoning
College Name: IIT KHARAGPUR
Motivation: Nice work life balance and growth in the firm and the firms stability

Interview Preparation Tips

Round: Test
Experience: Test conducted covered 12th class mathematics like probability, permutations and combinations, etc. 

Good knowledge of this subject was needed for clearing this round.Around 40 students were short-listed after this round.

Round: Case Study Interview
Experience: Questions asked were based on probability and optimization.

Round: Technical Interview
Experience: This round judged the candidate's knowledge on Data Analysis, General Awareness and other questions asked were resume-based.

Round: HR Interview
Experience: In this, a candidate were asked some random questions and questions regarding himself.

General Tips: Have a good practice on all the questions sent by BC.For every point mentioned in the resume, one should have a backup for that point.Read Newspapers (at least Economic Times) at least before 2 months.
Skill Tips: CAT preparation would definitely help (almost same topics as CAT).
Skills: Knowledge in Probability and Statistics., Basics in Operation Research (Optimization).
College Name: IIT MADRAS
Motivation: The company encourages entrepreneurial skills,enabling and empowering employees to take appropriate decisions. Those wanting to grow better as an entrepreneur should definitely apply here.

Interview Questionnaire 

2 Questions

  • Q1. Citi bank has to enter Indian Market where should it set up its offices?
  • Ans. 

    Citi bank should set up its offices in major cities like Mumbai, Delhi, and Bangalore.

    • Citi bank should consider the economic and political stability of the region.

    • The bank should also consider the availability of skilled workforce and infrastructure.

    • Major cities like Mumbai, Delhi, and Bangalore have a large customer base and a well-established financial sector.

    • Setting up offices in multiple cities can help the bank re...

  • Answered by AI
  • Q2. If I am(interviewer) a client will you(interviewee) give me credit card?

Interview Preparation Tips

Round: Test
Experience: 10 single correct questions, 10 CAT based questions, 5 data sufficiency questions, 2 subjective questions were asked.
Tips: All the objective questions were easy so everyone would have solved. Subjective questions were important for selecting candidates .Final solution for subjective questions are not important ,the way you approach is important.
Duration: 45 minutes

Round: Case Study Interview
Experience: Questioned on Resume points. A case study was given and the student has to analyse it.

Round: Case Study Interview
Experience: Case study question and brain teaser were asked. Brainteaser was an easy question.

Skill Tips: Mock interviews with friends and ready with all resume points of how to explain them each helps. Solved many case studies. Updated myself with latest news. I also read Wiki questions like how to get 3 wolnes, 2 men to other side of river?.
Skills: Soft skills, Case study solving ability
College Name: IIT MADRAS

TSYS|Total System Services Interview FAQs

How many rounds are there in TSYS|Total System Services Sdet Automation Test Engineer interview?
TSYS|Total System Services interview process usually has 2 rounds. The most common rounds in the TSYS|Total System Services interview process are Resume Shortlist and Technical.
What are the top questions asked in TSYS|Total System Services Sdet Automation Test Engineer interview?

Some of the top questions asked at the TSYS|Total System Services Sdet Automation Test Engineer interview -

  1. Find duplicate in array prog...read more
  2. Selenium waits , differe...read more
  3. Open perticular page and inspect element (li...read more

Tell us how to improve this page.

Interview Questions from Similar Companies

Wells Fargo Interview Questions
3.8
 • 575 Interviews
Citicorp Interview Questions
3.7
 • 573 Interviews
American Express Interview Questions
4.2
 • 365 Interviews
UBS Interview Questions
3.9
 • 338 Interviews
Morgan Stanley Interview Questions
3.6
 • 293 Interviews
Morningstar Interview Questions
3.9
 • 244 Interviews
FactSet Interview Questions
3.9
 • 208 Interviews
BNP Paribas Interview Questions
3.8
 • 180 Interviews
View all
TSYS|Total System Services Sdet Automation Test Engineer Salary
based on 17 salaries
₹10 L/yr - ₹29 L/yr
33% more than the average Sdet Automation Test Engineer Salary in India
View more details

TSYS|Total System Services Sdet Automation Test Engineer Reviews and Ratings

based on 3 reviews

4.8/5

Rating in categories

3.1

Skill development

4.4

Work-life balance

3.9

Salary

4.8

Job security

4.3

Company culture

3.5

Promotions

4.1

Work satisfaction

Explore 3 Reviews and Ratings
Senior Software Engineer
514 salaries
unlock blur

₹9.7 L/yr - ₹30 L/yr

Software Engineer
288 salaries
unlock blur

₹7 L/yr - ₹22.4 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 - ₹26.6 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.1
Compare
Did you find this page helpful?
Yes No
write
Share an Interview