Upload Button Icon Add office photos

Filter interviews by

Capita DOT NET Developer Interview Questions and Answers

Updated 22 Oct 2024

Capita DOT NET Developer Interview Experiences

1 interview found

DOT NET Developer Interview Questions & Answers

user image Tamil Selvan

posted on 22 Oct 2024

Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(2 Questions)

  • Q1. Degine. Net net
  • Q2. Basic mvc question

Interview questions from similar companies

Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Coding Test 

Good,SQL query and c# programs

Round 2 - Technical 

(2 Questions)

  • Q1. Oops related questions
  • Q2. Design pattern related questions
Interview experience
1
Bad
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
No response

I applied via Recruitment Consulltant and was interviewed in Apr 2024. There were 2 interview rounds.

Round 1 - Technical 

(2 Questions)

  • Q1. Interviewer was rude
  • Q2. Oops c# basics sql azure
Round 2 - Behavioral 

(2 Questions)

  • Q1. What is work of team lead? how do you handle workload of yours and the junior assigned to you? how do u handle conflicts?
  • Ans. 

    Team lead is responsible for managing the workload of the team, including assigning tasks, providing guidance, and resolving conflicts.

    • Assign tasks to team members based on their skills and workload capacity

    • Provide guidance and support to junior team members to help them complete their tasks successfully

    • Monitor progress of tasks and ensure deadlines are met

    • Resolve conflicts within the team by listening to all parties i...

  • Answered by AI
  • Q2. Other deep technical questions

Interview Preparation Tips

Interview preparation tips for other job seekers - Don't join this company they do not treat the candidates with respect at all. For every wrong answer or the answer that was given was not satisfied, the manager smirked and mocked the candidate.
Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(1 Question)

  • Q1. Dependency injection
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
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 

(2 Questions)

  • Q1. Interview question about Asp Net Core, SQL, Entity Framework
  • Q2. Differences between heap and stack
  • Ans. 

    Heap is used for dynamic memory allocation, while stack is used for static memory allocation.

    • Heap is used for storing objects whose memory size is not known at compile time

    • Stack is used for storing local variables and function call information

    • Heap memory is managed by the programmer, while stack memory is managed by the compiler

    • Example: Objects created using 'new' keyword are stored in heap, while local variables are s

  • Answered by AI

Skills evaluated in this interview

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
-
Process Duration
-
Result
-
Round 1 - Technical 

(2 Questions)

  • Q1. What is Dependency Injection?
  • Ans. 

    Dependency Injection is a design pattern in which components are given their dependencies rather than creating them internally.

    • Allows for easier testing by providing mock dependencies

    • Promotes loose coupling between components

    • Improves code reusability and maintainability

    • Examples: Constructor injection, Setter injection, Interface injection

  • Answered by AI
  • Q2. How to handle exception in java
  • Ans. 

    In Java, exceptions can be handled using try-catch blocks to catch and handle specific exceptions.

    • Use try-catch blocks to catch exceptions and handle them gracefully

    • Use multiple catch blocks to handle different types of exceptions

    • Use finally block to execute code regardless of whether an exception is thrown or not

    • Throw custom exceptions using throw keyword

  • Answered by AI
Round 2 - Technical 

(2 Questions)

  • Q1. In Java8, different between flatmap and map
  • Ans. 

    map transforms each element in a stream, while flatMap transforms each element into multiple elements

    • map applies a function to each element in a stream and returns a new stream of the results

    • flatMap applies a function that returns a stream for each element in the original stream, then flattens the streams into a single stream

    • Example: map - stream.map(x -> x * x), flatMap - stream.flatMap(str -> Arrays.stream(str.split(

  • Answered by AI
  • Q2. How to handle the ConcureentModificationException
  • Ans. 

    ConcurrentModificationException occurs when a collection is modified while iterating over it.

    • Use Iterator to iterate over the collection instead of foreach loop.

    • If modification is necessary, use Iterator's remove() method instead of collection's remove() method.

    • Consider using synchronized collections or ConcurrentHashMap to avoid ConcurrentModificationException.

  • Answered by AI

Skills evaluated in this interview

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

It was an online assessment containing 3 DSA questions

Round 2 - Technical 

(2 Questions)

  • Q1. Medium level array questions
  • Q2. Medium level DP questions
Round 3 - HR 

(1 Question)

  • Q1. General behavioural question about
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 Oct 2024. There were 3 interview rounds.

Round 1 - Technical 

(2 Questions)

  • Q1. What is Dependency injection
  • Q2. What is middleware
Round 2 - techno mangerial 

(1 Question)

  • Q1. Project based questions
Round 3 - HR 

(1 Question)

  • Q1. Salaru neogiation
Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(2 Questions)

  • Q1. Core Java Questions
  • Q2. Spring Boot Questions
Round 2 - Technical 

(2 Questions)

  • Q1. HighLevelDesign Questions
  • Q2. Basic Docker questions

Capita Interview FAQs

How many rounds are there in Capita DOT NET Developer interview?
Capita interview process usually has 1 rounds. The most common rounds in the Capita interview process are Technical.
How to prepare for Capita 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 Capita. The most common topics and skills that interviewers at Capita expect are C#, .Net, Entity Framework, JQuery and MVC.
What are the top questions asked in Capita DOT NET Developer interview?

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

  1. Degine. Net ...read more
  2. Basic mvc quest...read more

Tell us how to improve this page.

Capita DOT NET Developer Salary
based on 5 salaries
₹3.6 L/yr - ₹9.6 L/yr
26% more than the average DOT NET Developer Salary in India
View more details
Senior Executive
1.2k salaries
unlock blur

₹1.5 L/yr - ₹6.1 L/yr

Softwaretest Engineer
598 salaries
unlock blur

₹2.5 L/yr - ₹8.5 L/yr

Senior Software Consultant
549 salaries
unlock blur

₹8.8 L/yr - ₹26 L/yr

Customer Service Executive
410 salaries
unlock blur

₹1.5 L/yr - ₹6.7 L/yr

Software Consultant
396 salaries
unlock blur

₹3.7 L/yr - ₹15 L/yr

Explore more salaries
Compare Capita with

Wipro

3.7
Compare

TCS

3.7
Compare

Infosys

3.7
Compare

HCLTech

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