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

Updated 20 Jan 2025

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?
  • Q2. Is it a software project? Which software or language did you use?
  • Q3. You have done a course in Neural Networks right? What are neural networks?
View all 139 questions

TCS Ninja Interview Experiences

187 interviews found

Ninja Interview Questions & Answers

user image Anonymous

posted on 10 Jul 2024

Interview experience
5
Excellent
Difficulty level
Easy
Process Duration
2-4 weeks
Result
-

I applied via Campus Placement and was interviewed in Jun 2024. There was 1 interview round.

Round 1 - Technical 

(2 Questions)

  • Q1. Complete resume based interview
  • Q2. Oops , c , projects

Ninja Interview Questions & Answers

user image SANJAY S

posted on 12 Jul 2024

Interview experience
5
Excellent
Difficulty level
Easy
Process Duration
More than 8 weeks
Result
Selected Selected

I applied via Campus Placement and was interviewed in Jun 2024. There were 4 interview rounds.

Round 1 - Aptitude Test 

Normal apptitude question Material avaible on yt

Round 2 - Coding Test 

The coding has two coding questions to be solved one easy and one tough

Round 3 - Assignment 

Normal question based on your resume you got to be thorough on resume skills

Round 4 - HR 

(1 Question)

  • Q1. General hr and mr questions will be asked

Ninja Interview Questions Asked at Other Companies

asked in TCS
Q1. You have done a lot of courses in coursera and NPTEL. What is the ... read more
asked in TCS
Q2. Is it a software project? Which software or language did you use?
asked in TCS
Q3. You have done a course in Neural Networks right? What are neural ... read more
asked in TCS
Q4. Why should you shifting to software side? (if you are from NON IT ... read more
asked in TCS
Q5. If an application designed by you does not runs on PC, is it your ... read more

Ninja Interview Questions & Answers

user image Anonymous

posted on 14 Jun 2024

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

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

Round 1 - Aptitude Test 

5 sections gave nqt including quants verbal reasoning advanced quants and advanced reasoning

Round 2 - Coding Test 

2 coding question of medium to easy level they dont allow to use inbuilt fucntiona

Round 3 - One-on-one 

(2 Questions)

  • Q1. Explain the project you made and how would you sell it in market
  • Ans. 

    I created a mobile app that helps users track their daily water intake and reminds them to stay hydrated.

    • The app allows users to set daily water intake goals based on their weight and activity level.

    • Users can log their water consumption throughout the day and receive notifications to drink more water if they are falling behind.

    • The app also provides visual representations of their daily water intake to help users stay m...

  • Answered by AI
  • Q2. Why TCS or why join TCS

Interview Preparation Tips

Interview preparation tips for other job seekers - In ninja interview just answer why tcs correctly .They should see you are willing to join the organisation otherwise even if you have good technical skills if they sense you are not interested for joining and only want a back up option they will reject you

Ninja Interview Questions & Answers

user image Vaibhav Gour

posted on 10 Jul 2024

Interview experience
3
Average
Difficulty level
Moderate
Process Duration
6-8 weeks
Result
Not Selected

I applied via Company Website and was interviewed in Jan 2024. There were 2 interview rounds.

Round 1 - Coding Test 

TCS NQT is the Online test which is used to qualify for tcs roles

Round 2 - Technical 

(2 Questions)

  • Q1. Introduce yourself, projects, technical experience
  • Q2. State full or stateless difference
  • Ans. 

    Stateful vs stateless refers to whether or not the server retains information about the client between requests.

    • Stateful: Server retains client information between requests

    • Stateless: Server does not retain client information between requests

    • Stateful example: HTTP cookies

    • Stateless example: RESTful APIs

  • Answered by AI

Skills evaluated in this interview

Ninja Interview Questions & Answers

user image Anonymous

posted on 2 Jan 2025

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

I applied via campus placement at Anna University and was interviewed in Jul 2024. There were 2 interview rounds.

Round 1 - Aptitude Test 

It was an aptitude and coding test. Aptitude topics were basic to advance and coding was either python or java

Round 2 - HR 

(1 Question)

  • Q1. As Im a math graduate questions were based upon the same

Get interview-ready with Top TCS Interview Questions

Ninja Interview Questions & Answers

user image Anonymous

posted on 12 Aug 2024

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

I was interviewed in Feb 2024.

Round 1 - Technical 

(2 Questions)

  • Q1. Basic SQL and core java
  • Q2. Questions on your projects and resume

Ninja Interview Questions & Answers

user image Anonymous

posted on 25 Apr 2024

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

I applied via campus placement at Gandhi Institute of Technology and Management, Visakhapatnam and was interviewed in Oct 2023. There were 2 interview rounds.

Round 1 - Technical 

(5 Questions)

  • Q1. What is the difference between DDL DML?
  • Ans. 

    DDL stands for Data Definition Language and is used to define the structure of database objects. DML stands for Data Manipulation Language and is used to manipulate data within the database.

    • DDL is used to create, modify, and delete database objects such as tables, indexes, and views.

    • DML is used to insert, update, delete, and retrieve data from database tables.

    • Examples of DDL statements include CREATE TABLE, ALTER TABLE...

  • Answered by AI
  • Q2. What is OOPS concept?
  • Ans. 

    OOPS concept stands for Object-Oriented Programming System. It is a programming paradigm based on the concept of objects.

    • OOPS focuses on creating objects that contain data in the form of attributes and code in the form of methods.

    • Encapsulation, inheritance, polymorphism, and abstraction are the four main principles of OOPS.

    • Example: Inheritance allows a class to inherit properties and behavior from another class, promot

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

    Polymorphism is the ability of a function or method to behave differently based on the object it is acting upon.

    • Polymorphism allows objects of different classes to be treated as objects of a common superclass.

    • There are two types of polymorphism: compile-time (method overloading) and runtime (method overriding).

    • Example: Animal class with methods like eat() can be inherited by Dog and Cat classes which can override the e

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

    Inheritance is a concept in object-oriented programming where a class can inherit properties and methods from another class.

    • Allows a class to use properties and methods of another class

    • Promotes code reusability and reduces redundancy

    • Types of inheritance include single, multiple, multilevel, and hierarchical

    • Example: Class 'Car' can inherit properties and methods from class 'Vehicle'

  • Answered by AI
  • Q5. SQL Query to create a table of Employees ?
  • Ans. 

    SQL query to create a table of Employees

    • Use CREATE TABLE statement

    • Specify column names and data types

    • Add any constraints like primary key or foreign key if needed

  • Answered by AI
Round 2 - HR 

(3 Questions)

  • Q1. Aptitude related questions
  • Q2. Project related questions
  • Q3. Internship related questions

Interview Preparation Tips

Interview preparation tips for other job seekers - Be confident and answer perfectly and be polite

Skills evaluated in this interview

Ninja Interview Questions & Answers

user image yallajosyula ajay

posted on 25 Jul 2024

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

It is objective test

Round 2 - Technical 

(2 Questions)

  • Q1. Introduce yourself
  • Ans. 

    I am a highly skilled and experienced Ninja with expertise in stealth, combat, and agility.

    • Trained in various martial arts styles such as karate, judo, and ninjutsu

    • Proficient in the use of traditional ninja weapons like shuriken and katana

    • Specialize in covert operations and infiltration missions

  • Answered by AI
  • Q2. Why should we hire you
  • Ans. 

    You should hire me because of my strong work ethic, relevant experience, and passion for the industry.

    • I have a proven track record of exceeding goals and delivering results.

    • I have relevant experience in the industry and a strong understanding of the market.

    • I am highly motivated, dedicated, and passionate about the work I do.

    • I am a quick learner and always eager to take on new challenges.

    • I work well in a team and can al

  • Answered by AI
Round 3 - HR 

(2 Questions)

  • Q1. Introduce yourself
  • Ans. 

    I am a highly skilled and experienced Ninja with expertise in stealth, combat, and agility.

    • Skilled in various martial arts such as karate, judo, and ninjutsu

    • Proficient in using traditional ninja weapons like shuriken and katana

    • Trained in stealth techniques and infiltration methods

  • Answered by AI
  • Q2. Why did you choose tcs
  • Ans. 

    I chose TCS because of its reputation for innovation, global presence, and opportunities for career growth.

    • Reputation for innovation: TCS is known for its cutting-edge technology solutions and digital transformation services.

    • Global presence: TCS has a strong presence in multiple countries, providing opportunities for international exposure and collaboration.

    • Career growth opportunities: TCS offers a structured career de...

  • Answered by AI

Ninja Interview Questions & Answers

user image Anonymous

posted on 29 Apr 2024

Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
Selected Selected

I applied via Job Fair and was interviewed in Oct 2023. There were 3 interview rounds.

Round 1 - Aptitude Test 

At ion centre, aptitude clear thn selected for ninja Profile.

Round 2 - Coding Test 

If coding cleared thn digital or prime profile, all questions in one exam.

Round 3 - Technical 

(4 Questions)

  • Q1. Opps concept, Sql, and anything mentioned in resume.
  • Q2. About Polymorphism and similar concepts
  • Q3. SQL join concept and related.
  • Q4. Other as per resume mentioned certificate.

Ninja Interview Questions & Answers

user image Anonymous

posted on 15 Feb 2024

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

Good and time taking

Round 2 - Coding Test 

Difficult to moderate

Round 3 - Technical 

(2 Questions)

  • Q1. Nice one vino Zee RR see hu de no de de
  • Q2. Xx S1 sr de no de DD DD sl beedi Sri so St ee vi ch vu

TCS Interview FAQs

How many rounds are there in TCS Ninja interview?
TCS interview process usually has 2-3 rounds. The most common rounds in the TCS interview process are Technical, Aptitude Test and Coding Test.
What are the top questions asked in TCS Ninja interview?

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

  1. Why should you shifting to software side? (if you are from NON IT backgroun...read more
  2. What is Abstraction ? Explain with exam...read more
  3. What is your favorite programming language, and which languages are you comfort...read more
How long is the TCS Ninja interview process?

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

Tell us how to improve this page.

TCS Ninja Interview Process

based on 164 interviews

5 Interview rounds

  • Aptitude Test Round
  • Coding Test Round
  • Technical Round
  • HR Round - 1
  • HR Round - 2
View more

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
Cognizant Interview Questions
3.8
 • 5.6k Interviews
Capgemini Interview Questions
3.7
 • 4.8k Interviews
Tech Mahindra Interview Questions
3.5
 • 3.9k Interviews
HCLTech Interview Questions
3.5
 • 3.8k Interviews
Genpact Interview Questions
3.8
 • 3.1k Interviews
LTIMindtree Interview Questions
3.8
 • 3k Interviews
IBM Interview Questions
4.0
 • 2.4k Interviews
View all
TCS Ninja Salary
based on 169 salaries
₹3 L/yr - ₹4.3 L/yr
At par with the average Ninja Salary in India
View more details

TCS Ninja Reviews and Ratings

based on 30 reviews

4.4/5

Rating in categories

4.1

Skill development

4.1

Work-life balance

4.2

Salary

4.5

Job security

4.3

Company culture

4.2

Promotions

4.0

Work satisfaction

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