Premium Employer

i

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

Infosys Verified Tick Work with us arrow

Compare button icon Compare button icon Compare

Filter interviews by

Infosys Dot Net Core Developer Interview Questions and Answers

Updated 3 Feb 2024

20 Interview questions

🔥 Asked by recruiter 3 times
A Dot Net Core Developer was asked
Q. What are the basic concepts of OOP?
Ans. 

OOPs concepts include encapsulation, inheritance, polymorphism, and abstraction, essential for structured programming.

  • Encapsulation: Bundling data and methods that operate on the data within one unit, e.g., a class.

  • Inheritance: Mechanism where one class inherits properties and methods from another, e.g., a 'Dog' class inheriting from an 'Animal' class.

  • Polymorphism: Ability to present the same interface for differe...

A Dot Net Core Developer was asked
Q. How do you return and handle a large number of records in a web API?
Ans. 

To handle large number of records in a web API, you can use pagination, streaming, or compression techniques.

  • Implement pagination to retrieve records in smaller chunks

  • Use streaming to process and return records in real-time

  • Apply compression techniques like GZIP to reduce the size of the response

  • Consider caching strategies to improve performance

Dot Net Core Developer Interview Questions Asked at Other Companies

asked in Infosys
Q1. How do you return and handle a large number of records in a web A ... read more
asked in Infosys
Q2. Why should we use Entity Framework rather than writing SQL querie ... read more
asked in Infosys
Q3. What is dependency injection and life cycle methods
asked in Infosys
Q4. Where have you used generic concepts in your projects?
asked in Infosys
Q5. How do you improve your Web API performance?
A Dot Net Core Developer was asked
Q. Write a join query using Entity Framework.
Ans. 

Join query using Entity Framework

  • Use the LINQ query syntax to perform joins in Entity Framework

  • Use the 'join' keyword to specify the join condition

  • Use 'into' keyword to create a group join

  • Use 'on' keyword to specify the join condition

  • Use 'equals' keyword to define the equality condition

A Dot Net Core Developer was asked
Q. Where have you used generic concepts in your projects?
Ans. 

Generics can be used in projects to create reusable code that can work with different types.

  • Generics can be used in data structures like lists, dictionaries, and queues to store and retrieve different types of data.

  • Generics can be used in algorithms and functions to work with different types of inputs and outputs.

  • Generics can be used in database operations to handle different types of data.

  • Generics can be used in ...

A Dot Net Core Developer was asked
Q. What is the difference between generics and delegates?
Ans. 

Delegates are function pointers used to encapsulate methods, while generics are used to create reusable code for different data types.

  • Delegates are used to create callbacks and event handlers.

  • Generics allow the creation of classes, methods, and interfaces that can work with different data types.

  • Delegates can be used to define and invoke methods dynamically at runtime.

  • Generics provide type safety and eliminate the ...

What are the roles & responsibilities of a Dot Net Core Developer at Infosys?

Application Development

  • Design, develop, and enhance software solutions using .NET Core
  • Develop and maintain microservices-based applications

Read full roles & responsibilities

A Dot Net Core Developer was asked
Q. Why should we use Entity Framework rather than writing SQL queries?
Ans. 

Entity Framework provides a higher level of abstraction, simplifies database operations, improves productivity, and reduces code complexity.

  • Entity Framework abstracts away the underlying database, allowing developers to work with a higher level of abstraction.

  • It simplifies database operations by providing an object-oriented approach to data access.

  • Entity Framework improves productivity by reducing the amount of co...

Infosys HR Interview Questions

880 questions and answers

Q. How have you addressed security concerns in your project?
Q. Explain your last project.
Q. What aspects of your resume would you like to highlight?
A Dot Net Core Developer was asked
Q. How do you handle global exceptions?
Ans. 

Global exception handling in .NET Core allows centralized management of errors in web applications.

  • Use middleware to catch exceptions globally. Example: app.UseMiddleware<ExceptionHandlingMiddleware>();

  • Implement custom exception filters for specific scenarios. Example: [ServiceFilter(typeof(CustomExceptionFilter))]

  • Return standardized error responses. Example: new ObjectResult(new { error = ex.Message }) { St...

Are these interview questions helpful?
A Dot Net Core Developer was asked
Q. Explain the structure of the project?
Ans. 

The project structure in Dot Net Core typically consists of folders for source code, configuration files, and dependencies.

  • The source code is usually organized into folders based on the application's modules or layers, such as Controllers, Models, and Views.

  • Configuration files like appsettings.json store application settings and connection strings.

  • Dependencies are managed using a package manager like NuGet, and th...

A Dot Net Core Developer was asked
Q. What is the use of delegates?
Ans. 

Delegates are used to create references to methods, allowing methods to be passed as parameters or stored as variables.

  • Delegates provide a way to achieve callback functionality in C#.

  • Delegates can be used to implement event handling.

  • Delegates enable loose coupling and separation of concerns.

  • Delegates can be used to create and invoke anonymous methods.

  • Delegates can be used to implement the observer pattern.

A Dot Net Core Developer was asked
Q. How do you improve your Web API performance?
Ans. 

Improving web API performance involves optimizing code, caching, using asynchronous programming, and scaling infrastructure.

  • Optimize code by reducing unnecessary database queries, using efficient algorithms, and minimizing network calls.

  • Implement caching to store frequently accessed data and reduce the load on the server.

  • Use asynchronous programming to handle multiple requests concurrently and improve responsivene...

Infosys Dot Net Core Developer Interview Experiences

3 interviews found

Interview experience
4
Good
Difficulty level
Easy
Process Duration
6-8 weeks
Result
-

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

Round 1 - Technical 

(17 Questions)

  • Q1. Middleware concept
  • Q2. Global exception handling
  • Q3. Authentication and authorisation mechanism
  • Q4. How to secure your web api
  • Q5. GitHub repository work flow
  • Q6. How to improving your web api performance
  • Ans. 

    Improving web API performance involves optimizing code, caching, using asynchronous programming, and scaling infrastructure.

    • Optimize code by reducing unnecessary database queries, using efficient algorithms, and minimizing network calls.

    • Implement caching to store frequently accessed data and reduce the load on the server.

    • Use asynchronous programming to handle multiple requests concurrently and improve responsiveness.

    • Sc...

  • Answered by AI
  • Q7. Basic oops concept
  • Q8. Difference between generic and delegates
  • Q9. Where to use generic concept in your project?
  • Ans. 

    Generics can be used in projects to create reusable code that can work with different types.

    • Generics can be used in data structures like lists, dictionaries, and queues to store and retrieve different types of data.

    • Generics can be used in algorithms and functions to work with different types of inputs and outputs.

    • Generics can be used in database operations to handle different types of data.

    • Generics can be used in user ...

  • Answered by AI
  • Q10. What is the use of delegates?
  • Q11. Write join query using entity framework
  • Ans. 

    Join query using Entity Framework

    • Use the LINQ query syntax to perform joins in Entity Framework

    • Use the 'join' keyword to specify the join condition

    • Use 'into' keyword to create a group join

    • Use 'on' keyword to specify the join condition

    • Use 'equals' keyword to define the equality condition

  • Answered by AI
  • Q12. What is dependency injection and life cycle methods
  • Ans. 

    Dependency injection is a design pattern that allows objects to be loosely coupled by providing their dependencies externally.

    • Dependency injection is a way to achieve inversion of control in software development.

    • It helps in creating loosely coupled and modular code.

    • In dependency injection, the dependencies of a class are provided externally rather than being created within the class itself.

    • This allows for easier testin...

  • Answered by AI
  • Q13. Basic Linq questions
  • Q14. How to returen& handle large number of records in web api
  • Ans. 

    To handle large number of records in a web API, you can use pagination, streaming, or compression techniques.

    • Implement pagination to retrieve records in smaller chunks

    • Use streaming to process and return records in real-time

    • Apply compression techniques like GZIP to reduce the size of the response

    • Consider caching strategies to improve performance

  • Answered by AI
  • Q15. Filters concepts
  • Q16. Explain the structure of the project?
  • Q17. Why should use entity framework rather than writing sql query?

Interview Preparation Tips

Topics to prepare for Infosys Dot Net Core Developer interview:
  • .Net Core
  • Entity Framework
  • LINQ
  • Web Api
  • SQL Server
  • C#

Skills evaluated in this interview

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

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

Round 1 - Technical 

(3 Questions)

  • Q1. Explain about Program.Cs and Startup.cs?
  • Ans. 

    Program.cs is the entry point of a .NET Core application, while Startup.cs configures services and middleware.

    • Program.cs contains the Main method which is the entry point of the application

    • Startup.cs configures services and middleware for the application

    • In Program.cs, you can configure the host and call the Startup class

    • Startup.cs typically includes ConfigureServices and Configure methods

  • Answered by AI
  • Q2. Diffrence between .Net and .Net Core?
  • Q3. Some basic Questions of .Net and SQL

Interview Preparation Tips

Interview preparation tips for other job seekers - Be Prepared before going to Interview.

Skills evaluated in this interview

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

I applied via Job Portal and was interviewed in Aug 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 

(6 Questions)

  • Q1. Design patterns. Explain any one?
  • Ans. 

    Factory pattern. Creates objects without exposing the instantiation logic to the client.

    • Defines an interface for creating objects, but lets subclasses decide which classes to instantiate.

    • Client only knows the abstract type, not the concrete type.

    • Used when a class cannot anticipate the type of objects it must create.

    • Examples: Abstract Factory, Singleton, Builder, Prototype.

  • Answered by AI
  • Q2. Describe startup class
  • Ans. 

    Startup class is a class in ASP.NET Core that is used to configure services and middleware for the application.

    • It is responsible for configuring the application's request pipeline.

    • It is used to register services that the application will use.

    • It is where middleware components are added to the pipeline.

    • It can be used to configure the application's logging and exception handling.

    • It is typically found in the Startup.cs fil...

  • Answered by AI
  • Q3. Explain how to do dependency injection
  • Ans. 

    Dependency injection is a design pattern used to inject dependencies into a class or method.

    • Create an interface for the dependency

    • Create a class that implements the interface

    • Register the class with the dependency injection container

    • Inject the dependency into the class or method

    • Use the dependency in the class or method

  • Answered by AI
  • Q4. Difference between scoped , transient and singleton
  • Ans. 

    Scoped, transient and singleton are three different lifetimes for services in .NET Core.

    • Scoped services are created once per request and are disposed at the end of the request.

    • Transient services are created each time they are requested.

    • Singleton services are created once and are reused throughout the lifetime of the application.

    • Use scoped services for components that are request-specific, transient services for lightwe...

  • Answered by AI
  • Q5. WAP to find the prime number
  • Ans. 

    WAP to find the prime number

    • Loop through numbers and check if divisible by any number less than it

    • Exclude 1 and the number itself

    • 2 is the only even prime number

  • Answered by AI
  • Q6. WAP to reverse a string letters
  • Ans. 

    A program to reverse the letters of a given string.

    • Create an empty string to store the reversed string

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

    • Append each character to the empty string

    • Return the reversed string

  • Answered by AI
Round 3 - HR 

(2 Questions)

  • Q1. Overview of your location and technical skills?
  • Ans. 

    I am a Dot Net Core Developer with expertise in location-based services and technical skills in various programming languages.

    • Location: I am currently based in New York City, which is a major hub for technology and innovation.

    • Technical Skills: I have extensive experience in developing web applications using Dot Net Core, C#, ASP.NET, and SQL Server.

    • I am proficient in front-end technologies like HTML, CSS, and JavaScrip...

  • Answered by AI
  • Q2. Why you want to join Infosys
  • Ans. 

    I want to join Infosys because of its reputation as a leading global IT services company.

    • Infosys has a strong presence in the IT industry and is known for its expertise in delivering innovative solutions.

    • Joining Infosys would provide me with opportunities to work on challenging projects and enhance my skills.

    • Infosys has a collaborative work culture that encourages learning and growth.

    • The company offers competitive comp...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Be calm, have patience for job seeking period. There’s always a job if you have skills.

All the best.. You will be having a best future🙂

Skills evaluated in this interview

What people are saying about Infosys

View All
lesspine
Verified Icon
1w
works at
Infosys
Seeking insights on TCS offer letter
Hii All, I have attended interview for service desk role in tcs at the end of June my tech round and managerial round later I have submitted all my documents in ibegin portal all are showing verified in the portal and in the 2nd week of July I have completed my hr round and later multiple follow ups given update like internal approvals will take time it's been more than month I have contacted hr and he said like internal approvals will take time I asked will it be a month she said it will take more than a month no clear timeline. So will I get offer letter or not seeking insights on this.
Got a question about Infosys?
Ask anonymously on communities.

Interview questions from similar companies

I applied via Recruitment Consultant and was interviewed before Oct 2020. There was 1 interview round.

Interview Questionnaire 

2 Questions

  • Q1. What is Abstraction
  • Q2. Concept of hiding implementation

Interview Preparation Tips

Interview preparation tips for other job seekers - Not bad, good atmosphere, positive response from staff

I applied via Company Website and was interviewed before Mar 2020. There were 3 interview rounds.

Interview Questionnaire 

2 Questions

  • Q1. To write a code using traditional JavaScript methods
  • Ans. 

    Code using traditional JavaScript methods

    • Use document.getElementById() to access HTML elements

    • Use loops like for() and while() for iteration

    • Use if() and switch() for conditional statements

    • Use functions to encapsulate code and improve reusability

  • Answered by AI
  • Q2. Also about complete react concepts of advanced version

Interview Preparation Tips

Interview preparation tips for other job seekers - Have practical knowledge on your domain

I applied via Campus Placement and was interviewed in Apr 2020. There were 4 interview rounds.

Interview Questionnaire 

1 Question

  • Q1. All technical discussion not much deeper but basic questions of graduation were asked

Interview Preparation Tips

Interview preparation tips for other job seekers - Be confident and don't hesitate 🙂

I applied via Naukri.com and was interviewed before May 2020. There were 3 interview rounds.

Interview Questionnaire 

1 Question

  • Q1. Servicenow related questions

Interview Preparation Tips

Interview preparation tips for other job seekers - Scripting knowledge and technical questions

I applied via Naukri.com and was interviewed in Aug 2020. There were 3 interview rounds.

Interview Questionnaire 

1 Question

  • Q1. Oops Concepts and Data Structure Questions.

Interview Preparation Tips

Interview preparation tips for other job seekers - Oops And Data Structure, Collection.

I applied via Campus Placement and was interviewed before Aug 2020. There were 4 interview rounds.

Interview Questionnaire 

4 Questions

  • Q1. What is collections
  • Q2. What are the new features in java 8
  • Q3. What is the use of spring boot
  • Q4. What is JPA
  • Ans. 

    JPA stands for Java Persistence API, a specification for object-relational mapping in Java applications.

    • JPA is used to map Java objects to relational database tables.

    • It provides a set of annotations to define the mapping between Java classes and database tables.

    • JPA also supports querying data using the Java Persistence Query Language (JPQL).

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - It will be easy interview

Skills evaluated in this interview

Interview Questionnaire 

1 Question

  • Q1. About DBMS and c++

Infosys Interview FAQs

How many rounds are there in Infosys Dot Net Core Developer interview?
Infosys interview process usually has 2 rounds. The most common rounds in the Infosys interview process are Technical, Resume Shortlist and HR.
How to prepare for Infosys Dot Net Core 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 Infosys. The most common topics and skills that interviewers at Infosys expect are .NET, C#, ASP.NET, SQL Server and Javascript.
What are the top questions asked in Infosys Dot Net Core Developer interview?

Some of the top questions asked at the Infosys Dot Net Core Developer interview -

  1. How to returen& handle large number of records in web ...read more
  2. Why should use entity framework rather than writing sql que...read more
  3. What is dependency injection and life cycle meth...read more

Tell us how to improve this page.

Overall Interview Experience Rating

4.3/5

based on 3 interview experiences

Difficulty level

Easy 33%
Moderate 67%

Duration

Less than 2 weeks 33%
2-4 weeks 33%
6-8 weeks 33%
View more
Join Infosys Creating the next opportunity for people, businesses & communities

Interview Questions from Similar Companies

TCS Dot Net Core Developer Interview Questions
3.5
 • 11.3k Interviews
Accenture Dot Net Core Developer Interview Questions
3.7
 • 8.8k Interviews
Wipro Dot Net Core Developer Interview Questions
3.7
 • 6.2k Interviews
Capgemini Dot Net Core Developer Interview Questions
3.7
 • 5.1k Interviews
HCLTech Dot Net Core Developer Interview Questions
3.5
 • 4.2k Interviews
Genpact Dot Net Core Developer Interview Questions
3.7
 • 3.5k Interviews
LTIMindtree Dot Net Core Developer Interview Questions
3.7
 • 3.1k Interviews
IBM Dot Net Core Developer Interview Questions
3.9
 • 2.5k Interviews
View all
Infosys Dot Net Core Developer Salary
based on 5 salaries
₹2.1 L/yr - ₹4.5 L/yr
10% less than the average Dot Net Core Developer Salary in India
View more details
Dot Net Core Developer - N

Hyderabad / Secunderabad,

Pune

+1

5-10 Yrs

Not Disclosed

.NET Core Developer-Gurugram

Hyderabad / Secunderabad,

Chennai

+1

6-11 Yrs

Not Disclosed

Dot NET Core Developer-Gurugram

Hyderabad / Secunderabad,

Chennai

+1

11-16 Yrs

Not Disclosed

Explore more jobs
Technology Analyst
55k salaries
unlock blur

₹4.8 L/yr - ₹10 L/yr

Senior Systems Engineer
54.5k salaries
unlock blur

₹2.5 L/yr - ₹6.3 L/yr

Technical Lead
35.4k salaries
unlock blur

₹9.5 L/yr - ₹16.5 L/yr

System Engineer
32.7k salaries
unlock blur

₹2.4 L/yr - ₹5.5 L/yr

Senior Associate Consultant
32.5k salaries
unlock blur

₹8.3 L/yr - ₹15 L/yr

Explore more salaries
Compare Infosys with

TCS

3.5
Compare

Wipro

3.7
Compare

Cognizant

3.7
Compare

Accenture

3.7
Compare
write
Share an Interview