C#L9 Flashcards

1
Q

What is a class in C#?

A

A class is a blueprint for creating objects, defining attributes and behaviors.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
2
Q

What are the four pillars of OOP?

A

Encapsulation, Abstraction, Inheritance, Polymorphism.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
3
Q

What is the difference between fields and methods?

A

Fields store data; Methods define behavior.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
4
Q

Name and explain two access modifiers in C#.

A

Public (accessible anywhere), Private (accessible only within the class).

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
5
Q

What is a constructor?

A

A special method used to initialize objects.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
6
Q

Give an example of a class with a method.

A

public void Bark() { Console.WriteLine(“Woof!”); }

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
7
Q

What is the difference between static and instance members?

A

Static members belong to a class, instance members belong to an object.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
8
Q

Explain encapsulation with an example.

A

Restricting access using private fields and public properties.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
9
Q

What is a property in C#?

A

A controlled way to access fields.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
10
Q

How do you instantiate an object?

A

Product product = new Product();

How well did you know this?
1
Not at all
2
3
4
5
Perfectly