Upload Button Icon Add office photos
Engaged Employer

i

This company page is being actively managed by TCS Team. If you also belong to the team, you can get access from here

TCS Verified Tick

Compare button icon Compare button icon Compare
3.7

based on 85.4k Reviews

Filter interviews by

TCS Dot Net Lead Interview Questions and Answers

Updated 14 Aug 2024

TCS Dot Net Lead Interview Experiences

1 interview found

Dot Net Lead Interview Questions & Answers

user image Anonymous

posted on 14 Aug 2024

Interview experience
4
Good
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
-

I applied via Approached by Company and was interviewed in Feb 2024. There were 2 interview rounds.

Round 1 - Technical 

(2 Questions)

  • Q1. .net core middleware implementation and api authentication using JWT
  • Q2. Filters vs middleware in .net core
  • Ans. 

    Filters and middleware in .NET Core serve similar purposes but have different implementations.

    • Filters are used to run logic before and after an action method in MVC, while middleware is used to handle requests and responses in the pipeline.

    • Filters are specific to MVC, while middleware can be used in any type of .NET Core application.

    • Filters are applied at the controller or action level, while middleware is applied glob...

  • Answered by AI
Round 2 - Technical 

(2 Questions)

  • Q1. Microservice architecture and implementation
  • Ans. 

    Microservice architecture involves breaking down a large application into smaller, independent services that communicate with each other.

    • Each microservice is responsible for a specific function or feature of the application.

    • Microservices communicate with each other through APIs.

    • They can be developed, deployed, and scaled independently.

    • Microservices allow for better fault isolation and improved scalability.

    • Examples of c...

  • Answered by AI
  • Q2. Multithreading concepts like mutex, semaphore etc

Skills evaluated in this interview

Interview questions from similar companies

Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(1 Question)

  • Q1. Why use Web API?
  • Ans. 

    Web API allows for communication between different systems over the internet using standard protocols like HTTP.

    • Enables communication between different systems over the internet

    • Uses standard protocols like HTTP for communication

    • Allows for easy integration with various platforms and devices

    • Facilitates the development of RESTful services

    • Provides flexibility and scalability for applications

  • Answered by AI

Skills evaluated in this interview

Interview experience
1
Bad
Difficulty level
Moderate
Process Duration
4-6 weeks
Result
No response

I applied via Naukri.com and was interviewed in Dec 2024. There was 1 interview round.

Round 1 - Technical 

(2 Questions)

  • Q1. What is the repository design pattern?
  • Q2. What is the difference between IEnumerable and IQueryable?

Interview Preparation Tips

Interview preparation tips for other job seekers - I was ghosted after successfully completing all interview rounds and finalizing the salary package.
Interview experience
4
Good
Difficulty level
Easy
Process Duration
2-4 weeks
Result
No response

I applied via Naukri.com and was interviewed in Dec 2024. There was 1 interview round.

Round 1 - Technical 

(5 Questions)

  • Q1. Demonstrate Function Overriding.
  • Q2. Linq query with order by
  • Q3. What is Out Parameter with example
  • Q4. Authentication and autherization, JWT Tocken
  • Q5. Reflection in C#

Interview Preparation Tips

Topics to prepare for Accenture Dot Net Fullstack Developer interview:
  • OOPS
  • SQL
  • Javascript
Interview preparation tips for other job seekers - Basics of OOPS SQL JS will do.
Interview experience
5
Excellent
Difficulty level
Hard
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via Walk-in

Round 1 - Technical 

(2 Questions)

  • Q1. What are the types and number of constraints in your specific context?
  • Ans. 

    There are various types of constraints in DOT NET development, including primary key, foreign key, unique, check, and default constraints.

    • Primary key constraints ensure each record in a table is unique.

    • Foreign key constraints enforce referential integrity between tables.

    • Unique constraints ensure that all values in a column are distinct.

    • Check constraints validate the data before it is inserted or updated.

    • Default constra...

  • Answered by AI
  • Q2. What is the difference between an independent class and an abstract class?
  • Ans. 

    Independent class can be instantiated while abstract class cannot be instantiated directly.

    • Independent class can be directly instantiated using the 'new' keyword.

    • Abstract class cannot be instantiated directly, it can only be used as a base class for other classes.

    • Independent class does not require any derived class to implement its members.

    • Abstract class can have abstract methods that must be implemented by derived cla

  • Answered by AI
Round 2 - Technical 

(1 Question)

  • Q1. Technical coding with the technical team
Round 3 - HR 

(1 Question)

  • Q1. What are your reasons for changing your job?
  • Ans. 

    Seeking new challenges, growth opportunities, and a better work-life balance.

    • Looking for new challenges and opportunities to learn and grow.

    • Seeking a better work-life balance.

    • Interested in working with new technologies or in a different industry.

    • Wanting to advance my career and take on more responsibilities.

    • Company restructuring or changes in management.

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - It's important to prepare thoroughly in order to succeed in the interview.
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via Company Website and was interviewed in Nov 2024. There were 2 interview rounds.

Round 1 - Technical 

(2 Questions)

  • Q1. How to call abstract constructor
  • Q2. Difference between generic list and list which is faster
Round 2 - Coding Test 

Write prime number code

Interview Preparation Tips

Topics to prepare for Wipro DOT NET Developer interview:
  • C#
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
No response

I applied via Recruitment Consulltant and was interviewed in Aug 2024. There was 1 interview round.

Round 1 - One-on-one 

(5 Questions)

  • Q1. Where are Logic App logs stored?
  • Ans. 

    Logic App logs are stored in Azure Monitor Logs (formerly known as Log Analytics).

    • Logic App logs are stored in Azure Monitor Logs, which is a centralized log storage and analytics service in Azure.

    • Logs can be viewed and analyzed using Azure Monitor Logs queries.

    • Logs can also be integrated with other Azure services for monitoring and alerting purposes.

  • Answered by AI
  • Q2. How to get the 5th top position data in Sql?
  • Ans. 

    Use the OFFSET and FETCH clauses in SQL to get the 5th top position data.

    • Use the ORDER BY clause to sort the data in descending order.

    • Use the OFFSET clause to skip the first 4 rows.

    • Use the FETCH clause to retrieve only the next row after skipping the first 4 rows.

  • Answered by AI
  • Q3. How do you implement custom middleware in .net core?
  • Ans. 

    Custom middleware in .NET Core can be implemented by creating a class that implements the IMiddleware interface and adding it to the application pipeline.

    • Create a class that implements the IMiddleware interface

    • Implement the InvokeAsync method in the middleware class to handle the request processing logic

    • Add the custom middleware to the application pipeline in the Configure method of the Startup class

  • Answered by AI
  • Q4. Explain Authentication & Authorization in asp.net core?
  • Ans. 

    Authentication verifies the identity of a user, while authorization determines what resources a user can access.

    • Authentication confirms the identity of a user through credentials like username and password.

    • Authorization determines the permissions and access levels of a user based on their authenticated identity.

    • In ASP.NET Core, authentication is handled through middleware like Identity, OAuth, or JWT tokens.

    • Authorizati...

  • Answered by AI
  • Q5. Explain session management in asp.net core?
  • Ans. 

    Session management in ASP.NET Core involves storing and retrieving user-specific data during a user's visit to a website.

    • Session data is stored on the server side by default in ASP.NET Core

    • Session data can be accessed and manipulated using the HttpContext.Session property

    • Session data can be configured to use different storage providers such as in-memory, distributed cache, or SQL Server

    • Session data is typically used to...

  • Answered by AI

Interview Preparation Tips

Topics to prepare for NTT Data Dot Net Fullstack Developer interview:
  • Dot Net
  • Azure
  • Angular
Interview preparation tips for other job seekers - Prepare from begginer to expert level on the JD

Skills evaluated in this interview

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

I applied via Job Portal and was interviewed in Nov 2024. There were 2 interview rounds.

Round 1 - Coding Test 

I would like simple test

Round 2 - HR 

(5 Questions)

  • Q1. I would like to lisen the words of company maganement .. And the process of company rules and regulations ..
  • Q2. I will occupy the group of my team to secrue the entire the company to first stage
  • Q3. I want to.Get a job inMahindra
  • Q4. I didn't learn the computertyping but will learn definitely.. in tech Mahindr company basics
  • Q5. I am a student degree first year.. ButI would like work in techMahindra..

Interview Preparation Tips

Interview preparation tips for other job seekers - I say hole job seekers
The tech Mahindra was better than the future
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Naukri.com and was interviewed in Apr 2024. There were 7 interview rounds.

Round 1 - Aptitude Test 

An aptitude is a component of a competence to do a certain kind of work at a certain level. Outstanding aptitude can be considered "talent", or "skill". Aptitude is inborn potential to perform certain kinds of activities, whether physical or mental, and whether developed or undeveloped

Round 2 - Coding Test 

Coding is the process of allowing humans to speak to computers. As computers only understand binary language — a series of zeros and ones — humans need to use a programming language as a translator of sorts.

Round 3 - Group Discussion 

Group discussion is a discussion between a group of participants on a given subject. A group discussion typically forms a part of the selection process used by organisations and educational institutions. The candidates talk about the given topic to present facts, opinions and conclusions.

Round 4 - Assignment 

An assignment is a task that someone in authority has asked you to do. The word assignment is just the noun form of the common verb assign, which you use when you want to give someone a duty or a job. When you assign something, that something is called an assignment.

Round 5 - Case Study 

Case study is an appropriate research design when you want to gain concrete, contextual, in-depth knowledge about a specific real-world subject. It allows you to explore the key characteristics, meanings, and implications of the case. Case studies are often a good choice in a

Round 6 - HR 

(3 Questions)

  • Q1. Human resources (HR) is the division of a business responsible for finding, recruiting, screening, and training job applicants.
  • Q2. Finding, recruiting, screening, and training job applicants
  • Q3. Human resources (HR) is the division of a business responsible for finding, recruiting, screening, and training job applicants. HR departments also handle employee compensation, benefits, and terminations.
Round 7 - Technical 

(2 Questions)

  • Q1. Examples of more advanced technical skills that a job might require include programming languages, technical writing, or data analysis. Unlike workplace skills, also called soft skills, such as communicati...
  • Ans. 

    Technical skills often require specific education, such as programming languages, technical writing, or data analysis.

    • Programming languages: Examples include Java, Python, C++, etc.

    • Technical writing: Ability to write technical documentation, manuals, and reports.

    • Data analysis: Skills in analyzing and interpreting data using tools like Excel, SQL, or R.

  • Answered by AI
  • Q2. Programming languages, technical writing, or data analysis
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Naukri.com and was interviewed in Sep 2024. There was 1 interview round.

Round 1 - Technical 

(2 Questions)

  • Q1. General questions on ASP.NET, Projects
  • Q2. Questions from my resume and current project

TCS Interview FAQs

How many rounds are there in TCS Dot Net Lead interview?
TCS interview process usually has 2 rounds. The most common rounds in the TCS interview process are Technical.
How to prepare for TCS Dot Net Lead interview?
Go through your CV in detail and study all the technologies mentioned in your CV. Prepare at least two technologies or languages in depth if you are appearing for a technical interview at TCS. The most common topics and skills that interviewers at TCS expect are .Net, .Net Core, ASP.Net and ADO.Net.
What are the top questions asked in TCS Dot Net Lead interview?

Some of the top questions asked at the TCS Dot Net Lead interview -

  1. Microservice architecture and implementat...read more
  2. Filters vs middleware in .net c...read more
  3. .net core middleware implementation and api authentication using ...read more

Tell us how to improve this page.

Interview Questions from Similar Companies

Accenture Interview Questions
3.9
 • 7.9k Interviews
Infosys Interview Questions
3.7
 • 7.4k Interviews
Wipro Interview Questions
3.7
 • 5.5k Interviews
Cognizant Interview Questions
3.8
 • 5.5k Interviews
Capgemini Interview Questions
3.8
 • 4.7k Interviews
Tech Mahindra Interview Questions
3.6
 • 3.7k Interviews
HCLTech Interview Questions
3.5
 • 3.7k Interviews
Genpact Interview Questions
3.9
 • 3k Interviews
LTIMindtree Interview Questions
3.9
 • 2.8k Interviews
IBM Interview Questions
4.1
 • 2.3k Interviews
View all
TCS Dot Net Lead Salary
based on 4 salaries
₹7.2 L/yr - ₹16 L/yr
31% less than the average Dot Net Lead Salary in India
View more details
System Engineer
1.1L salaries
unlock blur

₹1 L/yr - ₹9 L/yr

IT Analyst
67.7k salaries
unlock blur

₹5.1 L/yr - ₹16 L/yr

AST Consultant
51k salaries
unlock blur

₹8 L/yr - ₹25 L/yr

Assistant System Engineer
29.8k salaries
unlock blur

₹2.2 L/yr - ₹5.6 L/yr

Associate Consultant
28.6k salaries
unlock blur

₹8.9 L/yr - ₹31.8 L/yr

Explore more salaries
Compare TCS with

Amazon

4.1
Compare

Wipro

3.7
Compare

Infosys

3.7
Compare

Accenture

3.9
Compare

Calculate your in-hand salary

Confused about how your in-hand salary is calculated? Enter your annual salary (CTC) and get your in-hand salary
Did you find this page helpful?
Yes No
write
Share an Interview