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 Interview Questions, Process, and Tips

Updated 3 Mar 2025

Top TCS Interview Questions and Answers

View all 6.4k questions

TCS Interview Experiences

Popular Designations

10.4k interviews found

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

I was interviewed in Jan 2025.

Round 1 - Interview Questions 

(15 Questions)

  • Q1. Explain the difference between ArrayList and LinkedList in Java. ArrayList is implemented as a dynamic array, while LinkedList is a doubly linked list. ArrayList provides fast random access (O(1) complexit...
  • Q2. What are the advantages and disadvantages of using Java’s synchronized keyword for thread synchronization? The synchronized keyword ensures that only one thread can access a block of code at a time. It pre...
  • Q3. What is the difference between == and .equals() in Java? == checks for reference equality, meaning it compares memory addresses. equals() checks for value equality, which can be overridden in user-defined ...
  • Q4. How does the Java garbage collector work? Garbage collection in Java automatically reclaims memory occupied by unused objects. The JVM has different types of GC algorithms, including Serial, Parallel, CMS,...
  • Q5. What are the main features of Java 8? Java 8 introduced lambda expressions, enabling functional-style programming. The Stream API allows efficient data processing with map, filter, and reduce operations. D...
  • Q6. Describe the differences between checked and unchecked exceptions in Java. Checked exceptions must be handled using try-catch or declared with throws. Unchecked exceptions (RuntimeException and its subclas...
  • Q7. What is the Java Memory Model, and how does it affect multithreading and synchronization? The Java Memory Model (JMM) defines how threads interact with shared memory. It ensures visibility and ordering of ...
  • Q8. Can you explain the difference between method overloading and method overriding in Java? Method overloading allows multiple methods with the same name but different parameters. It occurs within the same cl...
  • Q9. What are functional interfaces in Java, and how do they work with lambda expressions? A functional interface is an interface with exactly one abstract method. Examples include Runnable, Callable, Predicate...
  • Q10. What is a Java Stream, and how does it differ from an Iterator? Streams enable functional-style operations on collections with lazy evaluation. Unlike Iterators, Streams support declarative operations lik...
  • Q11. Explain the concept of immutability in Java and its advantages. An immutable object cannot be changed after it is created. The String class is immutable, meaning modifications create new objects. Immutabl...
  • Q12. What is the difference between final, finally, and finalize in Java? final is a keyword used to declare constants, prevent method overriding, or inheritance. finally is a block that executes after a try-c...
  • Q13. Explain the Singleton design pattern in Java. Singleton ensures that only one instance of a class exists in the JVM. It is useful for managing shared resources like database connections. A simple implemen...
  • Q14. What are Java annotations, and how are they used in frameworks like Spring? Annotations provide metadata to classes, methods, and fields. @Override, @Deprecated, and @SuppressWarnings are common built-in ...
  • Q15. How do Java Streams handle parallel processing, and what are its pitfalls? Parallel streams divide data into multiple threads for faster processing. The ForkJoin framework handles parallel execution inter...

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 is one number that appears twice. Your task is to find and return this d... read more
View answer (9)

Software Engineer Interview Questions asked at other Companies

Q1. Bridge and torch problem : Four people come to a river in the night. There is a narrow bridge, but it can only hold two people at a time. They have one torch and, because it's night, the torch has to be used when crossing the bridge. Person... read more
View answer (188)

Rate your
company

🤫 100% anonymous

How was your last interview experience?

Share interview
Interview experience
5
Excellent
Difficulty level
Hard
Process Duration
2-4 weeks
Result
Selected Selected

I was interviewed in Jan 2025.

Round 1 - Interview Questions 

(15 Questions)

  • Q1. Explain the difference between ArrayList and LinkedList in Java. ArrayList is implemented as a dynamic array, while LinkedList is a doubly linked list. ArrayList provides fast random access (O(1) complexit...
  • Ans. 

    ArrayList is preferred for frequent retrieval operations due to fast random access, while LinkedList is suitable for frequent insertions/deletions.

    • Use ArrayList when frequent retrieval operations are required, such as searching for elements in a large collection.

    • Choose LinkedList when frequent insertions/deletions are needed, like maintaining a queue or stack.

    • Consider memory overhead and performance trade-offs when dec...

  • Answered by AI
  • Q2. What are the advantages and disadvantages of using Java’s synchronized keyword for thread synchronization? The synchronized keyword ensures that only one thread can access a block of code at a time. It pre...
  • Ans. 

    ReentrantLock should be used instead of synchronized when more flexibility and control over locking mechanisms is needed.

    • Use ReentrantLock when you need to implement custom locking strategies or require advanced features like tryLock() and lockInterruptibly().

    • ReentrantLock supports fair locking mechanisms, ensuring that threads acquire the lock in the order they requested it.

    • Explicit unlocking in ReentrantLock reduces ...

  • Answered by AI
  • Q3. What is the difference between == and .equals() in Java? == checks for reference equality, meaning it compares memory addresses. equals() checks for value equality, which can be overridden in user-defined ...
  • Ans. 

    In Java, == checks for reference equality while equals() checks for value equality. Misuse of == can lead to logical errors.

    • Override equals() when you want to compare the values of objects instead of their references

    • Override hashCode() alongside equals() to ensure proper functioning in collections like HashMap

    • Consider implementing Comparable interface for natural ordering in collections

  • Answered by AI
  • Q4. How does the Java garbage collector work? Garbage collection in Java automatically reclaims memory occupied by unused objects. The JVM has different types of GC algorithms, including Serial, Parallel, CMS,...
  • Ans. 

    Garbage collection in Java automatically reclaims memory occupied by unused objects using different algorithms and memory regions.

    • Java garbage collector automatically reclaims memory from unused objects

    • Different types of GC algorithms in JVM: Serial, Parallel, CMS, G1 GC

    • Objects managed in Young Generation, Old Generation, and PermGen/Metaspace

    • Minor GC cleans up short-lived objects in Young Generation

    • Major GC (Full GC) ...

  • Answered by AI
  • Q5. What are the main features of Java 8? Java 8 introduced lambda expressions, enabling functional-style programming. The Stream API allows efficient data processing with map, filter, and reduce operations. D...
  • Ans. 

    Lambda expressions in Java 8 improve readability and maintainability by enabling concise and functional-style programming.

    • Lambda expressions allow writing more compact code by reducing boilerplate code.

    • They enable passing behavior as arguments to methods, making code more modular and flexible.

    • Example: (a, b) -> a + b is a lambda expression that adds two numbers.

  • Answered by AI
  • Q6. Describe the differences between checked and unchecked exceptions in Java. Checked exceptions must be handled using try-catch or declared with throws. Unchecked exceptions (RuntimeException and its subclas...
  • Ans. 

    Checked exceptions must be handled explicitly, while unchecked exceptions do not require explicit handling.

    • Use custom exceptions when you want to create your own exception types to handle specific scenarios.

    • Custom exceptions can be either checked or unchecked, depending on whether you want to enforce handling or not.

    • For example, a custom InvalidInputException could be a checked exception if you want to ensure it is cau...

  • Answered by AI
  • Q7. What is the Java Memory Model, and how does it affect multithreading and synchronization? The Java Memory Model (JMM) defines how threads interact with shared memory. It ensures visibility and ordering of ...
  • Ans. 

    The Java Memory Model defines how threads interact with shared memory, ensuring visibility and ordering of variable updates in a concurrent environment.

    • Volatile keyword ensures changes to a variable are always visible to all threads.

    • Synchronized keyword provides mutual exclusion and visibility guarantees.

    • Reordering optimizations by the compiler or CPU can lead to unexpected behavior.

    • Happens-before relationship determin...

  • Answered by AI
  • Q8. Can you explain the difference between method overloading and method overriding in Java? Method overloading allows multiple methods with the same name but different parameters. It occurs within the same cl...
  • Ans. 

    Method overloading allows multiple methods with the same name but different parameters, while method overriding allows a subclass to provide a different implementation of a parent method.

    • Use method overloading when you want to provide multiple ways to call a method with different parameters.

    • Use method overriding when you want to provide a specific implementation of a method in a subclass.

    • Example of method overloading: ...

  • Answered by AI
  • Q9. What are functional interfaces in Java, and how do they work with lambda expressions? A functional interface is an interface with exactly one abstract method. Examples include Runnable, Callable, Predicate...
  • Ans. 

    Functional interfaces in Java have exactly one abstract method and work with lambda expressions for concise implementation.

    • Functional interfaces have exactly one abstract method, such as Runnable, Callable, Predicate, and Function.

    • Lambda expressions provide a concise way to implement functional interfaces.

    • Default methods in interfaces help in evolving APIs without breaking backward compatibility.

    • Method references (::) ...

  • Answered by AI
  • Q10. What is a Java Stream, and how does it differ from an Iterator? Streams enable functional-style operations on collections with lazy evaluation. Unlike Iterators, Streams support declarative operations lik...
  • Ans. 

    Java Streams enable functional-style operations on collections with lazy evaluation, unlike Iterators.

    • Parallel streams can improve performance by utilizing multiple threads, but may introduce overhead due to thread management.

    • Care must be taken to ensure thread safety when using parallel streams in a multi-threaded environment.

    • Parallel streams are suitable for operations that can be easily parallelized, such as map and...

  • Answered by AI
  • Q11. Explain the concept of immutability in Java and its advantages. An immutable object cannot be changed after it is created. The String class is immutable, meaning modifications create new objects. Immutabl...
  • Ans. 

    Immutability in Java prevents objects from being changed after creation, promoting thread safety and preventing unintended side effects.

    • Immutable objects cannot be modified after creation, promoting thread safety

    • String class in Java is immutable, modifications create new objects

    • Use final fields and avoid setters to create immutable classes

    • Collections can be made immutable using Collections.unmodifiableList()

    • Immutabilit...

  • Answered by AI
  • Q12. What is the difference between final, finally, and finalize in Java? final is a keyword used to declare constants, prevent method overriding, or inheritance. finally is a block that executes after a try-c...
  • Ans. 

    final, finally, and finalize have different meanings in Java. final is for constants, finally for cleanup, and finalize for garbage collection.

    • final is used for constants, preventing method overriding, and inheritance

    • finally is used for cleanup actions after a try-catch block

    • finalize() is called by the garbage collector before object deletion

    • Alternatives to finalize() for resource management include using try-with-reso...

  • Answered by AI
  • Q13. Explain the Singleton design pattern in Java. Singleton ensures that only one instance of a class exists in the JVM. It is useful for managing shared resources like database connections. A simple implemen...
  • Ans. 

    Singleton design pattern ensures only one instance of a class exists in the JVM, useful for managing shared resources like database connections.

    • Avoid using Singleton when multiple instances of a class are required.

    • Avoid Singleton for classes that are not thread-safe.

    • Avoid Singleton for classes that need to be easily mockable for testing purposes.

  • Answered by AI
  • Q14. What are Java annotations, and how are they used in frameworks like Spring? Annotations provide metadata to classes, methods, and fields. @Override, @Deprecated, and @SuppressWarnings are common built-in ...
  • Ans. 

    Java annotations provide metadata to classes, methods, and fields, improving code readability and maintainability.

    • Annotations like @Component, @Service, and @Autowired in Spring help with dependency injection

    • Annotations reduce boilerplate code compared to XML configurations

    • Custom annotations can be created using @interface

    • Reflection APIs allow reading annotation metadata dynamically

    • Annotations like @Transactional simpl

  • Answered by AI
  • Q15. How do Java Streams handle parallel processing, and what are its pitfalls? Parallel streams divide data into multiple threads for faster processing. The ForkJoin framework handles parallel execution inter...
  • Ans. 

    Java Streams handle parallel processing by dividing data into multiple threads using the ForkJoin framework. Pitfalls include race conditions, performance issues with small datasets, and debugging challenges.

    • Parallel streams divide data into multiple threads for faster processing

    • ForkJoin framework handles parallel execution internally

    • Useful for CPU-intensive tasks but may not improve performance for small datasets

    • Share...

  • Answered by AI

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 is one number that appears twice. Your task is to find and return this d... read more
View answer (9)

Software Engineer Interview Questions asked at other Companies

Q1. Bridge and torch problem : Four people come to a river in the night. There is a narrow bridge, but it can only hold two people at a time. They have one torch and, because it's night, the torch has to be used when crossing the bridge. Person... read more
View answer (190)
TCS Interview Questions and Answers for Freshers
illustration image
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I was interviewed in Jan 2025.

Round 1 - Aptitude Test 

It sounds like you might be asking for an aptitude test that has 20 questions or characters, possibly for a job application. Aptitude tests for jobs usually focus on assessing your ability to think logically, solve problems, and apply basic skills in areas like math, reasoning, and verbal abilities.

Here’s an example of 20 sample aptitude test questions, covering different types of skills:

1. Numerical Aptitude

What is 15% of 200?

If a car travels 60 miles in 1 hour, how far will it travel in 5 hours at the same speed?

Solve for x: 2x + 5 = 15.


2. Logical Reasoning

What comes next in the sequence: 2, 4, 8, 16, ___?

If all roses are flowers and some flowers are red, are all roses red?

Which number is the odd one out: 3, 5, 9, 7?


3. Verbal Ability

Find the synonym of "quick": a) slow, b) fast, c) steady, d) loud

Choose the correct sentence: "She don't like apples" or "She doesn't like apples?"

Find the antonym of "bright": a) shiny, b) dull, c) happy, d) light


4. Data Interpretation

If a graph shows sales increasing by 20% each month, how much is the increase in the 3rd month if sales were $100 initially?

The pie chart below shows the distribution of monthly expenses. If the rent is 25%, how much is the rent if the total is $1200?


5. Spatial

Interview Preparation Tips

Interview preparation tips for other job seekers - If you're looking for an aptitude test specifically designed for job seekers, these tests are often used by employers to evaluate your problem-solving, analytical, and reasoning skills. Here are some common types of aptitude tests for job seekers and what they typically assess:

1. Numerical Reasoning

What it assesses: Your ability to work with numbers, percentages, ratios, and interpret data.

Example Question:
If a company’s profit increased from $50,000 to $75,000 in a year, what is the percentage increase in profit?


2. Verbal Reasoning

What it assesses: Your ability to understand and interpret written information

Salesman Interview Questions & Answers

user image Anonymous

posted on 25 Jan 2025

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

I was interviewed in Dec 2024.

Round 1 - Case Study 

I want to jobs for interview

Round 2 - Case Study 

A company for portal the technical support know

Round 3 - Technical 

(5 Questions)

  • Q1. A person teaching for the system jobs interview
  • Q2. I had again jobs training computer and things are variety of culture of section
  • Q3. I am ready for more building skills
  • Q4. This is enginnering the stores
  • Q5. I Did you services forward to secured Android
Round 4 - Assignment 

A saw the very store pages of line mean

Interview Preparation Tips

Interview preparation tips for other job seekers - I also want to friends are share with job other people who any give required tell

Salesman Interview Questions asked at other Companies

Q1. How can you motivate the customer to buy our products
View answer (8)

TCS interview questions for popular designations

 System Engineer

 (1.1k)

 Software Developer

 (497)

 Software Engineer

 (451)

 Assistant System Engineer

 (380)

 Assistant System Engineer Trainee

 (372)

 IT Analyst

 (336)

 Ninja

 (187)

 Java Developer

 (184)

Interview experience
4
Good
Difficulty level
Moderate
Process Duration
4-6 weeks
Result
Selected Selected

I applied via campus placement at Lovely Professional University (LPU) and was interviewed in Dec 2024. There were 4 interview rounds.

Round 1 - Aptitude Test 

Basic aptitude tests

Round 2 - Coding Test 

There were two coding questions: one was classified as easy, while the other was of medium difficulty. The code must pass all test cases to be deemed complete.

Round 3 - Technical 

(2 Questions)

  • Q1. What basic coding logic questions were asked during the interview, such as checking for a prime number, finding the sum of digits in a string, and printing a pattern, along with any situation-based questio...
  • Q2. How can I approach my manager if I am struggling to manage my workload, and what is the best way to ask for assistance?
  • Ans. 

    Approach manager openly and honestly, provide specific examples of workload struggles, and suggest potential solutions.

    • Schedule a meeting with your manager to discuss your workload challenges

    • Be honest and transparent about the specific tasks or projects that are overwhelming you

    • Provide examples of how the workload is impacting your productivity and quality of work

    • Suggest potential solutions such as prioritizing tasks, ...

  • Answered by AI
Round 4 - HR 

(4 Questions)

  • Q1. What other job offers do you currently have, and why are you interested in this company?
  • Ans. 

    I currently have one other job offer, but I am particularly interested in this company due to its innovative projects and strong company culture.

    • Have one other job offer but interested in this company due to innovative projects

    • Impressed by strong company culture

    • Believe this company aligns with my career goals and values

  • Answered by AI
  • Q2. What is the reason for any gaps in your experience?
  • Ans. 

    I have gaps in my experience due to focusing on specialized projects and roles.

    • I have chosen to focus on specific areas of expertise rather than gaining a broad range of experience

    • I have taken on challenging projects that have required a significant time commitment

    • I have prioritized deepening my knowledge in certain technologies or industries over gaining general experience

  • Answered by AI
  • Q3. Can you provide an example of a situation in which you worked under pressure?
  • Ans. 

    I successfully completed a project with a tight deadline by prioritizing tasks and staying focused.

    • Received a project with a short deadline due to unexpected circumstances

    • Created a detailed timeline and prioritized tasks based on urgency

    • Worked extra hours and stayed focused to meet the deadline

    • Successfully completed the project on time and received positive feedback

  • Answered by AI
  • Q4. How do you approach problem-solving, and can you provide a specific situation where your leadership skills have benefited you?
  • Ans. 

    I approach problem-solving by analyzing the issue, brainstorming solutions, and collaborating with team members. My leadership skills were evident when I successfully led a project to implement a new software system.

    • Analyze the problem thoroughly before jumping into solutions

    • Brainstorm potential solutions and evaluate their feasibility

    • Collaborate with team members to gather different perspectives and insights

    • Communicat...

  • Answered by AI

Top TCS Associate Engineer Interview Questions and Answers

Q1. How do you approach problem-solving, and can you provide a specific situation where your leadership skills have benefited you?
View answer (1)

Associate Engineer Interview Questions asked at other Companies

Q1. Count Ways To Reach The N-th Stair Problem Statement You are given a number of stairs, N. Starting at the 0th stair, you need to reach the Nth stair. Each time you can either climb one step or two steps. You have to return the number of dis... read more
Add answer

Get interview-ready with Top TCS Interview Questions

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

I applied via TCS and was interviewed in Dec 2024. There was 1 interview round.

Round 1 - Technical 

(6 Questions)

  • Q1. What is hash technology?
  • Ans. 

    Hash technology is a method used to convert data into a fixed-size string of characters, typically used for data security and integrity.

    • Hash technology uses algorithms to generate a unique fixed-size string of characters from input data.

    • It is commonly used for data security, password storage, digital signatures, and data integrity verification.

    • Examples of hash algorithms include MD5, SHA-1, and SHA-256.

  • Answered by AI
  • Q2. What is block chain?
  • Ans. 

    Blockchain is a decentralized, distributed ledger technology used to securely record transactions across multiple computers.

    • Decentralized database

    • Consensus mechanism

    • Immutable record of transactions

    • Cryptographic security

    • Smart contracts

    • Examples: Bitcoin, Ethereum

  • Answered by AI
  • Q3. What is DML?
  • Ans. 

    DML stands for Data Manipulation Language, used to manage data in a database.

    • DML is a subset of SQL (Structured Query Language) used to insert, update, delete, and retrieve data in a database.

    • Examples of DML commands include INSERT, UPDATE, DELETE, and SELECT.

    • DML is essential for managing and manipulating data within a database system.

  • Answered by AI
  • Q4. Convert binay to decimal and viceversa.
  • Ans. 

    Binary to decimal conversion involves multiplying each digit by 2 raised to the power of its position.

    • To convert binary to decimal, start from the rightmost digit and multiply each digit by 2 raised to the power of its position.

    • Add all the results together to get the decimal equivalent.

    • For example, to convert binary 1011 to decimal: 1*2^3 + 0*2^2 + 1*2^1 + 1*2^0 = 11.

  • Answered by AI
  • Q5. Find max number in array?
  • Ans. 

    Iterate through array and compare each element to find the maximum number.

    • Iterate through the array using a loop.

    • Compare each element to a variable storing the current maximum number.

    • Update the variable if a larger number is found.

    • Return the maximum number at the end.

  • Answered by AI
  • Q6. Write basic html , for inserting image and create table.
  • Ans. 

    Basic HTML code for inserting image and creating a table

    • Use <img> tag to insert an image with src attribute

    • Use <table>, <tr>, <td> tags to create a table structure

    • Specify image source and table content within respective tags

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Just have concept of Oops, one programming language, DBMS and SQL, core engineering subjects and just know definition of recent technology

Top TCS System Engineer Interview Questions and Answers

Q1. Election Winner Determination In an ongoing election between two candidates A and B, there is a queue of voters that includes supporters of A, supporters of B, and neutral voters. Neutral voters have the power to swing the election results ... read more
View answer (8)

System Engineer Interview Questions asked at other Companies

Q1. Election Winner Determination In an ongoing election between two candidates A and B, there is a queue of voters that includes supporters of A, supporters of B, and neutral voters. Neutral voters have the power to swing the election results ... read more
View answer (8)

Jobs at TCS

View all
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
-
Result
-

I applied via campus placement at Vellore Institute of Technology (VIT) and was interviewed in Dec 2024. There were 2 interview rounds.

Round 1 - Technical 

(6 Questions)

  • Q1. What are the 4 pillars of C++ ?
  • Ans. 

    The 4 pillars of C++ are encapsulation, inheritance, polymorphism, and abstraction.

    • Encapsulation: Bundling data and methods that operate on the data into a single unit (class).

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

    • Polymorphism: Ability to present the same interface for different data types.

    • Abstraction: Hiding complex implementation details and showing only the

  • Answered by AI
  • Q2. What is Normalization in SQL?
  • Ans. 

    Normalization in SQL is the process of organizing data in a database to reduce redundancy and improve data integrity.

    • Normalization involves breaking down a database into smaller, more manageable tables and defining relationships between them.

    • It helps in reducing data redundancy by storing data in a structured and organized manner.

    • Normalization ensures data integrity by preventing anomalies such as insertion, update, an...

  • Answered by AI
  • Q3. Example of abstract class ?
  • Ans. 

    Abstract class is a class that cannot be instantiated and may contain abstract methods.

    • Cannot be instantiated directly

    • May contain abstract methods that must be implemented by subclasses

    • Used to define a common interface for a group of related classes

  • Answered by AI
  • Q4. SQL Commands ?
  • Q5. Pseudo code for prime number.
  • Ans. 

    Pseudo code for prime number is a simple algorithm to determine if a given number is prime or not.

    • Start by checking if the number is less than 2, if so it is not prime

    • Then iterate from 2 to the square root of the number and check if it is divisible by any number in that range

    • If it is not divisible by any number, then it is a prime number

  • Answered by AI
  • Q6. Create Login page using html, css and js
  • Ans. 

    Create a login page using HTML, CSS, and JS

    • Use HTML for structure and form elements

    • Style the page using CSS for layout and design

    • Implement client-side validation using JavaScript

    • Handle form submission and authentication using JS

  • Answered by AI
Round 2 - HR 

(1 Question)

  • Q1. Question related to my hobby?

Interview Preparation Tips

Topics to prepare for TCS Assistant System Engineer Trainee interview:
  • C++
  • SQL
  • HTML
  • CSS
  • Javascript

Top TCS Assistant System Engineer Trainee Interview Questions and Answers

Q1. #include int main() { int any = ' ' * 10; printf("%d", any); return 0; } What is the output?
View answer (2)

Assistant System Engineer Trainee Interview Questions asked at other Companies

Q1. #include int main() { int any = ' ' * 10; printf("%d", any); return 0; } What is the output?
View answer (2)

Ninja Interview Questions & Answers

user image Praveen Sunkara

posted on 16 Jan 2025

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

I applied via campus placement at Vellore Institute of Technology (VIT) and was interviewed in Dec 2024. There were 3 interview rounds.

Round 1 - Technical 

(2 Questions)

  • Q1. What do you know about TCS?
  • Ans. 

    TCS (Tata Consultancy Services) is an Indian multinational IT services and consulting company.

    • TCS is one of the largest IT services companies in the world.

    • It is a part of the Tata Group, a conglomerate in India.

    • TCS offers services in areas such as IT consulting, software development, and business process outsourcing.

    • The company has a global presence with offices in multiple countries.

    • TCS is known for its innovation and

  • Answered by AI
  • Q2. Problem on strings.
Round 2 - Technical 

(2 Questions)

  • Q1. AWS Certifications course based questions from resume.
  • Q2. Project based questions from resume
Round 3 - HR 

(2 Questions)

  • Q1. Tell me about something that you haven't mentioned in resume
  • Ans. 

    I have experience in organizing and leading team-building activities.

    • Organized a company retreat focused on team bonding and communication

    • Led a team-building workshop on problem-solving and collaboration

    • Planned a volunteer day for the team to give back to the community

  • Answered by AI
  • Q2. About TCS and its slalary compared to other companies.

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare well what you have mentioned in your resume.

Top TCS Ninja Interview Questions and Answers

Q1. You have done a lot of courses in coursera and NPTEL. What is the use of it?
View answer (3)

Ninja Interview Questions asked at other Companies

Q1. You have done a lot of courses in coursera and NPTEL. What is the use of it?
View answer (3)
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(3 Questions)

  • Q1. Diff between background and hooks
  • Q2. Real time interface uses in your framework
  • Q3. Occurances of a character in a string
Round 2 - Technical 

(2 Questions)

  • Q1. Locate elements
  • Q2. Window handling
Round 3 - HR 

(2 Questions)

  • Q1. Project explanation
  • Q2. Domain experience

Senior Automation Tester Interview Questions asked at other Companies

Q1. Frameworks and How Given When Then are implemented in BDD framework
View answer (1)
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - One-on-one 

(3 Questions)

  • Q1. What is your real-time experience with applied coding questions?
  • Q2. Advanced oops questions for data management.
  • Q3. Advance database questions
Round 2 - HR 

(2 Questions)

  • Q1. What is the reason for your job change?
  • Q2. What is your expected salary?

Top TCS System Engineer Interview Questions and Answers

Q1. Election Winner Determination In an ongoing election between two candidates A and B, there is a queue of voters that includes supporters of A, supporters of B, and neutral voters. Neutral voters have the power to swing the election results ... read more
View answer (8)

System Engineer Interview Questions asked at other Companies

Q1. Election Winner Determination In an ongoing election between two candidates A and B, there is a queue of voters that includes supporters of A, supporters of B, and neutral voters. Neutral voters have the power to swing the election results ... read more
View answer (8)
Contribute & help others!
anonymous
You can choose to be anonymous

TCS Interview FAQs

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

Some of the top questions asked at the TCS interview -

  1. What is FDS , did you create and if create tell me the requireme...read more
  2. How to display multiple screen in one lay...read more
  3. What is the use of constructor? When it will be cal...read more
How long is the TCS interview process?

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

Recently Viewed

INTERVIEWS

Jio

No Interviews

INTERVIEWS

Jio

No Interviews

REVIEWS

Tata Motors

No Reviews

REVIEWS

Escorts Kubota Limited

No Reviews

REVIEWS

Tata Motors

No Reviews

REVIEWS

Tata Motors

No Reviews

DESIGNATION

DESIGNATION

INTERVIEWS

Telenor

No Interviews

Tell us how to improve this page.

TCS Interview Process

based on 8.5k interviews

Interview experience

4.1
  
Good
View more

Anonymously discuss salaries, work culture, and many more

Get Ambitionbox App

Interview Questions from Similar Companies

Accenture Interview Questions
3.8
 • 8.2k Interviews
Infosys Interview Questions
3.6
 • 7.6k Interviews
Wipro Interview Questions
3.7
 • 5.7k Interviews
Tech Mahindra Interview Questions
3.5
 • 3.9k Interviews
HCLTech Interview Questions
3.5
 • 3.8k Interviews
LTIMindtree Interview Questions
3.8
 • 3k Interviews
Mphasis Interview Questions
3.4
 • 810 Interviews
Cyient Interview Questions
3.6
 • 284 Interviews
View all

TCS Reviews and Ratings

based on 89.7k reviews

3.7/5

Rating in categories

3.6

Skill development

3.8

Work-life balance

2.8

Salary

4.5

Job security

3.6

Company culture

2.6

Promotions

3.3

Work satisfaction

Explore 89.7k Reviews and Ratings
Salesforce Developer

Nagpur

4-9 Yrs

Not Disclosed

Sap Fico Consultant

Nagpur

4-9 Yrs

Not Disclosed

Explore more jobs
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