Upload Button Icon Add office photos
Engaged Employer

i

This company page is being actively managed by TCS Team. If you also belong to the team, you can get access from here

TCS Verified Tick

Compare button icon Compare button icon Compare
3.7

based on 84.9k Reviews

Filter interviews by

TCS Production Support Engineer Interview Questions and Answers for Experienced

Updated 24 Dec 2021

TCS Production Support Engineer Interview Experiences for Experienced

1 interview found

I applied via Recruitment Consultant and was interviewed before Dec 2020. There were 3 interview rounds.

Interview Questionnaire 

1 Question

  • Q1. Basic linux, sql, itil, sdlc question

Interview Preparation Tips

Interview preparation tips for other job seekers - Technical part was very easy, moreover they look on the candidate's confidence & capability to take responsibility

Interview questions from similar companies

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

I applied via Company Website and was interviewed in Jan 2023. 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 - Virtual interview 

(6 Questions)

  • Q1. What is a role of support engineer
  • Ans. 

    A support engineer is responsible for providing technical assistance and resolving issues related to software or hardware systems.

    • Providing technical support to customers or end-users

    • Troubleshooting and resolving software or hardware issues

    • Installing, configuring, and maintaining systems

    • Monitoring system performance and identifying potential problems

    • Collaborating with development teams to address bugs or enhancements

    • Do...

  • Answered by AI
  • Q2. What is ticketing tool
  • Ans. 

    A ticketing tool is a software application used to track and manage customer support requests or issues.

    • Ticketing tools help in organizing and prioritizing customer support tickets.

    • They provide a centralized platform for communication and collaboration between support teams and customers.

    • Ticketing tools often include features like ticket assignment, status tracking, and reporting.

    • Examples of popular ticketing tools inc

  • Answered by AI
  • Q3. What is monitoring tool
  • Ans. 

    A monitoring tool is a software application or system that collects and analyzes data to track the performance and health of a system or application.

    • Monitoring tools collect data from various sources such as servers, networks, databases, and applications.

    • They provide real-time visibility into the system's performance, availability, and resource utilization.

    • Monitoring tools can generate alerts or notifications when pred...

  • Answered by AI
  • Q4. What are SQL comments
  • Ans. 

    SQL comments are used to add explanatory notes or remarks within SQL code.

    • SQL comments start with a double hyphen (--), or can be enclosed between /* and */

    • Comments are ignored by the SQL engine and are not executed as part of the code

    • Comments can be used to improve code readability and provide documentation

    • Comments can be used to disable or temporarily remove parts of the code for testing or debugging purposes

  • Answered by AI
  • Q5. What doing in the SQL
  • Q6. What is DML full form
  • Ans. 

    DML stands for Data Manipulation Language.

    • DML is a subset of SQL (Structured Query Language) used to manipulate data in a database.

    • It includes commands like INSERT, UPDATE, DELETE, and SELECT.

    • DML statements are used to add, modify, or delete data in database tables.

    • For example, INSERT statement is used to add new records, UPDATE statement is used to modify existing records, DELETE statement is used to remove records, a...

  • Answered by AI

Interview Preparation Tips

Topics to prepare for IBM Production Support Engineer interview:
  • PLSQL
  • SQL
  • Oricale
  • Selcripting
Interview preparation tips for other job seekers - I am working very hard to a company I was interested in companys

Skills evaluated in this interview

I applied via Naukri.com and was interviewed in May 2021. There were 3 interview rounds.

Interview Questionnaire 

1 Question

  • Q1. Service Management scenario based questions

Interview Preparation Tips

Interview preparation tips for other job seekers - They take three rounds, first would be Tech then core tech then one with their VP after that only you will get into HCL
Interview experience
5
Excellent
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Job Fair and was interviewed in Oct 2024. There were 2 interview rounds.

Round 1 - Assignment 

Online assessment tools can provide detailed feedback on test results, including psychometric analysis and in-exam data. This data can help teachers understand how students are learning and what they need to improve on.

Round 2 - Aptitude Test 

Tool that assesses a person's skills, abilities, and potential to succeed in a given role or activity. Aptitude tests are used in schools, by employers, and to help people make career decisions.

Interview Preparation Tips

Interview preparation tips for other job seekers - Highlight your relevant experience and skills that match the job description. Also, research the company and the job role to show that you have a genuine interest in the organization. Finally, be sure to follow up after submitting your application to show your enthusiasm and dedication.
Interview experience
4
Good
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
-

I applied via Company Website and was interviewed in Sep 2024. There was 1 interview round.

Round 1 - Technical 

(2 Questions)

  • Q1. Please ask technical level question?
  • Q2. Application support engineer question?

Interview Preparation Tips

Interview preparation tips for other job seekers - nill
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via Naukri.com and was interviewed in Aug 2023. There were 2 interview rounds.

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 - One-on-one 

(5 Questions)

  • Q1. What is internal working of hashmap
  • Ans. 

    HashMap is a data structure that stores key-value pairs and uses hashing to quickly retrieve values based on keys.

    • HashMap internally uses an array of linked lists to store key-value pairs.

    • When a key-value pair is added, the key is hashed to determine the index in the array where the pair will be stored.

    • If multiple key-value pairs hash to the same index, they are stored in a linked list at that index.

    • To retrieve a value...

  • Answered by AI
  • Q2. What is difference between hashmap and concurrent hashmap
  • Ans. 

    HashMap is not thread-safe while ConcurrentHashMap is thread-safe.

    • HashMap is not thread-safe and can lead to ConcurrentModificationException if modified while iterating.

    • ConcurrentHashMap allows concurrent modifications without the need for external synchronization.

    • ConcurrentHashMap achieves thread-safety by dividing the map into segments, allowing multiple threads to operate on different segments concurrently.

    • Concurren...

  • Answered by AI
  • Q3. Can we override main method in java
  • Ans. 

    No, main method in Java cannot be overridden.

    • Main method is a static method of a class and cannot be overridden.

    • Subclasses can have their own main method, but it will not be considered as the entry point of the program.

    • Example: public class SubClass extends MainClass { public static void main(String[] args) { // This is not the entry point of the program }}

  • Answered by AI
  • Q4. Write the command to find the hidden files in unix
  • Ans. 

    Use the 'ls' command with the '-a' flag to find hidden files in Unix.

    • Use the command 'ls -a' to list all files, including hidden files.

    • Hidden files in Unix start with a dot (.) before the file name.

    • Example: 'ls -a' will display all files, including hidden files.

  • Answered by AI
  • Q5. Write a command to replace a string in unix
  • Ans. 

    Use the sed command to replace a string in Unix

    • Use the following syntax: sed 's/original_string/new_string/g' filename

    • The 's' flag stands for substitute, 'g' flag stands for global (replace all occurrences)

    • Example: sed 's/hello/goodbye/g' file.txt

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - For java production support please brush up Unix SQL and unix

Skills evaluated in this interview

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

I applied via Naukri.com and was interviewed in Jul 2023. There were 3 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 - Group Discussion 

About current project and roles and resposibilities etc

Round 3 - Technical 

(5 Questions)

  • Q1. SQL COMPLEX QUERIES and PL SQL, CRON JOBS, SERVICE NOW
  • Q2. What are difference between SQL and PL SQL
  • Ans. 

    SQL is a standard language for managing relational databases, while PL/SQL is a procedural language extension for SQL.

    • SQL is a standard language for querying and manipulating data in relational databases.

    • PL/SQL is a procedural language extension for SQL, allowing for more complex programming logic.

    • SQL is used for data manipulation and retrieval, while PL/SQL is used for writing stored procedures and functions.

    • SQL state...

  • Answered by AI
  • Q3. Explain types of joins?
  • Ans. 

    Types of joins are used in databases 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 (or Left Outer Join): Returns all rows from the left table and the matched rows from the right table.

    • Right Join (or Right Outer Join): Returns all rows from the right table and the matched rows from the left table.

    • Full Join...

  • Answered by AI
  • Q4. Diffence between correlated and non correlated subquary?
  • Ans. 

    Correlated subquery refers to a subquery that is dependent on the outer query, while non-correlated subquery can be executed independently.

    • Correlated subquery is executed for each row processed by the outer query, while non-correlated subquery is executed only once.

    • Correlated subquery is slower in performance compared to non-correlated subquery.

    • Example: SELECT * FROM table1 WHERE column1 = (SELECT MAX(column2) FROM tab

  • Answered by AI
  • Q5. Find departement wise total sal?
  • Ans. 

    To find department wise total salary, sum up the salaries of employees in each department.

    • Group employees by department

    • Calculate total salary for each department

    • Display department wise total salary

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Try your best......

Skills evaluated in this interview

Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - One-on-one 

(1 Question)

  • Q1. What is quality.
  • Ans. 

    Quality is the measure of excellence or superiority of something.

    • Quality is meeting or exceeding customer expectations.

    • It involves consistency, reliability, and durability.

    • Quality can be subjective and may vary depending on the context.

    • Examples of quality in production engineering include precision machining, efficient processes, and reliable products.

  • Answered by AI
Interview experience
4
Good
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Naukri.com and was interviewed in Feb 2023. There were 3 interview rounds.

Round 1 - Resume Shortlist 
Pro Tip by AmbitionBox:
Double-check your resume for any spelling mistakes. The recruiter may consider spelling mistakes as careless behavior or poor communication skills.
View all tips
Round 2 - Aptitude Test 

All questions in the maths , general knowledge, history

Round 3 - HR 

(5 Questions)

  • Q1. Personal information
  • Q2. Ask u skills and clg projects
  • Q3. Working experience and know u about company
  • Q4. What u accept salary
  • Q5. Wait for result

Interview Preparation Tips

Interview preparation tips for other job seekers - Good information for jobs

I applied via Approached by Company and was interviewed in Sep 2021. There were 2 interview rounds.

Round 1 - HR 

(5 Questions)

  • Q1. What are your salary expectations?
  • Q2. Share details of your previous job.
  • Q3. Where do you see yourself in 5 years?
  • Q4. What are your strengths and weaknesses?
  • Q5. Tell me about yourself.
Round 2 - Technical 

(1 Question)

  • Q1. Aiw?nnnnnnnnnnnnn? Mmmma q

Interview Preparation Tips

Interview preparation tips for other job seekers - Aiw$.......
.

...
.......
...

....

TCS Interview FAQs

How to prepare for TCS Production Support 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 TCS. The most common topics and skills that interviewers at TCS expect are Agile, Cursor, Data Warehousing, PLSQL and Production Support.

Tell us how to improve this page.

People are getting interviews through

based on 1 TCS interview
Recruitment Consultant
100%
Low Confidence
?
Low Confidence means the data is based on a small number of responses received from the candidates.

Interview Questions from Similar Companies

Accenture Interview Questions
3.9
 • 7.9k Interviews
Infosys Interview Questions
3.7
 • 7.4k Interviews
Wipro Interview Questions
3.7
 • 5.5k Interviews
Cognizant Interview Questions
3.8
 • 5.5k Interviews
Capgemini Interview Questions
3.8
 • 4.7k Interviews
Tech Mahindra Interview Questions
3.6
 • 3.7k Interviews
HCLTech Interview Questions
3.5
 • 3.7k Interviews
Genpact Interview Questions
3.9
 • 3k Interviews
LTIMindtree Interview Questions
3.9
 • 2.8k Interviews
IBM Interview Questions
4.1
 • 2.3k Interviews
View all
TCS Production Support Engineer Salary
based on 448 salaries
₹2 L/yr - ₹10 L/yr
5% less than the average Production Support Engineer Salary in India
View more details

TCS Production Support Engineer Reviews and Ratings

based on 32 reviews

3.2/5

Rating in categories

3.3

Skill development

3.2

Work-Life balance

3.0

Salary & Benefits

4.0

Job Security

3.5

Company culture

2.7

Promotions/Appraisal

2.9

Work Satisfaction

Explore 32 Reviews and Ratings
System Engineer
1.1L salaries
unlock blur

₹1 L/yr - ₹9 L/yr

IT Analyst
68.2k salaries
unlock blur

₹5.1 L/yr - ₹16 L/yr

AST Consultant
51k salaries
unlock blur

₹8 L/yr - ₹25 L/yr

Assistant System Engineer
29.9k salaries
unlock blur

₹2.2 L/yr - ₹5.6 L/yr

Associate Consultant
28.6k salaries
unlock blur

₹8.9 L/yr - ₹32 L/yr

Explore more salaries
Compare TCS with

Amazon

4.1
Compare

Wipro

3.7
Compare

Infosys

3.7
Compare

Accenture

3.9
Compare

Calculate your in-hand salary

Confused about how your in-hand salary is calculated? Enter your annual salary (CTC) and get your in-hand salary
Did you find this page helpful?
Yes No
write
Share an Interview