.NET Core Interview Questions

.NET Core Interview Questions Title

As a .NET developer, I have been in many interviews at companies like Microsoft, Deloitte, and others from Forbes 500. A big part of the interviews was about data structures and algorithms. I also received many .NET Core and ASP.NET questions. I will try to give you the questions that appear the most in the interviews. What is SOLID? The … Read more

Unlock the Power of ChatGPT – A Short Guide For Enhancing Your Code

Unlock the Power of ChatGPT - A Short Guide For Enhancing Your Code

ChatGPT is a new AI service offered by OpenAI. Practically, ChatGPT is a chat where you can communicate with the AI. Is much more powerful than any other AI language model(🤖).  It can answer most questions using the information in its knowledge database.  If you didn’t test it yet, you could check it. I started using ChatGPT for my daily … Read more

Razor Pages vs MVC – Which One is the Best for Your Project?

Razor Pages vs MVC

In ASP.NET, most developers use one of the two architectural patterns to build web Applications: Razor Pages and Model View Controller. They are slightly different in structure and development approach. This GitHub issue is why Microsoft tends to bring the Razor Pages in front of .NET documentation. More people commented against Razor Pages, but others came up with some advantages … Read more

Implementing Singleton Pattern In C#

Singleton Pattern

Singleton is a creational design pattern. I think even a junior developer should know at least this design pattern. It’s the most used design pattern and is simple. This pattern solves the problem when you want to have only one instance. For example, let’s think about a connection to a server. You don’t want to open multiple connections from the … Read more