Skip to main content

TCS Interview Experience

TCS interview experience.

TCS Interview Questions and Answers for Freshers 


TCS Interview Experience By Ganesh Jondhalekar is selected for the Ninja package in TCS.


Name: Ganesh Jondhalekar


Time: 8 December 2020 9:30 Am.


Type: Technical+ HR + Personal


Technical Questions-


Three interviewers joined the meeting ,one mam and two sir and start the interview.


Introduction.

2. Explain projects done. I explain my third-year project “Attendance System Using Face Recognition“


3. Technologies used in the project.


4. Your role in the project. I told them I worked as a Backend Developer. So They ask me that you worked as a backend developer so you know SQL. I said Yes. Then they ask me to follow two commands on SQL.


5. SQL query to print the highest salary from emp table. I answer this command in the chatbox properly.


6. SQL query to print second highest salary from emp table. I get stuck and wait for 10 seconds. I did not answer that query properly but I told them I can use a nested query here.


7. In my resume I have added the snake game project. They ask me snake game project is created by you or it group project. It was my self-project so I tell them it made by me in my second year using pygame module in python.


8. When you learn python? I told them that in second year there was no subject like python to study so I decided to learn python by self-study. I learn python completely in my second year by using Youtube channels.


HR and Personal Questions-


1. How You work as a team leader?


2. Any difficult situation during the project and how u face it.


3. Consider in your team there are some members which don’t work properly. How you will manage their work. Or how you manage such members


4. Are you able to relocate to foreign countries?


5. Will you do the night shift?


6. will u work on the weekend?


7. If the company said u to work on weekends then how would you manage your family during work.


8. who is the CFO of the TCS? I did not know the CFO of TCS So they ask me who is CEO of TCS. I answered it.


At last Mam say we are done with you Ganesh. She ask me that have you any question from your side? I ask her tree questions as bellow,


1. How you manage your work during the covid pandemic? She spoke on that subject for 5-10 minutes.


2. If I selected in this Interview, how will be work that is work from home(online) or offline.? She told me we can’t answer this question because it will depend on the covid situation.


3. Is your company work on AI, ML, Deep Learning? Can I get a chance to work on such projects? She told me we work on AI, ML, DL. Based on your performance In training project will be allocated.


At last One Sir said me that we feel happy during conversation with you. Thank You Ganesh… I said Thank you sir ,mam and sir.


On 25 December I get mail that You have selected for TCS.


Data structure interview questions


C Interview questions


TCS NQT-2021 coding questions


Snake game using python


c interview questions


 Ninja Interview questions tcs interview 2021 tcs interview experience TCS Ninja 2021


Comments

Favourite post

Part 2 : TCS DCA python coding questions

TCS wings1 DCA python coding TCS elevate wings1 coding questions This post contains only coding questions asked in TCS digital wings1 or tcs elevate wings1 exam. If anyone want coding answer of these questions please comment me or reach me through email provided. Given a string str which consists of only 3 letters representing the color,(H) Hue, (S) Saturation, (L) Lightness, called HSL colors. The task is to count the occurrence of ordered triplet “H, S, L” in a given string and give this count as the output. This question was asked in April 21 Digital Capababilty Assessment Examples: A) Input HHSL Output 2 Explanation : There are two triplets of RGB in the given string: H at index O, S at index 2 and Lat index 3 forms one triplet of HSL. H at index 1, S at index 2 and Lat index 3 forms the second triplet of HSL. B) Input:   SHL Output: 0 Explanation : No triplets exists. In this 3 Palindrome, Given an input string word, split the string into exactly 3 palindromic substrings. Work...

Part 1 : TCS DCA python coding questions

TCS wings1 DCA python coding TCS elevate wings1 coding questions This post contains only coding questions asked in TCS digital wings1 or tcs elevate wings1 exam. If anyone want coding answer of these questions please comment me or reach me through email provided. Find how many Sexy Prime Numbers in a given range k and p.  Sexy prime means the prime numbers that differ from each other by 6. Where difference between two sexy prime numbers is 6. Constraint: 2 <=p<k<= 1000,000,000. Sample Input: 4  40 Output: 7 Explanation: [5,11] [7,13] [11,17] [13,19] [17,23]  [23,29] [31,37] Problem Description -: Given two non-negative integers n1 and n2, where n1 For example: Suppose n1=11 and n2=15. There is the number 11, which has repeated digits, but 12, 13, 14 and 15 have no repeated digits. So, the output is 4. Example1: Input: 11 — Vlaue of n1 15 — value of n2 Output: 4 Example 2: Input: 101 — value of n1 200 — value of n2 Output: 72 Consider the string S1 = 321 All char...

Calculator program using python tkinter

Project Name:- Simple Calculator Software using Python Tkinter. Dependencies:-                           1)Install  Tkinter- https://www.techinfected.net/2015/09/how-to-install-and-use-tkinter-in-ubuntu-debian-linux-mint.html                                 2)Install Math Library- for python3- pip3 install math  for python2- pip install math  ******************************************//************************************************************************ from tkinter import * from math import * class cal: def press( self ,n): self .text.insert(INSERT,n) def dl( self ): self .text.delete( 1.0 , 2.0 ) def equal( self ): self .exp= self .text.get( 1.0 ,END) try : self .result= eval ( self .exp) self .text.delete( 1.0 , 2.0 ) ...