Upload Button Icon Add office photos

Filter interviews by

TSYS|Total System Services Linux System Administrator Interview Questions and Answers for Experienced

Updated 10 Aug 2021

TSYS|Total System Services Linux System Administrator Interview Experiences for Experienced

1 interview found

I applied via Recruitment Consultant and was interviewed in Jul 2021. There were 4 interview rounds.

Interview Questionnaire 

2 Questions

  • Q1. Linux troubleshooting scenario based questions, Terraform, Ansible
  • Q2. AWS cloud platform basic services related questions

Interview Preparation Tips

Interview preparation tips for other job seekers - There will be 2 technical , 1 managerial round and then HR will call you for salary discussion. Total 4 rounds.

Interview questions from similar companies

I applied via Referral and was interviewed before Jul 2021. There was 1 interview round.

Round 1 - Technical 

(1 Question)

  • Q1. Core details and background of current profile

Interview Preparation Tips

Interview preparation tips for other job seekers - Be clear about basics and have sound knowledge of technology.
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Naukri.com and was interviewed before Nov 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 - One-on-one 

(2 Questions)

  • Q1. Commands in linux
  • Ans. 

    Linux commands are used to interact with the operating system and perform various tasks.

    • Commands are case-sensitive

    • Most commands have options and arguments

    • Common commands include ls, cd, pwd, mkdir, rm, cp, mv, grep, ps, top, systemctl

    • Use man command_name to get more information about a specific command

  • Answered by AI
  • Q2. What is linux and window Os difference
  • Ans. 

    Linux is an open-source operating system, while Windows is a proprietary operating system developed by Microsoft.

    • Linux is open-source and free to use, while Windows is proprietary and requires a license.

    • Linux is highly customizable and can be modified by users, while Windows has limited customization options.

    • Linux is known for its stability and security, while Windows is more vulnerable to viruses and malware.

    • Linux use...

  • Answered by AI

Skills evaluated in this interview

Interview experience
4
Good
Difficulty level
Moderate
Process Duration
More than 8 weeks
Result
Not Selected

I was interviewed in Oct 2024.

Round 1 - Technical 

(2 Questions)

  • Q1. Veritas cluster questions
  • Q2. /boot full, what steps do you take

Interview Preparation Tips

Interview preparation tips for other job seekers - HR response is too slow
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(2 Questions)

  • Q1. Related to the technical language like c,c++
  • Q2. Some DS questions
Round 2 - HR 

(2 Questions)

  • Q1. About college activities
  • Q2. Carriear motive
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
No response

I applied via Naukri.com and was interviewed in Mar 2024. There was 1 interview round.

Round 1 - Technical 

(2 Questions)

  • Q1. Redhat Patching
  • Q2. Patching from Satellite using yum update commands
  • Ans. 

    Patching from Satellite using yum update commands involves registering systems with Satellite, creating custom repositories, and running yum update commands.

    • Register systems with Satellite using subscription-manager command

    • Create custom repositories in Satellite for specific packages or updates

    • Run yum update command on systems to apply patches from Satellite

    • Monitor patching progress and schedule updates as needed

    • Exampl...

  • Answered by AI

Skills evaluated in this interview

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

I applied via Recruitment Consulltant and was interviewed in Jun 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 

(2 Questions)

  • Q1. Tell about LVM and sshd services
  • Ans. 

    LVM is a logical volume manager used for managing disk space on Linux systems. sshd is the SSH server daemon responsible for secure remote access.

    • LVM allows for dynamic allocation and resizing of logical volumes

    • It provides features like snapshots, mirroring, and striping

    • sshd is responsible for authenticating and encrypting SSH connections

    • It allows remote users to securely access and manage the system

    • sshd configuration ...

  • Answered by AI
  • Q2. Tell about patching
  • Ans. 

    Patching is the process of applying updates or fixes to software or systems to address vulnerabilities or improve functionality.

    • Patching involves downloading and installing updates provided by software vendors.

    • It helps to fix bugs, security vulnerabilities, and improve performance.

    • Patches can be applied manually or automatically using tools like yum, apt, or Windows Update.

    • Regular patching is crucial to ensure system s...

  • Answered by AI
Round 3 - Group Discussion 

Tell about self and previous experience.

Skills evaluated in this interview

Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(1 Question)

  • Q1. Ansible, linux, docker

Interview Preparation Tips

Round: Resume Shortlist
Experience: 4 years og experience

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

TSYS|Total System Services Interview FAQs

How to prepare for TSYS|Total System Services Linux System Administrator 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 Unix, Technical Support, Firmware, Performance Tuning and DNS.
What are the top questions asked in TSYS|Total System Services Linux System Administrator interview for experienced candidates?

Some of the top questions asked at the TSYS|Total System Services Linux System Administrator interview for experienced candidates -

  1. Linux troubleshooting scenario based questions, Terraform, Ansib...read more
  2. AWS cloud platform basic services related questi...read more

Tell us how to improve this page.

Interview Questions from Similar Companies

TCS Interview Questions
3.7
 • 10.4k Interviews
Wells Fargo Interview Questions
3.9
 • 565 Interviews
Citicorp Interview Questions
3.7
 • 565 Interviews
FIS Interview Questions
3.9
 • 482 Interviews
American Express Interview Questions
4.2
 • 359 Interviews
UBS Interview Questions
3.9
 • 331 Interviews
Morgan Stanley Interview Questions
3.7
 • 291 Interviews
Morningstar Interview Questions
3.9
 • 241 Interviews
View all
TSYS|Total System Services Linux System Administrator Salary
based on 10 salaries
₹5 L/yr - ₹13.3 L/yr
104% more than the average Linux System Administrator Salary in India
View more details

TSYS|Total System Services Linux System Administrator Reviews and Ratings

based on 1 review

5.0/5

Rating in categories

5.0

Skill development

5.0

Work-life balance

5.0

Salary

5.0

Job security

5.0

Company culture

5.0

Promotions

5.0

Work satisfaction

Explore 1 Review and Rating
Senior Software Engineer
515 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