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

Filter interviews by

TCS DOT NET Developer Interview Questions, Process, and Tips

Updated 10 Dec 2024

Top TCS DOT NET Developer Interview Questions and Answers

View all 16 questions

TCS DOT NET Developer Interview Experiences

18 interviews found

Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(2 Questions)

  • Q1. Difference between web.config and Machine.config
  • Ans. 

    web.config is specific to a web application and overrides settings in Machine.config

    • web.config is specific to a web application, while Machine.config is at the machine level

    • web.config can override settings in Machine.config for a specific application

    • Machine.config is located in the .NET framework folder, while web.config is in the application folder

  • Answered by AI
  • Q2. Explain about state management
  • Ans. 

    State management in .NET refers to the process of storing and retrieving data during the lifecycle of an application.

    • State management can be achieved using various techniques such as session state, view state, cookies, and query strings.

    • Session state allows storing user-specific data across multiple pages during a user session.

    • View state stores the state of the page and its controls between postbacks.

    • Cookies can be use...

  • Answered by AI

Skills evaluated in this interview

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

I applied via Approached by Company and was interviewed in Mar 2024. There was 1 interview round.

Round 1 - Technical 

(5 Questions)

  • Q1. It was a combination of two interviews in one. Technical and Managerial interview was taken in one call and it was 1.5 hr long. It consisted of some technical and managerial level questions and with the di...
  • Q2. Explain Solid Principles
  • Ans. 

    Solid Principles are a set of five design principles for writing clean, maintainable, and scalable code.

    • Single Responsibility Principle (SRP) - A class should have only one reason to change.

    • Open/Closed Principle (OCP) - Classes should be open for extension but closed for modification.

    • Liskov Substitution Principle (LSP) - Objects of a superclass should be replaceable with objects of its subclasses without affecting the ...

  • Answered by AI
  • Q3. Questions about scenarios in polymorphism
  • Q4. Dependency Injection and how to implement that.
  • Ans. 

    Dependency Injection is a design pattern where dependencies are injected into a class rather than created within the class.

    • Dependency Injection helps in achieving loose coupling between classes.

    • It allows for easier testing by enabling mocking of dependencies.

    • There are different ways to implement Dependency Injection such as constructor injection, property injection, and method injection.

    • Popular DI containers/frameworks

  • Answered by AI
  • Q5. Configuration where do we store in application.
  • Ans. 

    Configuration settings can be stored in various places such as appsettings.json, environment variables, database, or Azure Key Vault.

    • appsettings.json file in ASP.NET Core projects

    • Environment variables for sensitive data

    • Database for dynamic configuration

    • Azure Key Vault for secure storage

  • Answered by AI

Skills evaluated in this interview

DOT NET Developer Interview Questions Asked at Other Companies

asked in Infosys
Q1. What is the difference between windows application development an ... read more
Q2. What is Trigger,Store procedure, join in sql query and their synt ... read more
asked in Infosys
Q3. What kind of database you used in projects
Q4. How many ways are there to send data to controller from View?
asked in Nagarro
Q5. Can Two Primary keys can be made possible in Sql Table ?

DOT NET Developer Interview Questions & Answers

user image Rushikesh Kulkarni

posted on 18 Nov 2024

Interview experience
5
Excellent
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
No response

I applied via Walk-in and was interviewed in May 2024. There was 1 interview round.

Round 1 - Technical 

(3 Questions)

  • Q1. General oops , multiple inheritance
  • Q2. Reverse a string
  • Ans. 

    To reverse a string, iterate through the characters in the string and build a new string in reverse order.

    • Create a new empty string to store the reversed string

    • Iterate through the characters of the original string from the end to the beginning

    • Append each character to the new string

    • Return the reversed string

  • Answered by AI
  • Q3. Routing in .net mvc
  • Ans. 

    Routing in .NET MVC is the process of mapping URLs to controller actions.

    • Routing is defined in the RouteConfig.cs file in the App_Start folder.

    • Routes are defined using the MapRoute method, which takes parameters like URL pattern, default values, and constraints.

    • Routes are matched in the order they are defined, so the most specific routes should be placed at the top.

    • Route parameters are passed to controller actions as m...

  • Answered by AI

Skills evaluated in this interview

Interview experience
3
Average
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via LinkedIn and was interviewed in May 2024. There was 1 interview round.

Round 1 - Technical 

(2 Questions)

  • Q1. Explain D in SOLID principle
  • Ans. 

    D stands for Dependency Inversion Principle in SOLID principle

    • High-level modules should not depend on low-level modules. Both should depend on abstractions.

    • Abstractions should not depend on details. Details should depend on abstractions.

    • Example: Instead of directly calling a database connection in a class, use an interface to abstract the database connection.

    • Example: Using dependency injection to inject dependencies in...

  • Answered by AI
  • Q2. Details about the projects I worked on

TCS interview questions for designations

 Dot Net Fullstack Developer

 (2)

 Dot Net Developer Lead

 (1)

 Dot Net Lead

 (1)

 Senior .NET Developer

 (4)

 .NET Software Developer

 (2)

 Junior .NET Developer

 (1)

 NET

 (1)

 Developer

 (45)

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

(2 Questions)

  • Q1. What is a micro service
  • Ans. 

    A micro service is a small, independent, and loosely coupled service that performs a specific business function.

    • Micro services are designed to be small and focused on a single task or business function.

    • They communicate with each other through APIs.

    • Micro services can be independently deployed, scaled, and maintained.

    • Examples include user authentication service, payment processing service, and notification service.

  • Answered by AI
  • Q2. Authentication and authorisation process

Skills evaluated in this interview

Get interview-ready with Top TCS Interview Questions

DOT NET Developer Interview Questions & Answers

user image Arun Kumar.V

posted on 28 May 2024

Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
No response

I applied via Walk-in and was interviewed in Apr 2024. There were 2 interview rounds.

Round 1 - Technical 

(2 Questions)

  • Q1. What is Index in SQL ?
  • Ans. 

    An index in SQL is a data structure that improves the speed of data retrieval operations on a database table.

    • Indexes are used to quickly locate data without having to search every row in a table.

    • They can be created on one or more columns in a table.

    • Examples of indexes include primary keys, unique constraints, and non-unique indexes.

  • Answered by AI
  • Q2. How you authenticate api
  • Ans. 

    API authentication can be done using various methods like OAuth, API keys, JWT tokens, etc.

    • Use OAuth for secure authorization

    • Implement API keys for simple authentication

    • Utilize JWT tokens for stateless authentication

    • Consider using HMAC for message integrity

  • Answered by AI
Round 2 - Technical 

(1 Question)

  • Q1. How we implement dependence injection ?
  • Ans. 

    Dependency injection is a design pattern where objects are passed their dependencies rather than creating them internally.

    • Create an interface for the dependency

    • Implement the interface in a separate class

    • Pass the dependency to the class that needs it

  • Answered by AI

Skills evaluated in this interview

DOT NET Developer Jobs at TCS

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

(1 Question)

  • Q1. Difference between abstract class and interfaces
  • Ans. 

    Abstract class can have implementation details, interfaces cannot. Classes can implement multiple interfaces but only inherit from one abstract class.

    • Abstract class can have method implementations, interfaces cannot.

    • Classes can implement multiple interfaces but can only inherit from one abstract class.

    • Interfaces are used to define a contract for classes to implement, while abstract classes can provide a partial impleme

  • Answered by AI

Skills evaluated in this interview

DOT NET Developer Interview Questions & Answers

user image chandrakant mani

posted on 17 Oct 2024

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

(1 Question)

  • Q1. Design pattern,SOLID principle.
Interview experience
5
Excellent
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Walk-in and was interviewed in Mar 2024. There were 2 interview rounds.

Round 1 - Technical 

(2 Questions)

  • Q1. Partial view, clustered indexed vs non clustered indexes
  • Q2. Interface and abstract class
Round 2 - HR 

(2 Questions)

  • Q1. Expected CTC per annum
  • Ans. 

    Depends on the job role, company size, location, and benefits package.

    • Consider the job role and responsibilities - more senior roles typically command higher salaries.

    • Research the average salary for DOT NET Developers in your location.

    • Take into account the size and reputation of the company - larger companies may offer higher salaries.

    • Factor in any additional benefits such as healthcare, bonuses, or stock options.

    • Be pr...

  • Answered by AI
  • Q2. Salary negotiation and location
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
No response

I applied via LinkedIn and was interviewed in Feb 2024. There was 1 interview round.

Round 1 - Technical 

(2 Questions)

  • Q1. Oops concept and related problems
  • Q2. Dependency injection

TCS Interview FAQs

How many rounds are there in TCS DOT NET Developer interview?
TCS interview process usually has 1-2 rounds. The most common rounds in the TCS interview process are Technical, HR and Coding Test.
How to prepare for TCS DOT NET Developer 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 ASP.Net, .Net, C#, MVC and SQL Server.
What are the top questions asked in TCS DOT NET Developer interview?

Some of the top questions asked at the TCS DOT NET Developer interview -

  1. Dependency Injection and how to implement th...read more
  2. Configuration where do we store in applicati...read more
  3. How we implement dependence injectio...read more
How long is the TCS DOT NET Developer interview process?

The duration of TCS DOT NET Developer interview process can vary, but typically it takes about less than 2 weeks to complete.

Tell us how to improve this page.

TCS DOT NET Developer Interview Process

based on 14 interviews

2 Interview rounds

  • Technical Round - 1
  • Technical Round - 2
View more
TCS DOT NET Developer Salary
based on 518 salaries
₹2.5 L/yr - ₹10.6 L/yr
24% more than the average DOT NET Developer Salary in India
View more details

TCS DOT NET Developer Reviews and Ratings

based on 25 reviews

4.3/5

Rating in categories

4.1

Skill development

4.6

Work-life balance

3.2

Salary

4.7

Job security

4.3

Company culture

3.1

Promotions

4.2

Work satisfaction

Explore 25 Reviews and Ratings
Asp Dot Net Developer

Chennai,

Cochin/Ernakulam/Kochi

+1

4-9 Yrs

₹ 5-15 LPA

Explore more jobs
System Engineer
1.1L salaries
unlock blur

₹1 L/yr - ₹9 L/yr

IT Analyst
66.9k salaries
unlock blur

₹5.1 L/yr - ₹16 L/yr

AST Consultant
51.4k salaries
unlock blur

₹8 L/yr - ₹25 L/yr

Assistant System Engineer
29.8k salaries
unlock blur

₹2.2 L/yr - ₹5.7 L/yr

Associate Consultant
29.3k salaries
unlock blur

₹9 L/yr - ₹32 L/yr

Explore more salaries
Compare TCS with

Amazon

4.1
Compare

Wipro

3.7
Compare

Infosys

3.6
Compare

Accenture

3.8
Compare
Did you find this page helpful?
Yes No
write
Share an Interview