Message on Whatsapp 8879355057 for DSA(OA + Interview) + Fullstack Dev Training + 1-1 Personalized Mentoring to get 10+LPA Job
0 like 0 dislike
840 views
in Interview-Experiences by Expert (34,270 points)
edited by | 840 views

1 Answer

0 like 0 dislike
Best answer

I got the results of the NQT exam after a few weeks. There were two interviews, which were conducted on the same day. I first received my Technical Interview link on my email.  The round was conducted on Microsoft Teams. The interviewer asked me a lot of programming and technical questions.

ROUND 2 :- TCS Technical  Interview

Question 1.Introduce yourself.

 

Question 2.What was your project? Explain in detail.

I explained about my project and she cross examined me on my project topics, especially on the output and the technologies which I had used.

Question 3. Which is your preferred programming language?

I replied Python.

 

Question 4.What is a list and tuple?

Lists:-

  • Lists are used to keep information within a single variable.
  • Lists in Python serve the same purpose as arrays.
  • A list, on the other hand, differs from an array in that, whereas arrays can only contain homogeneous elements, a list can store heterogeneous elements.

Tuple:-

  • Tuples are similar to lists, with the exception that tuples are not mutable.
    Tuples are preferred over lists because they can be created more quickly.

 

Question 5.What is pass and break statement ?

Pass Statement:-

The pass statement is simply a null statement. Pass statements are used to postpone compilation time.

Break Statement:-

Break is a loop control statement that is used to end a loop if the required target is satisfied.

 

Question 6. What is call by value and call by reference?

Call by value:-  Calling a method with a parameter as the value is referred to as call by value.

Call by reference:- The call by reference method sends variable values from the caller to the caller function.

 

Question 7. What is local and global variable?

Local Variable:-

These variables are defined in short blocks of code like as functions, control statement blocks, and so on. The default value of local variables is “garbage value.”

Global Variable:-

Global variables exist outside of functions and are available to all functions; their values can be altered by any function. Global value is set to zero by default.

After the technical interview was over, the interviewer gave me a link for the HR interview. The HR interview was very short and there were a few questions only.

 

ROUND 1 :- TCS HR Interview

This was also on Microsoft Teams. The questions asked here were,

Question 1. How was your technical interview?

Question 2.  What did you do during the pandemic at home?

Question 3. Will you be able to relocate?

Question 4.Any questions?

by Expert (107,890 points)