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.2k Reviews

Filter interviews by

TCS Dot Net Fullstack Developer Interview Questions and Answers

Updated 20 Nov 2024

TCS Dot Net Fullstack Developer Interview Experiences

2 interviews found

Interview experience
1
Bad
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
No response

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

Round 1 - Technical 

(2 Questions)

  • Q1. What is a tuple?
  • Ans. 

    A tuple is a data structure that stores a fixed number of elements of different data types.

    • Tuples are immutable, meaning their values cannot be changed once they are set.

    • They are commonly used to return multiple values from a function.

    • Example: (1, 'apple', True) is a tuple with an integer, string, and boolean value.

  • Answered by AI
  • Q2. AddScoped,Add transient, AddSingleton but asked in different way
Interview experience
3
Average
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via LinkedIn and was interviewed in May 2024. There were 2 interview rounds.

Round 1 - Technical 

(2 Questions)

  • Q1. Use of interface in real world
  • Ans. 

    Interfaces in real world help in achieving abstraction and decoupling, allowing for flexibility and scalability in software development.

    • Interfaces allow for multiple implementations of a common set of methods, promoting code reusability.

    • Interfaces help in achieving loose coupling between different components of a system, making it easier to maintain and extend.

    • Interfaces enable polymorphism, where objects can be treate...

  • Answered by AI
  • Q2. Asked about certifications and related questions
Round 2 - HR 

(2 Questions)

  • Q1. Why do you want to join this organisation
  • Q2. What is your Expected CTC
  • Ans. 

    My expected CTC is based on my experience, skills, and the market rate for Dot Net Fullstack Developers.

    • Consider my years of experience in Dot Net development

    • Factor in my expertise in fullstack development technologies like Angular and React

    • Research the current market rate for Dot Net Fullstack Developers in the location of the job

    • Provide a range rather than a specific number to allow for negotiation

  • Answered by AI

Dot Net Fullstack Developer Interview Questions Asked at Other Companies

Q1. What languages does support the .netframework???
Q2. What is catching in .net and types of catching?
Q3. OOPs concepts and where it was used in your previous projects you ... read more
Q4. Direct F2F with Panel +Coding evaluation during the 1hour call
asked in NTT Data
Q5. How do you implement custom middleware in .net core?

Interview questions from similar companies

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
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
3
Average
Difficulty level
Moderate
Process Duration
-
Result
-

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

Round 1 - Technical 

(1 Question)

  • Q1. Questions from, Architecture, C#, LINQ, SQL, API, Routing, Authentications, Angular framework structure, data pass between parent and client, Lifecycle Hooks, .Net core vs .Net framework, Middleware, micr...

Interview Preparation Tips

Interview preparation tips for other job seekers - Go through all the basics that you keep on avoid.
Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(2 Questions)

  • Q1. Custom middleware
  • Q2. Routing explained
Round 2 - Technical 

(1 Question)

  • Q1. Print “hello world!!” As hello one line. World 2nd line !! 3rd line
  • Ans. 

    Print 'hello world!!' in three separate lines.

    • Use a programming language's print function to output 'hello' on the first line, 'world' on the second line, and '!!' on the third line.

    • In JavaScript, you can achieve this using console.log() function with line breaks like console.log('hello\nworld\n!!');

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

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

Round 1 - One-on-one 

(1 Question)

  • Q1. Oops, C#, MVC, SQL server
Round 2 - HR 

(1 Question)

  • Q1. Salary discussion
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
No response

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

Round 1 - Technical 

(1 Question)

  • Q1. 1. What is resolvers in angular 2. Difference between canActivated and CanGuard route guards in angular 3. How to create custom decorators 4. what is use of ngOnInit 3. How to make asynchronous method to s...
  • Ans. 

    Resolvers in Angular are used to fetch data before the component is loaded, canActivate guards control access to routes, custom decorators can be created using @Decorator syntax, ngOnInit is a lifecycle hook in Angular, asynchronous methods can be made synchronous using async/await, cancellation tokens are used to cancel asynchronous operations.

    • Resolvers in Angular are used to fetch data before the component is loaded,...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Clear fundamentals of any tech stack which you are having.

Skills evaluated in this interview

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

(1 Question)

  • Q1. Solid principles
Round 2 - One-on-one 

(1 Question)

  • Q1. How to handle stressful scenarios
  • Ans. 

    Handling stressful scenarios involves staying calm, prioritizing tasks, seeking support, and practicing self-care.

    • Stay calm and take deep breaths to manage emotions

    • Prioritize tasks based on urgency and importance

    • Seek support from colleagues, mentors, or counselors

    • Practice self-care activities like exercise, meditation, or hobbies

  • Answered by AI

I applied via Recruitment Consulltant and was interviewed in Oct 2022. There were 3 interview rounds.

Round 1 - Resume Shortlist 
Pro Tip by AmbitionBox:
Keep your resume crisp and to the point. A recruiter looks at your resume for an average of 6 seconds, make sure to leave the best impression.
View all tips
Round 2 - Technical 

(1 Question)

  • Q1. What is dependency injection?
  • Ans. 

    Dependency injection is a design pattern used to remove hard-coded dependencies and make code more flexible and testable.

    • It allows objects to be created with their dependencies rather than having to create them within the object itself.

    • It promotes loose coupling between objects.

    • It makes code more modular and easier to maintain.

    • Examples include using a DI container like Unity or Autofac, or manually injecting dependenci

  • Answered by AI
Round 3 - Technical 

(1 Question)

  • Q1. What is azure service
  • Ans. 

    Azure service is a cloud computing platform by Microsoft that provides various services for building, deploying, and managing applications.

    • Azure service offers a wide range of services including virtual machines, storage, databases, and analytics.

    • It also provides services for AI and machine learning, IoT, and DevOps.

    • Azure service can be used for building and deploying web applications, mobile apps, and enterprise solut...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - I have cleared 2 round, then I called hr so she told me that she has left job so she can't do anything on that so my time wasted.

Skills evaluated in this interview

TCS Interview FAQs

How many rounds are there in TCS Dot Net Fullstack Developer interview?
TCS interview process usually has 1-2 rounds. The most common rounds in the TCS interview process are Technical and HR.
How to prepare for TCS Dot Net Fullstack 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 Angular, C#, .Net Core, ASP.Net and React.Js.
What are the top questions asked in TCS Dot Net Fullstack Developer interview?

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

  1. What is your Expected ...read more
  2. Use of interface in real wo...read more
  3. What is a tup...read more

Tell us how to improve this page.

People are getting interviews through

based on 2 TCS interviews
Job Portal
100%
Moderate Confidence
?
Moderate Confidence means the data is based on a sufficient number of responses received from the candidates

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 Fullstack Developer Salary
based on 54 salaries
₹3.8 L/yr - ₹16.6 L/yr
11% more than the average Dot Net Fullstack Developer Salary in India
View more details

TCS Dot Net Fullstack Developer Reviews and Ratings

based on 2 reviews

4.7/5

Rating in categories

4.4

Skill development

5.0

Work-Life balance

4.4

Salary & Benefits

5.0

Job Security

5.0

Company culture

4.4

Promotions/Appraisal

3.7

Work Satisfaction

Explore 2 Reviews and Ratings
System Engineer
1.1L salaries
unlock blur

₹1 L/yr - ₹9 L/yr

IT Analyst
67.9k 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
31.3k salaries
unlock blur

₹2.2 L/yr - ₹5.6 L/yr

Associate Consultant
28.6k 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.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