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

Filter interviews by

Clear (1)

TCS Developer Interview Questions, Process, and Tips

Updated 11 Mar 2025

Top TCS Developer Interview Questions and Answers

View all 30 questions

TCS Developer Interview Experiences

46 interviews found

Developer Interview Questions & Answers

user image Anonymous

posted on 27 Aug 2021

I applied via Company Website and was interviewed before Aug 2020. There were 5 interview rounds.

Interview Questionnaire 

5 Questions

  • Q1. Write code to transpose a Matrix
  • Ans. 

    Code to transpose a matrix

    • Iterate through rows and columns of the matrix

    • Swap the elements at (i,j) and (j,i) positions

    • Return the transposed matrix

  • Answered by AI
  • Q2. Write code to find the difference between two dates.
  • Ans. 

    Code to find the difference between two dates.

    • Use a date library like moment.js or date-fns

    • Subtract the earlier date from the later date to get the difference

    • Convert the difference to the desired format (days, hours, etc.)

  • Answered by AI
  • Q3. Few questions about latest technology like Data Science, Machine Learning, Blockchain, etcetera.
  • Q4. Questions about my skills.
  • Q5. Few managerial questions like why you chosen this IT field, how do you deal with your co-workers, etcetera.

Interview Preparation Tips

Interview preparation tips for other job seekers - TCS interview is damn easy if you know basics and solved atleast 100 coding questions. Focus more on speaking English fluently and solid introduction. That's it!!!

Skills evaluated in this interview

Developer Interview Questions & Answers

user image Anonymous

posted on 9 Aug 2022

I applied via Campus Placement and was interviewed before Aug 2021. There were 3 interview rounds.

Round 1 - Aptitude Test 

Reasoning, mathmatical

Round 2 - Coding Test 

Python/ Java test to solve the problem

Round 3 - HR 

(2 Questions)

  • Q1. Are you ready to work across India?
  • Q2. About agriment, we have not supposed to leave within that period.

Interview Preparation Tips

Interview preparation tips for other job seekers - Be confident with recruits, share your knowledge in positive way.

Developer Interview Questions Asked at Other Companies

asked in HARMAN
Q1. Which programming language do you use regular in work
Q2. Given a 2 dim array, find an element which is the maximum in its ... read more
asked in HARMAN
Q3. What step do you take to ensure accurate estimates for project
Q4. Solve the problems: Write a formula to display A if A is present, ... read more
Q5. Can you describe “method overloading” versus “method overriding”? ... read more

Developer Interview Questions & Answers

user image Anonymous

posted on 29 Sep 2019

I was interviewed in Sep 2019.

Interview Questionnaire 

2 Questions

  • Q1. What is composition and aggregation relationship
  • Ans. 

    Composition is a strong relationship where the child object cannot exist without the parent object. Aggregation is a weak relationship where the child object can exist independently.

    • Composition is a 'has-a' relationship, where the parent object owns the child object.

    • Aggregation is a 'has-a' relationship, where the child object is a part of the parent object.

    • In composition, the child object's lifetime is managed by the ...

  • Answered by AI
  • Q2. Composition is a strong relationship weak relationship example bike indicator is aggregation relationship engine also composition a strong relationship

Developer Interview Questions & Answers

user image Anonymous

posted on 8 Sep 2018

Interview Questionnaire 

11 Questions

  • Q1. Difference between function and store procedure?
  • Ans. 

    Functions return a value while stored procedures do not.

    • Functions can be used in SQL statements while stored procedures cannot.

    • Functions can be called from within stored procedures.

    • Functions can be used in views while stored procedures cannot.

    • Functions can have input parameters while stored procedures can have both input and output parameters.

  • Answered by AI
  • Q2. What is unique key
  • Ans. 

    A unique key is a field or combination of fields in a database table that uniquely identifies each record.

    • A unique key ensures that no two records in a table have the same values for the specified field(s).

    • It can be a single field or a combination of fields.

    • It is used to enforce data integrity and prevent duplicate records.

    • Examples include primary keys, candidate keys, and alternate keys.

  • Answered by AI
  • Q3. How many types of joining?exmplae
  • Ans. 

    There are four types of joining in SQL: Inner Join, Left Join, Right Join, and Full Join.

    • Inner Join returns only the matching rows from both tables.

    • Left Join returns all the rows from the left table and matching rows from the right table.

    • Right Join returns all the rows from the right table and matching rows from the left table.

    • Full Join returns all the rows from both tables, with NULL values in the columns where there ...

  • Answered by AI
  • Q4. What is constraint?
  • Ans. 

    A constraint is a limitation or restriction on something.

    • Constraints can be applied in various fields such as software development, engineering, and project management.

    • In software development, constraints can include limitations on memory usage, processing speed, and storage capacity.

    • In engineering, constraints can include limitations on materials, dimensions, and weight.

    • In project management, constraints can include l...

  • Answered by AI
  • Q5. What is asp.net life cycle?
  • Ans. 

    ASP.NET life cycle is the series of events that occur during the processing of a request.

    • ASP.NET life cycle includes stages like initialization, page rendering, and disposal.

    • During initialization, the page and its controls are created and initialized.

    • During page rendering, the page is processed and HTML is generated.

    • During disposal, resources used by the page are released.

    • Events like Page_Load and Page_PreRender occur ...

  • Answered by AI
  • Q6. What is the view state?
  • Ans. 

    View state is a hidden state of the page that stores values of controls and other page-specific data.

    • View state is used to maintain the state of server-side controls between postbacks.

    • It is stored in a hidden field on the page and is encrypted for security purposes.

    • View state can be disabled to improve performance, but this may cause issues with control state.

    • Example: A user fills out a form, but then navigates away fr...

  • Answered by AI
  • Q7. What is session?
  • Ans. 

    Session is a way to store and retrieve user data between HTTP requests.

    • Session is a temporary storage of user data on the server side.

    • It is identified by a unique session ID which is stored in a cookie or URL parameter.

    • Session data can be used to maintain user state, such as login status or shopping cart contents.

  • Answered by AI
  • Q8. What is response.redirect?
  • Ans. 

    response.redirect is a method used in web development to redirect the user to a different URL.

    • response.redirect is used to redirect the user to a different URL

    • It is commonly used in web applications to redirect users after a successful login or when accessing restricted pages

    • The method can be used with different programming languages and frameworks, such as ASP.NET, PHP, and Node.js

    • The redirected URL can be specified a

  • Answered by AI
  • Q9. What is querry string ?how we use that?
  • Ans. 

    A query string is a part of a URL that contains data to be passed to a web server.

    • It starts with a question mark (?) and is followed by key-value pairs separated by ampersands (&).

    • It is commonly used to filter or sort data on a web page.

    • Example: www.example.com/search?q=apple&category=fruit

    • To use it, simply append the query string to the end of the URL.

  • Answered by AI
  • Q10.  what is polymerphism
  • Ans. 

    Polymorphism is the ability of an object to take on many forms.

    • Polymorphism allows objects of different classes to be treated as if they were objects of the same class.

    • It is achieved through method overriding and method overloading.

    • Example: A parent class Animal can have child classes like Dog, Cat, and Bird. Each child class can have its own implementation of the method 'makeSound'.

    • Polymorphism makes code more flexibl

  • Answered by AI
  • Q11. Tell me 4 pillars of c++?
  • Ans. 

    The 4 pillars of C++ are Abstraction, Encapsulation, Inheritance, and Polymorphism.

    • Abstraction: Hiding implementation details and showing only necessary information.

    • Encapsulation: Binding data and functions together to prevent external interference.

    • Inheritance: Creating new classes from existing ones, inheriting their properties and methods.

    • Polymorphism: Using a single interface to represent multiple types of objects.

  • Answered by AI

Skills evaluated in this interview

TCS interview questions for designations

 Software Developer

 (499)

 Java Developer

 (184)

 Salesforce Developer

 (35)

 Web Developer

 (33)

 Python Developer

 (28)

 Application Developer

 (18)

 Plsql Developer

 (16)

 Angular Developer

 (13)

Developer Interview Questions & Answers

user image Anonymous

posted on 13 Sep 2017

Interview Questionnaire 

1 Question

  • Q1. How setup network in lab anf what equipment u required?
  • Ans. 

    To setup a network in a lab, you need equipment and a plan.

    • Determine the network topology and design

    • Choose appropriate networking equipment such as routers, switches, and cables

    • Configure network settings such as IP addresses and subnet masks

    • Test the network to ensure connectivity and functionality

    • Consider security measures such as firewalls and access control

    • Examples of equipment: Cisco routers, Juniper switches, Cat6

  • Answered by AI

Interview Preparation Tips

Round: Technical Interview
Experience: They asked about all questions based computer networks and what type of practical u did. And network logarithms how packet works.
Tips: If you are from ece background then computer network one of the option for interview preparation.

College Name: Echelon institute of technology

Skills evaluated in this interview

Get interview-ready with Top TCS Interview Questions

Developer Interview Questions & Answers

user image Anonymous

posted on 22 Aug 2017

I was interviewed before Aug 2016.

Interview Preparation Tips

Round: Technical Interview
Experience: The interviewer asked me to explain the project I had worked on which followed a series of questions regarding what would happen if some changes are made, or what exactly happens at the back end.
Tips: Be thorough with your project if you want to mention it.

Round: Technical Interview
Experience: The interviewer asked me to explain the project I had worked on which followed a series of questions regarding what would happen if some changes are made, or what exactly happens at the back end.
Tips: Be thorough with your project if you want to mention it.

College Name: GNDU
Contribute & help others!
anonymous
You can choose to be anonymous

TCS Interview FAQs

How many rounds are there in TCS Developer interview?
TCS interview process usually has 2-3 rounds. The most common rounds in the TCS interview process are Technical, Aptitude Test and HR.
How to prepare for TCS Developer interview?
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 Java, Javascript, Microservices, Spring Boot and SQL.
What are the top questions asked in TCS Developer interview?

Some of the top questions asked at the TCS Developer interview -

  1. How setup network in lab anf what equipment u requir...read more
  2. difference between function and store procedur...read more
  3. What is OPPS and explain each one of t...read more
How long is the TCS Developer interview process?

The duration of TCS Developer interview process can vary, but typically it takes about less than 2 weeks to complete.

Recently Viewed

LIST OF COMPANIES

Allied Jb Friction

Overview

LIST OF COMPANIES

Sekhani Industries

Overview

INTERVIEWS

Rieter

5.6k top interview questions

JOBS

Hanon Systems

No Jobs

INTERVIEWS

Hanon Systems

No Interviews

INTERVIEWS

Hanon Systems

No Interviews

SALARIES

Sekhani Industries

SALARIES

Sekhani Industries

SALARIES

Hanon Systems

Tell us how to improve this page.

TCS Developer Interview Process

based on 40 interviews

5 Interview rounds

  • Aptitude Test Round - 1
  • Aptitude Test Round - 2
  • HR Round - 1
  • HR Round - 2
  • HR Round - 3
View more

Developer Interview Questions from Similar Companies

IBM Developer Interview Questions
4.0
 • 3 Interviews
View all
TCS Developer Salary
based on 10.7k salaries
₹1.8 L/yr - ₹9.2 L/yr
22% less than the average Developer Salary in India
View more details

TCS Developer Reviews and Ratings

based on 735 reviews

3.9/5

Rating in categories

3.7

Skill development

4.0

Work-life balance

2.8

Salary

4.6

Job security

3.9

Company culture

2.7

Promotions

3.4

Work satisfaction

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

₹0 L/yr - ₹0 L/yr

IT Analyst
66.4k salaries
unlock blur

₹0 L/yr - ₹0 L/yr

AST Consultant
51.6k salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Assistant System Engineer
29.8k salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Associate Consultant
29.6k salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Explore more salaries
Compare TCS with

Amazon

4.1
Compare

Wipro

3.7
Compare

Infosys

3.6
Compare

Accenture

3.8
Compare
Did you find this page helpful?
Yes No
write
Share an Interview