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 Assistant Engineer Interview Questions and Answers

Updated 4 Aug 2025

13 Interview questions

An Assistant Engineer was asked
Q. Write a program to print a star pattern using your preferred programming language.
Ans. 

Generate a star pattern using a desired language.

  • Use nested loops to print the desired number of rows and columns.

  • In each iteration, print a '*' character to form the pattern.

  • Adjust the loop conditions and print statements to create different patterns.

  • Consider using variables to control the number of rows and columns.

  • Experiment with different loop structures to create more complex patterns.

An Assistant Engineer was asked
Q. Tell me about OOPS concepts.
Ans. 

OOPs concepts are the fundamental principles of object-oriented programming.

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

  • Encapsulation: Binding data and functions together in a single unit.

  • Inheritance: Acquiring properties and behavior of a parent class by a child class.

  • Polymorphism: Ability of an object to take many forms.

  • Example: A car is an object that has properties like co...

Assistant Engineer Interview Questions Asked at Other Companies

Q1. How do we measure the slump of concrete during casting? Is there ... read more
Q2. Why do we take only 1 set of cube samples when casting concrete o ... read more
asked in Randstad
Q3. 1.Define the term capacitance & inductance 2.what is Rectifie ... read more
Q4. What is the 5S methodology, and why is it important in an industr ... read more
asked in TCE
Q5. What provisions do you check when designing a beam/column accordi ... read more
An Assistant Engineer was asked
Q. What is an ideal diode? Draw its input-output characteristic curve.
Ans. 

An ideal diode is a theoretical diode that exhibits zero voltage drop when forward biased and infinite resistance when reverse biased.

  • An ideal diode acts as a perfect conductor when forward biased.

  • It allows current to flow in one direction with zero voltage drop.

  • When reverse biased, it acts as an open circuit with infinite resistance.

  • The input-output characteristic curve of an ideal diode is a vertical line at zer...

An Assistant Engineer was asked
Q. What is the function of the session layer?
Ans. 

Session layer manages and controls the connections between applications.

  • Establishes, maintains and terminates sessions between applications

  • Synchronizes data exchange between applications

  • Manages session checkpoints and recovery

  • Examples: Telnet, FTP, SMTP

What people are saying about TCS

View All
an operations executive
1w
Going by the current news of layoffs at TCS, it’s honestly heartbreaking
People who’ve given their time, effort, and energy to the company are suddenly being shown the door. It really makes you think... no matter how senior or experienced you are, no role is ever fully safe. The same company that once relied on them is now asking them to leave. Feels unfair, honestly. And if there’s anyone who’s seen or experienced something off inside, maybe now’s the time to speak up. pls share your story. Not to point fingers, but just so others understand what actually goes on. We all deserve transparency. We all deserve better.
FeedCard Image
Got a question about TCS?
Ask anonymously on communities.
An Assistant Engineer was asked
Q. Who is the chairman of ISRO?
Ans. 

The chairman of ISRO is K. Sivan.

  • K. Sivan is an Indian space scientist and the current chairman of ISRO.

  • He has been associated with ISRO for over three decades and has contributed to several missions.

  • Under his leadership, ISRO has achieved several milestones including the successful launch of Chandrayaan-2.

An Assistant Engineer was asked
Q. Write a program to print the first 10 natural numbers on the screen.
Ans. 

Program to print first 10 natural numbers on the screen

  • Declare a variable i and initialize it to 1

  • Use a loop to print i and increment it until i reaches 10

TCS HR Interview Questions

1.4k questions and answers

Q. What are your responsibilities in the current role?
Q. Have you ever collaborated with foreign clients?
Q. Are you flexible for rotational shifts?
An Assistant Engineer was asked
Q. Tell us something about the Zener diode.
Ans. 

A zener diode is a type of diode that allows current to flow in the reverse direction when a certain voltage is reached.

  • Zener diodes are commonly used as voltage regulators.

  • They have a sharp breakdown voltage, which makes them useful for stabilizing voltage in electronic circuits.

  • Zener diodes are often used in power supplies, voltage references, and surge protectors.

  • They are also used in noise reduction circuits a...

Are these interview questions helpful?
An Assistant Engineer was asked
Q. Describe the layers of the OSI model.
Ans. 

The OSI model has 7 layers that define how data is transmitted over a network.

  • Layer 1: Physical - deals with the physical connection of devices

  • Layer 2: Data Link - responsible for error-free transfer of data between devices

  • Layer 3: Network - handles routing of data between different networks

  • Layer 4: Transport - ensures reliable delivery of data between applications

  • Layer 5: Session - establishes and manages connect...

An Assistant Engineer was asked
Q. Write a program for computing the factorial of a number using recursion
Ans. 

Program to compute factorial of a number using recursion

  • Define a function that takes a number as input

  • Check if the number is 0 or 1, return 1 if true

  • Else, call the function recursively with n-1 as input and multiply with n

  • Return the result

  • Example: factorial(5) = 5 * factorial(4) = 5 * 4 * factorial(3) = 5 * 4 * 3 * factorial(2) = 5 * 4 * 3 * 2 * factorial(1) = 5 * 4 * 3 * 2 * 1 = 120

An Assistant Engineer was asked
Q. What is an IP address?
Ans. 

An IP address is a unique identifier for a device on a network, enabling communication over the internet.

  • IP stands for Internet Protocol, which is a set of rules for sending data over the internet.

  • There are two main types of IP addresses: IPv4 (e.g., 192.168.1.1) and IPv6 (e.g., 2001:0db8:85a3:0000:0000:8a2e:0370:7334).

  • IPv4 addresses are 32-bit numbers, while IPv6 addresses are 128-bit, allowing for a vastly large...

TCS Assistant Engineer Interview Experiences

12 interviews found

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

I appeared for an interview in Jul 2025, where I was asked the following questions.

  • Q1. Manpower Handling
  • Q2. Day to day production achieve
Interview experience
3
Average
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Selected Selected

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

Round 1 - Coding Test 

Python question on list and dict

Interview Preparation Tips

Interview preparation tips for other job seekers - prepare well in python
Interview experience
3
Average
Difficulty level
Moderate
Process Duration
-
Result
Selected Selected
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 

(1 Question)

  • Q1. Star pattern using your desired language.
  • Ans. 

    Generate a star pattern using a desired language.

    • Use nested loops to print the desired number of rows and columns.

    • In each iteration, print a '*' character to form the pattern.

    • Adjust the loop conditions and print statements to create different patterns.

    • Consider using variables to control the number of rows and columns.

    • Experiment with different loop structures to create more complex patterns.

  • Answered by AI
Round 3 - HR 

(1 Question)

  • Q1. Asked about projects in resume. Role in the projects.

Skills evaluated in this interview

Interview experience
2
Poor
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
No response

I applied via Naukri.com and was interviewed in Feb 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 - Aptitude Test 

Contains 3 test - logical , mathematical, coding round

Round 3 - Technical 

(2 Questions)

  • Q1. What is array , linked list
  • Ans. 

    Array is a collection of elements of same data type. Linked list is a data structure consisting of a group of nodes.

    • Arrays are used to store and access a fixed number of elements in memory.

    • Linked lists are used to store and access a variable number of elements in memory.

    • Arrays have a fixed size, while linked lists can grow or shrink dynamically.

    • Arrays are accessed using an index, while linked lists are accessed using p...

  • Answered by AI
  • Q2. Tell me about oops concepts
  • Ans. 

    OOPs concepts are the fundamental principles of object-oriented programming.

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

    • Encapsulation: Binding data and functions together in a single unit.

    • Inheritance: Acquiring properties and behavior of a parent class by a child class.

    • Polymorphism: Ability of an object to take many forms.

    • Example: A car is an object that has properties like color, ...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - just belive in yourself , rejection leads to success

Skills evaluated in this interview

Assistant Engineer Interview Questions & Answers

user image gadicharla bhoomika

posted on 16 Jan 2023

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

I applied via LinkedIn and was interviewed in Jul 2022. There were 5 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 - Aptitude Test 

Preparing more and more questions will help in the fast calculation and also different sums

Round 3 - Coding Test 

Logical thinking is more important whether you might be written code in any language

Round 4 - Technical 

(4 Questions)

  • Q1. Questions based on languages that you known .Be well prepared.
  • Q2. Tell me about your project
  • Q3. Basic programs
  • Q4. Questions related C, Python
Round 5 - HR 

(2 Questions)

  • Q1. Tell me about yourself
  • Q2. Are you willing to relocate

Interview Preparation Tips

Interview preparation tips for other job seekers - Be prepared and don't be nervous while attending interviews.Do practice on speaking fluent acsent .

I applied via Campus Placement and was interviewed in Sep 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 - Technical 

(2 Questions)

  • Q1. Tell me about your self
  • Q2. I am xyz name and I am from xyz places i have a done 10th and 12th standard from xyz college name and I have a score 10th and standard xzy percent and currently I am pursuing xyz course from xyz college...

Interview Preparation Tips

Topics to prepare for TCS Assistant Engineer interview:
  • DBMS Basic questions
  • Data Structures
  • C++
  • OOPS
  • Project
  • HTML
  • CSS
Interview preparation tips for other job seekers - I have a good experience and confidence good and communication skills excellent
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
4-6 weeks
Result
Selected Selected

I applied via Company Website and was interviewed before May 2023. There were 2 interview rounds.

Round 1 - Aptitude Test 

These tests usually consist of numerical, verbal, and logical reasoning questions.

Round 2 - Coding Test 

Coding is easy to moderate level.

Assistant Engineer Interview Questions & Answers

user image Ambigapathi ak

posted on 15 Apr 2022

I applied via Company Website and was interviewed in Oct 2021. There was 1 interview round.

Round 1 - HR 

(3 Questions)

  • Q1. Tell me about yourself.
  • Q2. Basic programming questions,like what is abstract class, abstraction, inheritance ,member function syntax (everything related to ur choice of program language)
  • Q3. Am I ok with relocation of work place

Interview Preparation Tips

Interview preparation tips for other job seekers - Don't take any words said by hr to the heart, if even they said everything ok wait for the offer letter.be humble understand the situation if u don't got offer letter,there r many other companies

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

Interview Questionnaire 

2 Questions

  • Q1. Oops concepts
  • Q2. Inheritance, encapsulation

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare normally and confidently

I applied via Referral and was interviewed in Mar 2021. There was 1 interview round.

Interview Questionnaire 

1 Question

  • Q1. It provides 4 basic feature in cpp

Interview Preparation Tips

Interview preparation tips for other job seekers - Do your homework, practice

TCS Interview FAQs

How many rounds are there in TCS Assistant Engineer 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 Assistant 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 Aruba Wireless.
What are the top questions asked in TCS Assistant Engineer interview?

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

  1. What is an ideal diode?. Draw its input output characteristic cu...read more
  2. Write a program for computing the factorial of a number using recurs...read more
  3. Write a program to print first 10 natural numbers on the scr...read more

Tell us how to improve this page.

Overall Interview Experience Rating

4.1/5

based on 9 interview experiences

Difficulty level

Easy 43%
Moderate 43%
Hard 14%

Duration

Less than 2 weeks 67%
2-4 weeks 17%
4-6 weeks 17%
View more
TCS Assistant Engineer Salary
based on 596 salaries
₹3 L/yr - ₹5.5 L/yr
At par with the average Assistant Engineer Salary in India
View more details

TCS Assistant Engineer Reviews and Ratings

based on 91 reviews

3.6/5

Rating in categories

3.2

Skill development

3.5

Work-life balance

2.4

Salary

4.4

Job security

3.5

Company culture

2.4

Promotions

3.0

Work satisfaction

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

₹3.9 L/yr - ₹8.3 L/yr

IT Analyst
65.1k salaries
unlock blur

₹8 L/yr - ₹13 L/yr

AST Consultant
54.3k salaries
unlock blur

₹12.4 L/yr - ₹21 L/yr

Associate Consultant
33.8k salaries
unlock blur

₹15.3 L/yr - ₹28.5 L/yr

Assistant System Engineer
33.2k salaries
unlock blur

₹2.4 L/yr - ₹5 L/yr

Explore more salaries
Compare TCS with

Amazon

4.0
Compare

Wipro

3.7
Compare

Infosys

3.6
Compare

Accenture

3.7
Compare
write
Share an Interview