TCS Prime Interview Experience (On-Campus) Last Updated : 16 Dec, 2024 Summarize Comments Improve Suggest changes Share Like Article Like Report I recently attended the TCS Prime Interview held on my college campus. Here’s a detailed account of my experience, from the TCS NQT exam to the final HR round.TCS NQT ExamI participated in the TCS NQT exam with minimal preparation but relied on my strong understanding of DSA, which boosted my confidence. Being in the first batch of the 9 AM slot, I felt it gave me an advantage for the Prime Role selection.Exam ExperienceCoding Questions: The questions were simple, covering topics like finding the average of numbers and checking for a palindrome. However, there were technical issues with the code editor during the exam, especially for students in the morning slot, which surprisingly worked to our advantage.Aptitude, Reasoning, and Verbal Sections: These were manageable even without much preparation, and I was able to solve most questions confidently.The results were announced, and I was selected for the TCS Prime Role.Interview ProcessThe interview process consisted of two rounds:Technical and Managerial RoundHR RoundRound 1: Technical and Managerial InterviewDuring the Technical Round, I was asked the following questions:Introduce yourself.How would you rate yourself in solving DSA questions?Write the code for a recursion problem using a specific operator.Write queries related to MongoDB.Explain your latest project in detail.The Managerial Round was relatively straightforward, with questions about my family background and a few general inquiries.Round 2: HR InterviewAfter clearing the first round, I was called in for the HR Round. Here are the questions I faced:Introduce yourself.Where do you see yourself in the next five years?What are your strengths and weaknesses?Would you be open to relocation?Why do you want to join TCS?I answered these questions confidently and was selected for the role after the final round.Final ThoughtsThe entire process was a mix of challenges and opportunities. Despite the initial exam issues and minimal preparation, my strengths in coding and problem-solving helped me succeed. This experience taught me the importance of confidence, adaptability, and a positive outlook during interviews. Comment More infoAdvertise with us Next Article TCS Prime Interview Experience (On-Campus) Anonymous Improve Article Tags : Interview Experiences Experiences TCS TCS-interview-experience TCS-Ninja TCS NQT TCS Digital Experiences-QnA TCS Prime +5 More Practice Tags : TCS Similar Reads Binary Search Algorithm - Iterative and Recursive Implementation Binary Search Algorithm is a searching algorithm used in a sorted array by repeatedly dividing the search interval in half. The idea of binary search is to use the information that the array is sorted and reduce the time complexity to O(log N). Binary Search AlgorithmConditions to apply Binary Searc 15 min read Window Functions in SQL SQL window functions are essential for advanced data analysis and database management. It is a type of function that allows us to perform calculations across a specific set of rows related to the current row. These calculations happen within a defined window of data and they are particularly useful 6 min read Insertion in Linked List Insertion in a linked list involves adding a new node at a specified position in the list. There are several types of insertion based on the position where the new node is to be added:At the front of the linked list Before a given node.After a given node.At a specific position.At the end of the link 4 min read Top 30 Java 8 Interview Questions and Answers for 2025 Java 8 introduced a host of powerful features that have significantly enhanced the Java programming language. Introducing new features such as Lambda Expressions, Stream API, Functional Interfaces, the new Date and Time API, and more. As a result, Java 8 skills are highly sought after by employers i 15+ min read What is Array? Array is a linear data structure where all elements are arranged sequentially. It is a collection of elements of same data type stored at contiguous memory locations. For simplicity, we can think of an array as a flight of stairs where on each step is placed a value (let's say one of your friends). 2 min read Topic wise multiple choice questions in computer science We have covered multiple choice questions on several computer science topics like C programming, algorithms, data structures, computer networks, aptitude mock tests, etc. Practice for computer science topics by solving these practice mcq questions.This page specifically covers a lot of questions and 2 min read 50+ Common Interview Questions and Answers Common Interview Questions: Preparing for a job interview can be daunting, but being well-prepared can significantly boost your confidence and chances of success. To help you ace your next interview, here is a list of the Top 50 common interview questions for freshers/college students or experienced 15+ min read Command Line Arguments in C The most important function of C is the main() function. It is mostly defined with a return type of int and without parameters.int main() { ... }We can also give command-line arguments in C. Command-line arguments are the values given after the name of the program in the command-line shell of Operat 4 min read TCS SDE Sheet: Interview Questions and Answers 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 on 8 min read Infosys Interview Experience | SP I have applied on off-campus in June month of 2024. After 3-4 weeks, I get emails of the Shortlisted for the online test under the Infosys Campus Recruitment Program. The test date is 6 July 2024. so Infosys SP hiring asks for 3 Problems related to Data Structure and Algorithms (DSA). Problem Levels 4 min read Like