Open In App

TCS SDE Sheet: Interview Questions and Answers

Last Updated : 09 Feb, 2024
Improve
Improve
Like Article
Like
Save
Share
Report

What is TCS NQT ?

TCS NQT is National Qualifier Test conducted by Tata Consultancy Services, it is a prerequisite for all the tests. The validity of the NQT score is of two years. Candidates are eligible to apply on the TCS iON Job Listing Portal with an NQT score. NQT exams are conducted in both online and offline modes. This sheet will help you prepare for the TCS NQT exam & you can apply for all the top-notch companies that recognize the exam score. Here we have collected all the interview questions and answers to land a job at TCS.

TCS SDE Sheet

TCS NQT Syllabus

 

Recommended Practice

What does this sheet Contains ?

This article contains TCS coding questions i.e. the coding questions that are mostly asked in TCS hiring challenges on different topics. The questions are arranged topic-wise in this sheet along with their solutions.

TCS Ninja and Digital profiles are selected on the basis of the TCS NQT test score. These two profiles differentiate the employees on the basis of coding and interview experience.

  • TCS Digital: TCS Digital hires for the Digital Technology Domain, specializing in IoT, AI, ML, Big Data, Virtual Reality, BlockChain, NLP, etc. There are three ways of landing the TCS Digital offer.
  • TCS Ninja: TCS Ninja profile is hired through TCS NQT test, based on the score you scored in NQT you will choose as Ninja. It offers package of 3.36 to 3.60.

Verbal Ability: In TCS NQT there are 25 questions and the given time was 75 minutes to check your proficiency on English, like easy writing and questions answering.

 

Aptitude & Reasoning Ability: Here in this Aptitude & Reasoning test the numerical and the reasoning ability sections are tested. We attached 10 set to practice yourself.

 

Programming Logic: Your knowledge of C, C++, and Java is tested in the TCS NQT Programming Logic exam, but that is not its only purpose. To answer questions like OOPS, DSA, etc., you must have a solid grasp of computer science Concepts There are a sufficient number of Data Structures Problems. To prepare you for the test, let’s first go through the fundamental guidelines

  • Data Structures:A data structure is a storage that is used to store and organize data. It is used for processing, retrieving, and storing data. There are different basic and advanced types of data structures used in almost every program or software system that has been developed.

  • Algorithms:Algorithm refers to a sequence of finite steps to solve a particular problem.The word Algorithm means ” A set of rules to be followed in calculations or other problem-solving operations ” Or ” A procedure for solving a mathematical problem in a finite number of steps that are frequently by recursive operations “.

  • OOPS Concepts: As the name suggests, Object-Oriented Programming or OOPs refers to languages that use objects in programming, they use objects as a primary source to implement what is to happen in the code.Object-oriented programming aims to implement real-world entities like inheritance, hiding, polymorphism etc.

 

Coding Section: In the Coding section of TCS NQT, they asked questions from the below-mentioned topics:

Arrays: Here is the collection of the frequently asked interviews question on arrays in the TCS hiring test.

Problems

Practice

Non-Repeating Element

Solve

Program for array rotation

Solve

Equilibrium index of an array

Solve

Print array after it is right rotated K times

Solve

Array is a subset of another array

Solve

Find all symmetric pairs from a pairs of array

Solve

Counting Rock Samples

Solve

Reverse an array or string

Solve

Mean and median of an unsorted array

Solve

Smallest and second smallest elements in an array

Solve

Largest element in an array

Solve

Second largest element in an array

Solve

Counting frequencies of array elements

Solve

Program for addition of two matrices

Solve

Sort a K-Increasing-Decreasing Array

Solve

Sum of elements in a given array

Solve

Remove duplicates from the sorted array

Solve

Program to check if an array is sorted or not

Solve

Remove duplicates from an unsorted array using Map data structure

Solve

Block swap algorithm for array rotation

Solve

Average of an array (Iterative and Recursive)

Solve

Add an element to an Array

Solve

Find duplicates in O(n) time and O(1) extra space

Solve

Find maximum possible stolen value from houses

Solve

Replace each element of the Array with it’s corresponding rank

Solve

Sort elements by frequency

Solve

Sort an array according to the order defined by another array

Solve

Maximum Product Subarray

Solve

String: Here is the collection of the frequently asked interviews question on strings in the TCS hiring test.

Problems Practice
Count vowels, consonants, digits, and special characters in a string

Solve

Given String is Palindrome or not

Solve

ASCII Value of a character

Solve

Remove vowels from a String

Solve

Remove spaces from a given string

Solve

Remove character

Solve

Remove all characters other than alphabets

Solve

Reverse a string

Solve

Sum of numbers in string

Solve

Capitalize first and last character of each word

Solve

Frequency of characters in a string

Solve

Non Repeating Character

Solve

Smallest and Largest Word in a String

Solve

Strings are anagram of each other

Solve

Sort string of characters

Solve

Convert characters of a string to opposite case

Solve

Count words in a given string

Solve

Encrypt the string

Solve

Remove duplicates from a given string

Solve

Duplicates in the input string

Solve

Lexicographically next string

Solve

Remove brackets from an algebraic expression

Solve

Check if a string is substring of another

Solve

Reverse words in a given string

Solve

Common subsequence in two strings

Solve

One string contains wildcard characters

Solve

Number Series: While a sequence is a list of items arranged in a sequential way following a particular relation, a series is the cumulative sum of a given sequence of terms.

Problems Practice
Prime Numbers

Solve

Sum of arithmetic series

Solve

Sum of geometric series

Solve

All divisors of a natural number

Solve

Replace all ‘0’ with ‘5’ in an input Integer

Solve

Number is Positive, Negative, Odd, Even, Zero

Solve

Harshad (Or Niven) Number

Solve

Program to find GCD or HCF of two numbers

Solve

LCM of two numbers

Solve

Check if a number is a strong number or not

Solve

Check if a given year is leap year

Solve

Reverse digits of a number

Solve

Program to add two fractions

Solve

Sum of digits of a number

Solve

Find all factors of a natural number

Solve

Prime factors of a given number

Solve

Kth largest factor of number N

Solve

Given number is even or odd

Solve

Perfect Number

Solve

Palindromes in a given range

Solve

Armstrong Numbers

Solve

Abundant Number

Solve

Sum of first n natural numbers

Solve

Sum of all natural numbers in range L to R

Solve

Primitive Abundant Number

Solve

Count ways to reach the n’th stair

Solve

Count prime numbers that can be expressed as sum of consecutive prime numbers

Solve

Fibonacci numbers

Solve

Check if a number is Palindrome

Solve

Largest and smallest digit of a number

Solve

Square Free Number

Solve

Permutations to arrange N persons around a circular table

Solve

Can a number be expressed as a sum of two prime numbers

Solve

Area of a circle

Solve

Roots of Quadratic equation

Solve

Conversions: We need to write a program to convert the given number(specific number system) into an equivalent number(specific number system).

Problems Practice
Convert Binary to Decimal

Solve

Convert binary to octal

Solve

Decimal to Binary conversion

Solve

Convert decimal to octal

Solve

Convert Octal to binary

Solve

Convert Octal to decimal

Solve

Convert a given number to words

Solve

Sorting Algorithm: Sorting Algorithm is used to rearrange a given array or list elements according to a comparison operator on the elements.

Problems Practice
Bubble Sort

Solve

Selection Sort

Solve

Insertion Sort

Solve

Quick Sort

Solve

Merge Sort

Solve

Radix Sort

Solve

Counting Sort

Solve



Next Article

Similar Reads

Apple SDE Sheet: Interview Questions and Answers
Apple is one of the world's favorite tech brands, holding a tight spot as one of the tech Big Four companies. Apple products have found their way into seemingly every household. The company only hires the best of the best and looks for whip-smart people who will push the envelope when it comes to what personal technology can do. This sheet will ass
11 min read
Amazon SDE Sheet: Interview Questions and Answers
Amazon SDE sheet is the collection of the most important topics or the most frequently asked question in Amazon Software Development Engineer Interviews. Here we have collected all the interview questions and answers to land a job on Amazon table{ display: inline-table !important; width: 100% !important; } th:nth-child(2) { width: 20% !important; }
10 min read
HCL SDE Sheet: Interview Questions and Answers
HCL Technologies Ltd is one of the leading global IT services companies that helps global enterprises re-imagine and transform their businesses through Digital technology transformation. The company is primarily engaged in providing a range of software services business process outsourcing and infrastructure services. Here we have collected all the
6 min read
Cognizant SDE Sheet: Interview Questions and Answers
Cognizant is an American multinational information technology services and consulting company, headquartered in new jersey, US. It has broadly two units. The vertical units focus on specific industries. This sheet will assist you to land a job at cognizant, we have compiled all the interview questions and answers. table{ display: inline-table !impo
7 min read
Wipro SDE Sheet: Interview Questions and Answers
Wipro Coding Sheet is prepared to crack Wipro interviews. Wipro Limited is a leading technology, service, and consulting company that thrives on innovation. It has over 250,000 dedicated employees serving clients across 66 countries. This sheet will assist you to land a job at Wipro, we have compiled all the interview questions and answers. table{
7 min read
Facebook(Meta) SDE Sheet: Interview Questions and Answers
Facebook(Meta) is an online social media and social networking service owned by the American company Meta Platforms. It employs around 72000 people across the globe and is ranked 27th in the fortune 500 rankings. This sheet will assist you to land a job at Facebook we have compiled all the interview questions and answers.. table{ display: inline-ta
9 min read
Google SDE Sheet: Interview Questions and Answers
Google is an American multinational technology company specializing in search engine technology, online advertising, cloud computing, computer software, quantum computing, e-commerce, and artificial intelligence. It is a dream of many people to work for Google. This sheet will assist you to land a job at Google, we have compiled all the interview q
8 min read
Netflix SDE Sheet: Interview Questions and Answers
Netflix, the top video streaming service in the world was founded in 1997 and started out by shipping DVDs to customers by mail. Now it consumes more than 15 percent of the world's internet bandwidth and has subscribers in more than 190 countries. This sheet will assist you to land a job at Netflix, we have compiled all the interview questions and
9 min read
Top 50 Android Interview Questions & Answers - SDE I to SDE III
In this COVID-19 pandemic, the world is moving from the "work from office" culture to the "work from home" culture. Also, people across the world are now depending on apps whether it's for daily tasks like shopping, commuting, paying bills, or it's getting information and staying connected with one another. Because of this reason, companies are not
15+ min read
SDE SHEET - A Complete Guide for SDE Preparation
What is SDE Sheet? SDE Sheet is a curated list of the most popular questions among important topics, such as Data Structure and Algorithms (DSA), CS Subjects, Aptitude, etc, asked in the Software Development Engineer Interviews. How is this SDE sheet different or better from others? This sheet contains a wide range of coding questions from differen
15 min read