Skip to content

Instantly share code, notes, and snippets.

View clintonvb's full-sized avatar

Clinton clintonvb

  • South Africa
View GitHub Profile

.NET Interview Questions

Purpose

This document outlines some of the most common .NET questions asked in an interview. The goal is to provide answers to each of the questions to prepare you for your next interview.

What is Object-Oriented Programming?

A paradigm that organizes software design around data, or objects, rather than functions and logic.

What is Inheritance?

Inheritance allows a class (child or derived class) to inherit properties and methods from another class (parent or base class). It promotes code reuse and logical hierarchy.