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

Updated 8 Jan 2025

Top TCS fresher Interview Questions and Answers

  • Q1. What is namespace in Python? What are tuples Difference between mutable and immutable What is slicing How do you reverse a string using slicing? What is Exceptional handl ...read more
  • Q2. Difference between call by value and reference by value?
  • Q3. Reversing six digit Number using C
View all 15 questions

TCS fresher Interview Experiences

21 interviews found

fresher Interview Questions & Answers

user image Anonymous

posted on 23 Jun 2022

I applied via Instagram and was interviewed in Jun 2022. There was 1 interview round.

Round 1 - Technical 

(1 Question)

  • Q1. Asking about cars and Some questions about Add skills

Interview Preparation Tips

Interview preparation tips for other job seekers - JOB getting is secondary option but interview
experience will gives a lot of confidence
and lot of Know about how interviewer's are asking questions..and we have some achivement feeling
I

fresher Interview Questions & Answers

user image Anonymous

posted on 19 Jun 2022

I applied via Referral and was interviewed in Dec 2021. 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 - e-mail writting 

(1 Question)

  • Q1. General topics will be given an you are supposed to write a crisp e-mail with few words.
Round 3 - Technical 

(1 Question)

  • Q1. Basic question related to your course, in my case question was what is PT-100.
  • Ans. PT-100 is temperature detector made of Platinum and has 100 Ohm resistance at 0 Deg Celsius temperature.
  • Answered Anonymously

Interview Preparation Tips

Interview preparation tips for other job seekers - Be honest with your answers. finish the answer on such a point from where interviewer can pick the next question for which you are already prepared.

fresher Interview Questions Asked at Other Companies

asked in Tata Steel
Q1. What is the unit of electric current
asked in Apisero
Q2. difference between primary and foreign key, what does truncate co ... read more
asked in Tata Steel
Q3. What is the unit of magnetic flux
Q4. What is gas chromatography gas chromatography is a separation tec ... read more
asked in NTT Data
Q5. What is the formula of simple interest?

fresher Interview Questions & Answers

user image Anonymous

posted on 30 Oct 2021

I applied via Campus Placement and was interviewed in Sep 2021. There was 1 interview round.

Interview Questionnaire 

5 Questions

  • Q1. What is Array?
  • Ans. 

    An array is a collection of similar data types stored in contiguous memory locations.

    • Arrays can be of any data type such as integers, floats, characters, etc.

    • Arrays are accessed using an index starting from 0.

    • Arrays can be one-dimensional, two-dimensional, or multi-dimensional.

    • Example: string[] names = {"John", "Jane", "Bob"};

    • Example: int[] numbers = new int[5];

  • Answered by AI
  • Q2. Difference between call by value and reference by value?
  • Ans. 

    Call by value passes a copy of the value while reference by value passes a copy of the reference to the value.

    • Call by value passes the value of a variable to a function, while reference by value passes the reference to the variable.

    • In call by value, any changes made to the parameter inside the function do not affect the original variable outside the function.

    • In reference by value, any changes made to the parameter insi...

  • Answered by AI
  • Q3. Syntax for while loop and for loop?
  • Ans. 

    Syntax for while loop and for loop

    • For loop: for(initialization; condition; increment/decrement){ //code block }

    • While loop: while(condition){ //code block }

    • Example: for(int i=0; i<5; i++){ cout<

    • Example: int i=0; while(i<5){ cout<

  • Answered by AI
  • Q4. What is pointer in C?
  • Ans. 

    Pointer is a variable that stores the memory address of another variable in C programming language.

    • Pointers are used to manipulate data structures like arrays, linked lists, and trees.

    • They can be used to pass values by reference to functions.

    • Pointer arithmetic can be performed to access elements of an array.

    • Example: int *ptr; ptr = # printf("%d", *ptr);

    • Example: void swap(int *a, int *b) { int temp = *a; *a = *b; *b...

  • Answered by AI
  • Q5. What are your weakness and strength?

Interview Preparation Tips

Interview preparation tips for other job seekers - The interviewer was good. She talked very nicely till the whole interview process. I was confident and I gave the answers confidently. She asked me about my strengths and weakness. All over it was a good interview.

Skills evaluated in this interview

fresher Interview Questions & Answers

user image Anonymous

posted on 25 Mar 2023

Interview experience
3
Average
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
-

I applied via Job Portal and was interviewed before Mar 2022. There were 5 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 - Aptitude Test 

You will get answers the on the back of question paper.

Round 3 - HR 

(1 Question)

  • Q1. Tell me about your self? Are flexible in night shift?
Round 4 - Technical 

(1 Question)

  • Q1. How do you know about this company or interview?
Round 5 - One-on-one 

(1 Question)

  • Q1. Tell me about bps? What is tcs.
  • Ans. 

    BPS stands for Business Process Services. TCS is a multinational IT services company.

    • BPS involves outsourcing of non-core business functions to a third-party provider.

    • TCS offers a range of IT services including consulting, application development, and maintenance.

    • TCS is headquartered in Mumbai, India and operates in over 46 countries.

    • TCS is one of the largest IT services companies in the world with a market capitalizat

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Nothing.just yes to every question. You will selected by them.

TCS interview questions for designations

 fresher Trainee

 (2)

 fresher Graduate

 (2)

 CA fresher

 (3)

 Java fresher

 (2)

 Software Developer fresher

 (14)

 NON Techincal fresher

 (2)

 Assistant System Engineer Trainee

 (372)

 Process Associate

 (128)

fresher Interview Questions & Answers

user image MOTHI.L

posted on 8 Dec 2021

Interview Questionnaire 

2 Questions

  • Q1. 1)tell me about your self
  • Q2. 2)spring boot

Interview Preparation Tips

Interview preparation tips for other job seekers - prepare well for the interview process

Get interview-ready with Top TCS Interview Questions

fresher Interview Questions & Answers

user image Anonymous

posted on 19 Nov 2021

Interview Questionnaire 

2 Questions

  • Q1. Program on fibonacci.
  • Ans. 

    Fibonacci program generates a series of numbers where each number is the sum of the two preceding ones.

    • Declare variables for first and second numbers of the series

    • Use a loop to generate the series up to a certain limit

    • Add the previous two numbers to get the next number in the series

    • Print the series

  • Answered by AI
  • Q2. Introduce yourself

Skills evaluated in this interview

fresher Interview Questions & Answers

user image Anonymous

posted on 6 Jul 2021

I applied via Campus Placement and was interviewed in Jan 2021. There were 3 interview rounds.

Interview Questionnaire 

2 Questions

  • Q1. Where u see yourself in 5 years
  • Q2. Basic technical questions

Interview Preparation Tips

Interview preparation tips for other job seekers - Always speak truth , never show off in front of interviewer

fresher Interview Questions & Answers

user image Anonymous

posted on 29 Apr 2021

Interview Questionnaire 

2 Questions

  • Q1. About my self
  • Q2. I passed the interview in your company but there was one back on my subject now i cleared that as well will you take my interview again ?

fresher Interview Questions & Answers

user image Ankit Shah

posted on 27 Apr 2021

I applied via Referral and was interviewed before Apr 2020. There was 1 interview round.

Interview Questionnaire 

2 Questions

  • Q1. Basic question about self, skills, languange
  • Q2. Basic question about skills

Interview Preparation Tips

Interview preparation tips for other job seekers - was for 30 minutes, asked a basic question about self, interest, why TCS stuff like that

fresher Interview Questions & Answers

user image Anonymous

posted on 24 Jun 2017

I was interviewed before Jun 2016.

Interview Preparation Tips

Round: Resume Shortlist
Experience: I was shortlisted but i can't promoted to next round due to my communication skills.
Tips: They are says to improve your communication skills and try again.

Skills: Personality, Computer Organisation, Communication

TCS Interview FAQs

How many rounds are there in TCS fresher 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 fresher 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 Customer Handling, Interpersonal Skills, Computer Savvy, Communication Skills and Customer Service.
What are the top questions asked in TCS fresher interview?

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

  1. What is namespace in Python? What are tuples Difference between mutable and i...read more
  2. Difference between call by value and reference by val...read more
  3. Reversing six digit Number usin...read more
How long is the TCS fresher interview process?

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

Tell us how to improve this page.

TCS fresher Interview Process

based on 16 interviews

3 Interview rounds

  • Technical Round - 1
  • Technical Round - 2
  • HR Round
View more
TCS fresher Salary
based on 107 salaries
₹1.8 L/yr - ₹7.2 L/yr
31% more than the average fresher Salary in India
View more details

TCS fresher Reviews and Ratings

based on 31 reviews

4.1/5

Rating in categories

4.5

Skill development

4.4

Work-life balance

4.5

Salary

4.7

Job security

4.5

Company culture

4.3

Promotions

4.4

Work satisfaction

Explore 31 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