Upload Button Icon Add office photos

TCS iON

Compare button icon Compare button icon Compare

Filter interviews by

TCS iON Ninja Interview Questions and Answers

Updated 12 Nov 2024

TCS iON Ninja Interview Experiences

6 interviews found

Ninja Interview Questions & Answers

user image Chandu devatha

posted on 7 Nov 2024

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

I applied via Walk-in and was interviewed in May 2024. There were 2 interview rounds.

Round 1 - Aptitude Test 

U can search in youtube

Round 2 - One-on-one 

(4 Questions)

  • Q1. Swap 2 numbers without 3rd variable
  • Ans. 

    To swap two numbers without a third variable, use arithmetic operations.

    • Use addition and subtraction to swap the numbers

    • Example: a = 5, b = 10. a = a + b (a = 15), b = a - b (b = 5), a = a - b (a = 10)

  • Answered by AI
  • Q2. Give me unique values in a column (sql)
  • Ans. 

    Use the DISTINCT keyword in SQL to retrieve unique values in a column.

    • Use the SELECT DISTINCT statement followed by the column name to retrieve unique values.

    • For example, SELECT DISTINCT column_name FROM table_name;

    • You can also use GROUP BY to get unique values in a column.

  • Answered by AI
  • Q3. Project questions->what u have mentioned in resume
  • Q4. Some simple hr questions

Interview Preparation Tips

Interview preparation tips for other job seekers - Communication is so important

Skills evaluated in this interview

Ninja Interview Questions & Answers

user image Anonymous

posted on 28 Sep 2024

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

I applied via Job Fair and was interviewed in Mar 2024. There were 2 interview rounds.

Round 1 - Aptitude Test 

1 round is very hard u have to prepare well.

Round 2 - Coding Test 

Easy to hard coding questions prepare DSA .

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare well they ask on point which is mentioned in resume.

Ninja Interview Questions Asked at Other Companies

asked in TCS
Q1. You have completed many courses on Coursera and NPTEL. How do you ... 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. Given the series: 0, 0, 2, 1, 4, 2, 6, 3, 8, 4, 10, 5, 12, 6, 14, ... read more
asked in TCS
Q5. Why are you shifting to the software side, especially coming from ... read more

Ninja Interview Questions & Answers

user image Anonymous

posted on 12 Nov 2024

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

I applied via Campus Placement and was interviewed before Nov 2023. There were 2 interview rounds.

Round 1 - Aptitude Test 

Mcqs questions based on aptitude like pipe and cistern, man and work

Round 2 - Technical 

(2 Questions)

  • Q1. Dynamic memory allocation
  • Q2. Star pattern coding question

Interview Preparation Tips

Interview preparation tips for other job seekers - Go with basics.

Ninja Interview Questions & Answers

user image Anonymous

posted on 26 May 2024

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

I applied via Campus Placement and was interviewed before May 2023. There was 1 interview round.

Round 1 - Technical 

(4 Questions)

  • Q1. What is linked list?
  • Q2. Tell me about company?
  • Q3. Family background
  • Q4. Introduce yourself

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare well technical rounds.

Skills evaluated in this interview

Ninja Interview Questions & Answers

user image Anonymous

posted on 2 Aug 2023

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

I applied via LinkedIn and was interviewed before Aug 2022. There were 3 interview rounds.

Round 1 - Coding Test 

Normal coding test by TCS ninja

Round 2 - Technical 

(1 Question)

  • Q1. Questions related to DBMS, CPP programming, Projects
Round 3 - HR 

(1 Question)

  • Q1. Are you willing to relocate? Hobbies?

Ninja Interview Questions & Answers

user image Ronald J

posted on 4 Jun 2022

I applied via Naukri.com and was interviewed in May 2022. There were 2 interview rounds.

Round 1 - Aptitude Test 

Normal aptitude like maths

Round 2 - HR 

(1 Question)

  • Q1. Flexible to work locations

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare well with YouTube or some other videos or lectures for the aptitude you can crack it easily

TCS iON HR Interview Questions

52 questions and answers

Q. What was your previous role in the company?
Q. Give us a live example of how you used your data analysis skills in your previou ... read more
Q. What are your future goals?

Top trending discussions

View All
Salary Discussions
2w
a full stack developer
No Salary Discussion in My Appraisal — What’s Your Experience?
In my appraisal meeting, they didn’t ask or discuss my expectations about my salary or hike percentage. The entire discussion was only about feedback and performance review. After the meeting, I asked why they didn’t allow me to share my expectations or reveal my hike numbers. They told me that the hike numbers would be decided only by the owner and then they would inform me. I feel an appraisal meeting should include open discussion about both performance and future expectations. What are your thoughts? Does this happen in your company too?
Got a question about TCS iON?
Ask anonymously on communities.

Interview questions from similar companies

I applied via Naukri.com and was interviewed before Nov 2019. There were 4 interview rounds.

Interview Questionnaire 

1 Question

  • Q1. Servlet life cycle, bubble sort, quick sort, binary search, how can a software ensure GDPR rules being followed, SQL queries (second highest salary)

Interview Preparation Tips

Interview preparation tips for other job seekers - you will need to give a psychometric test, some beginner sometimes mediocre level programming test and final technical interview which may last till an hour. Do read about 1 or 2 Newgen products before going for the interview. They will definitely ask. Just be confident.Offer letter generally comes within 2 weeks. All the best !!
Are these interview questions helpful?

I appeared for an interview before Mar 2021.

Round 1 - Coding Test 

(3 Questions)

Round duration - 60 minutes
Round difficulty - Medium

21 students were shortlisted from the 1st MCQ round and in this round we were asked to write the codes (function only) of 3 questions in 1 hour time.

  • Q1. 

    Rotting Oranges Problem Statement

    You are given a grid containing oranges where each cell of the grid can contain one of the three integer values:

    • 0 - representing an empty cell
    • 1 - representing a fre...
  • Q2. 

    Majority Element Problem Statement

    Given an array/list 'ARR' consisting of 'N' integers, your task is to find the majority element in the array. If there is no majority element present, return -1.

    Exampl...

  • Q3. 

    Maximum Path Sum Between Two Leaves Problem Description

    You are provided with a non-empty binary tree in which each node contains a non-negative integer value. Your task is to find and return the maximum ...

  • Ans. 

    Find the maximum path sum between two leaf nodes in a binary tree.

    • Traverse the tree to find the maximum path sum between two leaf nodes.

    • Keep track of the maximum sum found so far.

    • Consider all possible paths between leaf nodes.

    • Handle cases where the tree has only a single leaf node.

    • Implement a recursive function to calculate the maximum path sum.

  • Answered by AI
Round 2 - Face to Face 

(3 Questions)

Round duration - 60 minutes
Round difficulty - Medium

This was a technical round with DSA based questions.

  • Q1. 

    N-th Node From The End Problem Statement

    You are given a Singly Linked List of integers. The task is to find the N-th node from the end of the list.

    Example:

    Input:
    If the given list is (1 -> -2 -&g...
  • Ans. 

    Find the N-th node from the end of a Singly Linked List of integers.

    • Traverse the list to find the length L of the list.

    • Calculate the position of the N-th node from the beginning as L - N + 1.

    • Traverse the list again to reach the calculated position and return the node's value.

  • Answered by AI
  • Q2. 

    LCA of Binary Tree Problem Statement

    You are given a binary tree consisting of distinct integers and two nodes, X and Y. Your task is to find and return the Lowest Common Ancestor (LCA) of these two nodes...

  • Q3. 

    Reverse Words in a String: Problem Statement

    You are given a string of length N. Your task is to reverse the string word by word. The input may contain multiple spaces between words and may have leading o...

Round 3 - Face to Face 

(3 Questions)

Round duration - 60 minutes
Round difficulty - Easy

Technical Interview round with questions based on DSA

  • Q1. 

    Minimum Time To Solve The Problems

    Given 'N' subjects, each containing a certain number of problems, and 'K' friends, assign subjects to friends such that each subject goes to exactly one friend, maintain...

  • Q2. What is grammar in the context of compiler design?
  • Ans. 

    Grammar in compiler design defines the syntax and structure of a programming language.

    • Grammar specifies the rules for forming valid statements in a programming language.

    • It consists of a set of production rules that define how valid programs can be constructed.

    • There are different types of grammars such as context-free grammar, regular grammar, etc.

    • Example: In C programming language, the grammar specifies that a for loop...

  • Answered by AI
  • Q3. What is a token in compiler design?
  • Ans. 

    A token in compiler design is a basic unit of syntax that the compiler can understand and process.

    • Tokens are the smallest units of a program that are meaningful to the compiler.

    • Examples of tokens include keywords, identifiers, operators, and punctuation symbols.

    • Tokens are generated by the lexical analysis phase of the compiler.

    • Tokens are used by the parser to build the abstract syntax tree of the program.

  • Answered by AI
Round 4 - Video Call 

(3 Questions)

Round duration - 60 minutes
Round difficulty - Easy

Technical round with questions on DSA and Compiler Design mainly. He told me that you’ll be having your final HR round in some time. I knew that I was going well because he seemed to be quite satisfied with my answers.

  • Q1. 

    Sum Root to Leaf Numbers

    You are given an arbitrary binary tree consisting of N nodes, each associated with an integer value from 1 to 9. Each root-to-leaf path can be considered a number formed by concat...

  • Q2. What is a regular language?
  • Ans. 

    A regular language is a language that can be recognized by a finite automaton.

    • Regular languages can be described by regular expressions.

    • Regular languages are closed under union, concatenation, and Kleene star operations.

    • Examples of regular languages include the set of all strings over an alphabet that contain an even number of 'a's.

  • Answered by AI
  • Q3. What are NP and NP-Hard problems?
  • Ans. 

    NP problems are decision problems that can be verified in polynomial time, while NP-Hard problems are at least as hard as the hardest problems in NP.

    • NP problems can be verified in polynomial time but not necessarily solved in polynomial time.

    • NP-Hard problems are at least as hard as the hardest problems in NP, but may not be in NP themselves.

    • Examples of NP problems include the subset sum problem and the traveling salesm...

  • Answered by AI
Round 5 - HR 

Round duration - 30 minutes
Round difficulty - Easy

That was the round for which I’ve been waiting for hours 
She was very friendly and nice to talk to. It didn’t seem that I was talking to the HR. It was more like talking to a friend. Finally we discussed about the pay-scale and work culture in Accolite.

Interview Preparation Tips

Eligibility criteriaAbove 7 CGPAAccolite Digital Pvt Ltd interview preparation:Topics to prepare for the interview - Data Structures, Algorithms, System Design, Aptitude, OOPSTime required to prepare for the interview - 6 monthsInterview preparation tips for other job seekers

Tip 1 : Must do Previously asked Interview as well as Online Test Questions.
Tip 2 : Go through all the previous interview experiences from Codestudio and Leetcode.
Tip 3 : Do at-least 2 good projects and you must know every bit of them.

Application resume tips for other job seekers

Tip 1 : Have at-least 2 good projects explained in short with all important points covered.
Tip 2 : Every skill must be mentioned.
Tip 3 : Focus on skills, projects and experiences more.

Final outcome of the interviewSelected

Skills evaluated in this interview

Interview Questionnaire 

1 Question

  • Q1. Runtime pollymorphism

Interview Preparation Tips

Round: Test
Experience: I scored good.
Tips: Core java good knowledge.
Duration: 30 minutes
Total Questions: 25

Round: Technical Interview
Experience: like this many ques from core java and hibernate and sql also and I scored good.
Tips: Command over core java and sql also.

I appeared for an interview in Sep 2017.

Interview Questionnaire 

3 Questions

  • Q1. What is deadlock
  • Q2. Which technology you know and worked
  • Ans. 

    I have experience with various technologies including Java, Python, HTML/CSS, JavaScript, and SQL.

    • Java

    • Python

    • HTML/CSS

    • JavaScript

    • SQL

  • Answered by AI
  • Q3. Why you are looking for change and what is your notice period
  • Ans. 

    I am looking for a change to explore new opportunities and challenges. My notice period is 30 days.

    • Seeking new opportunities and challenges

    • Want to learn and grow in a different environment

    • Exploring better career prospects

    • Seeking a company with a better work-life balance

    • Notice period is 30 days

  • Answered by AI

Interview Preparation Tips

Round: Test
Experience: 25 objective ques from Java and 25 from English
Tips: should prepare with Java Technology
Duration: 1 hour
Total Questions: 50

Round: Technical Interview
Experience: describe clearly
Tips: should prepared

Round: Technical Interview
Experience: do you know about jsf
Tips: yes, I worked

Round: Technical + HR Interview
Experience: this is my dream company actually, and notice is 15 to 20 days.
Tips: be confident

Skills evaluated in this interview

TCS iON Interview FAQs

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

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

  1. Give me unique values in a column (s...read more
  2. Swap 2 numbers without 3rd varia...read more
  3. What is linked li...read more

Tell us how to improve this page.

Overall Interview Experience Rating

3.6/5

based on 8 interview experiences

Difficulty level

Easy 50%
Moderate 17%
Hard 33%

Duration

Less than 2 weeks 50%
2-4 weeks 33%
4-6 weeks 17%
View more

Interview Questions from Similar Companies

ITC Infotech Interview Questions
3.7
 • 380 Interviews
CitiusTech Interview Questions
3.3
 • 290 Interviews
NeoSOFT Interview Questions
3.6
 • 280 Interviews
Altimetrik Interview Questions
3.7
 • 243 Interviews
Episource Interview Questions
3.9
 • 224 Interviews
Xoriant Interview Questions
4.1
 • 215 Interviews
INDIUM Interview Questions
4.0
 • 204 Interviews
Incedo Interview Questions
3.0
 • 193 Interviews
View all
TCS iON Ninja Salary
based on 12 salaries
₹3 L/yr - ₹4 L/yr
At par with the average Ninja Salary in India
View more details
Operations Executive
257 salaries
unlock blur

₹1.5 L/yr - ₹4.5 L/yr

System Engineer
144 salaries
unlock blur

₹3.4 L/yr - ₹7.5 L/yr

Software Developer
141 salaries
unlock blur

₹5.4 L/yr - ₹13.4 L/yr

Software Engineer
124 salaries
unlock blur

₹3.4 L/yr - ₹7.5 L/yr

IT Manager
71 salaries
unlock blur

₹1.4 L/yr - ₹4.2 L/yr

Explore more salaries
Compare TCS iON with

Wipro

3.7
Compare

Amazon

4.0
Compare

TCS

3.6
Compare

ITC Infotech

3.7
Compare
write
Share an Interview