C#L9 Flashcards
What is a class in C#?
A class is a blueprint for creating objects, defining attributes and behaviors.
What are the four pillars of OOP?
Encapsulation, Abstraction, Inheritance, Polymorphism.
What is the difference between fields and methods?
Fields store data; Methods define behavior.
Name and explain two access modifiers in C#.
Public (accessible anywhere), Private (accessible only within the class).
What is a constructor?
A special method used to initialize objects.
Give an example of a class with a method.
public void Bark() { Console.WriteLine(“Woof!”); }
What is the difference between static and instance members?
Static members belong to a class, instance members belong to an object.
Explain encapsulation with an example.
Restricting access using private fields and public properties.
What is a property in C#?
A controlled way to access fields.
How do you instantiate an object?
Product product = new Product();