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

TCS Software Engineer Interview Questions, Process, and Tips

Updated 27 Feb 2025

Top TCS Software Engineer Interview Questions and Answers

  • Q1. Find the Duplicate Number Problem Statement Given an integer array 'ARR' of size 'N' containing numbers from 0 to (N - 2). Each number appears at least once, and there i ...read more
  • Q2. Find the Second Largest Element Given an array or list of integers 'ARR', identify the second largest element in 'ARR'. If a second largest element does not exist, retur ...read more
  • Q3. What is the reason that the Iterative Waterfall model was introduced?
View all 289 questions

TCS Software Engineer Interview Experiences

451 interviews found

Software Engineer Interview Questions & Answers

user image Football Time

posted on 22 Aug 2024

Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(2 Questions)

  • Q1. What is programming
  • Ans. 

    Programming is the process of designing and building instructions for a computer to execute.

    • Programming involves writing code in a specific programming language.

    • It requires logical thinking and problem-solving skills.

    • Examples include Java, Python, C++, and JavaScript.

  • Answered by AI
  • Q2. Rate your skills
  • Ans. 

    I rate my skills as advanced in Java, proficient in Python, and experienced in SQL.

    • Advanced in Java - developed multiple applications using Java

    • Proficient in Python - used Python for data analysis and automation tasks

    • Experienced in SQL - wrote complex queries and optimized database performance

  • Answered by AI
Interview experience
3
Average
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
No response

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

Round 1 - Technical 

(2 Questions)

  • Q1. Jvm , java, memory alloc basics
  • Q2. Database queries, index, performance

Software Engineer Interview Questions Asked at Other Companies

asked in Qualcomm
Q1. Bridge and torch problem : Four people come to a river in the nig ... read more
asked in Capgemini
Q2. In a dark room,there is a box of 18 white and 5 black gloves. You ... read more
asked in TCS
Q3. Find the Duplicate Number Problem Statement Given an integer arra ... read more
Q4. Tell me something about yourself. Define encapsulation. What is i ... read more
asked in Paytm
Q5. Puzzle : 100 people are standing in a circle .each one is allowed ... read more
Interview experience
2
Poor
Difficulty level
Moderate
Process Duration
6-8 weeks
Result
Selected Selected

I applied via Company Website and was interviewed in Apr 2024. There were 3 interview rounds.

Round 1 - Aptitude Test 

Reasoning and english

Round 2 - Coding Test 

Easy to medium dsa questions

Round 3 - Technical 

(2 Questions)

  • Q1. Related to project
  • Q2. Merge sort approach

Software Engineer Interview Questions & Answers

user image prajwal kandekar

posted on 17 Apr 2024

Interview experience
3
Average
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
Not Selected

I applied via campus placement at JSPM's Jayawantrao Sawant college of Engineering, Pune and was interviewed in Oct 2023. There were 2 interview rounds.

Round 1 - Aptitude Test 

Aptitude test which contains foundation and advance sections in which foundation contains 20 Quantitative, 20 verbal and 10 Reasoning questions then advance section contains Advance Quantitative and reasoning each 10 questions and 2 codes one was easy and second was medium.

Round 2 - Technical 

(7 Questions)

  • Q1. What is interface ?
  • Ans. 

    An interface in software engineering defines a contract for how a software component should interact with other components.

    • Interfaces in programming languages like Java or C# contain method signatures that must be implemented by classes that implement the interface.

    • Interfaces help in achieving abstraction and loose coupling between different parts of a software system.

    • Interfaces allow for polymorphism, where different ...

  • Answered by AI
  • Q2. Which is your favourite DSA algorithm?
  • Ans. 

    My favorite DSA algorithm is Dijkstra's algorithm.

    • Dijkstra's algorithm is used to find the shortest path between nodes in a graph.

    • It is a popular algorithm for solving the single-source shortest path problem.

    • The algorithm is commonly used in network routing protocols and GPS systems.

  • Answered by AI
  • Q3. What is Dynamic Programming?
  • Ans. 

    Dynamic Programming is a method for solving complex problems by breaking them down into simpler subproblems and storing the results.

    • Involves breaking down a problem into smaller subproblems

    • Solves each subproblem only once and stores the result for future reference

    • Uses the results of subproblems to solve the larger problem efficiently

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

    Recursion is a programming technique where a function calls itself in order to solve a problem.

    • Recursion involves breaking down a problem into smaller subproblems and solving them recursively.

    • Each recursive call reduces the original problem into simpler versions until a base case is reached.

    • Examples of recursive algorithms include factorial calculation, Fibonacci sequence generation, and tree traversal.

  • Answered by AI
  • Q5. One code was given to solve which was based on string manipulation
  • Q6. One SQL query to find second highest marks
  • Ans. 

    Use a subquery to find the second highest marks in a table

    • Use a subquery to select all distinct marks

    • Order the marks in descending order

    • Select the second highest mark using LIMIT and OFFSET

  • Answered by AI
  • Q7. What is Greedy algorithms and what are its types?
  • Ans. 

    Greedy algorithms are algorithms that make the most optimal choice at each step with the hope of finding a global optimum.

    • Greedy algorithms are used for optimization problems where we need to make a sequence of choices to reach a solution.

    • Types of greedy algorithms include Prim's algorithm for minimum spanning tree, Dijkstra's algorithm for shortest path, and Huffman coding for data compression.

    • Greedy algorithms do not...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Be confident and honest with your answers.

Skills evaluated in this interview

TCS interview questions for designations

 Associate Software Engineer

 (93)

 Senior Software Engineer

 (61)

 Assistant Software Engineer

 (22)

 Software Engineer Trainee

 (19)

 Software Testing Engineer

 (15)

 Junior Software Engineer

 (11)

 Software Development Engineer

 (9)

 System Software Engineer

 (3)

Interview experience
3
Average
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
No response

I applied via LinkedIn and was interviewed in Feb 2024. There was 1 interview round.

Round 1 - Technical 

(2 Questions)

  • Q1. Microservices and its use
  • Ans. 

    Microservices are a software architecture design where applications are broken down into smaller, independent services that communicate with each other through APIs.

    • Microservices allow for easier scalability and maintenance of complex applications.

    • Each microservice can be developed, deployed, and scaled independently.

    • Microservices promote flexibility and agility in software development.

    • Examples of companies using micro

  • Answered by AI
  • Q2. Hibernate concepts used in projects
  • Ans. 

    Hibernate is used for ORM mapping in projects to interact with databases.

    • Mapping Java classes to database tables

    • Managing database connections

    • Performing CRUD operations

    • Implementing caching mechanisms

    • Supporting transactions

  • Answered by AI

Skills evaluated in this interview

Get interview-ready with Top TCS Interview Questions

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

I applied via LinkedIn and was interviewed in Apr 2024. There were 3 interview rounds.

Round 1 - Aptitude Test 

ASKED QUESTION ABOUT MY PREVIOUS INTERNSHIP

Round 2 - Coding Test 

ASKED TO CODE HELLO WORLD

Round 3 - HR 

(2 Questions)

  • Q1. INTRODUCE YOURSELF.
  • Ans. 

    I am a passionate software engineer with experience in developing web applications using various technologies.

    • Experienced in developing web applications using HTML, CSS, JavaScript, and frameworks like React and Angular

    • Proficient in backend development with Node.js and databases like MongoDB and MySQL

    • Familiar with version control systems like Git and deployment tools like Docker

  • Answered by AI
  • Q2. WHY SHOULD WE HIRE YOU ?
  • Ans. 

    I have a strong technical background, problem-solving skills, and a passion for software development.

    • Extensive experience in programming languages such as Java, Python, and C++

    • Proven track record of delivering high-quality software solutions on time

    • Strong analytical and problem-solving skills demonstrated through successful projects

    • Passionate about staying up-to-date with the latest technologies and trends in software

  • Answered by AI

Interview Preparation Tips

Topics to prepare for TCS Software Engineer interview:
  • DSA
Interview preparation tips for other job seekers - BE PREPARED WITH THE ANSWERS FOR ABOVE QUESTIONS THEY ASKED EVERYONE THE SAME
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
4-6 weeks
Result
Selected Selected

I applied via Recruitment Consulltant and was interviewed before Jan 2024. There was 1 interview round.

Round 1 - One-on-one 

(2 Questions)

  • Q1. What are the steps to add a number at the end of a linked list?
  • Q2. Arrange the array in ansecending order

Interview Preparation Tips

Interview preparation tips for other job seekers - It is not satisfactory how the questions are answered and the licensing of the responses.
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 Nov 2023. There was 1 interview round.

Round 1 - Technical 

(5 Questions)

  • Q1. Diff between Scoped and Transient DI
  • Ans. 

    Scoped DI creates a single instance per scope, while Transient DI creates a new instance every time it is requested.

    • Scoped DI creates a single instance per scope, while Transient DI creates a new instance every time it is requested.

    • Scoped DI is useful for sharing a single instance within a scope, like a request or session, while Transient DI is useful for creating new instances each time.

    • Scoped DI can improve performan...

  • Answered by AI
  • Q2. What is Middleware
  • Ans. 

    Middleware is software that acts as a bridge between different applications or components, allowing them to communicate and work together.

    • Middleware facilitates communication between different software applications or components

    • It can handle tasks such as data transformation, security, and routing

    • Examples include message brokers like RabbitMQ, web servers like Apache Tomcat, and API gateways like Kong

  • Answered by AI
  • Q3. How to achieve Lazy Loading in Angular
  • Ans. 

    Lazy loading in Angular is achieved by using loadChildren in the route configuration to load modules on demand.

    • Use loadChildren in the route configuration to load modules lazily

    • Split your application into feature modules

    • Lazy loading helps in reducing the initial bundle size and improving performance

  • Answered by AI
  • Q4. Authgaurd in Angular
  • Ans. 

    AuthGuard in Angular is used to control access to certain routes based on user authentication status.

    • AuthGuard is a service in Angular that implements CanActivate interface to determine if a route can be activated.

    • It can be used to restrict access to certain routes for authenticated users only.

    • AuthGuard can redirect unauthenticated users to a login page or show an error message.

    • Example: canActivate: [AuthGuard] in rout

  • Answered by AI
  • Q5. Handle routing in Angular
  • Ans. 

    Angular routing is handled using RouterModule which provides a way to navigate between different components.

    • Use RouterModule.forRoot() method in app.module.ts to set up the main routes

    • Use RouterModule.forChild() method in feature modules to define routes specific to that module

    • Define routes using Route interface with path and component properties

    • Use routerLink directive in HTML templates to navigate to different routes

    • ...

  • Answered by AI

Skills evaluated in this interview

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

I applied via Recruitment Consulltant and was interviewed in Dec 2023. There were 2 interview rounds.

Round 1 - Technical 

(2 Questions)

  • Q1. Based on projects
  • Q2. Oops questions , solid principles
Round 2 - Technical 

(2 Questions)

  • Q1. Design patterns questions
  • Q2. React questions

Interview Preparation Tips

Interview preparation tips for other job seekers - waste interview

Software Engineer Interview Questions & Answers

user image Shiva Kumar Manchikatla

posted on 6 Feb 2024

Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(3 Questions)

  • Q1. Introduce yourself
  • Q2. .net core concepts like authentication process, middleware, authorize filter attribute
  • Q3. Sql concepts, stored procedures, transactions, CTE

TCS Interview FAQs

How many rounds are there in TCS Software Engineer interview?
TCS interview process usually has 2-3 rounds. The most common rounds in the TCS interview process are Technical, Aptitude Test and Resume Shortlist.
How to prepare for TCS Software Engineer 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, SQL, Unix, Adc and C.
What are the top questions asked in TCS Software Engineer interview?

Some of the top questions asked at the TCS Software Engineer interview -

  1. Can you describe a challenging technical problem you faced and how you solve it...read more
  2. How do you stay up to date with emerging technologies and programming languag...read more
  3. Explain the difference between ArrayList and LinkedList in Java. ArrayList is i...read more
How long is the TCS Software Engineer interview process?

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

Tell us how to improve this page.

TCS Software Engineer Interview Process

based on 276 interviews

5 Interview rounds

  • Technical Round - 1
  • Technical Round - 2
  • HR Round - 1
  • HR Round - 2
  • Personal Interview1 Round
View more
TCS Software Engineer Salary
based on 23.4k salaries
₹3 L/yr - ₹10.5 L/yr
21% less than the average Software Engineer Salary in India
View more details

TCS Software Engineer Reviews and Ratings

based on 1.5k reviews

3.9/5

Rating in categories

3.7

Skill development

4.0

Work-life balance

3.2

Salary

4.5

Job security

3.9

Company culture

3.0

Promotions

3.6

Work satisfaction

Explore 1.5k Reviews and Ratings
System Engineer
1.1L salaries
unlock blur

₹1 L/yr - ₹9 L/yr

IT Analyst
66.7k salaries
unlock blur

₹5.1 L/yr - ₹16 L/yr

AST Consultant
51.5k salaries
unlock blur

₹8 L/yr - ₹25 L/yr

Assistant System Engineer
29.8k salaries
unlock blur

₹2.2 L/yr - ₹5.8 L/yr

Associate Consultant
29.4k salaries
unlock blur

₹9 L/yr - ₹32 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