C#L8 Flashcards

1
Q

What is a method in C#?

A

A block of code that performs a specific task.

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

Why do we use methods?

A

To improve code reusability, modularity, and readability.

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

What are the three main steps of using a method?

A

Declaration, Implementation, Invocation.

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

What is the difference between value and reference parameters?

A

Value parameters copy data, while reference parameters modify the original value.

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

What is method overloading?

A

Defining multiple methods with the same name but different parameters.

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

Give an example of recursion.

A

Factorial function calling itself.

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

What is a method signature?

A

A combination of method name and parameter list (excluding return type).

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

How do ref and out parameters differ?

A

ref requires initialization, out does not.

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

What is variable scope?

A

The region where a variable is accessible.

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

What is the difference between static and instance methods?

A

Static methods belong to a class, instance methods require an object.

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

What is an optional parameter?

A

A method parameter with a default value.

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

What happens if a method has no return type?

A

It returns nothing (void).

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

How do you pass multiple arguments to a method?

A

By listing them in the parameter list separated by commas.

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

What is method chaining?

A

Calling multiple methods sequentially on an object.

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

What is an inline method?

A

A small method that can be substituted directly into calling code.

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