C# Questions Flashcards

1
Q

What does the acronym CLR stand for?

A

Common Language Runtime:
The CLR is a virtual machine component of the .NET framework that manages the execution of any .NET program.

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

Can override of a function be possible in the same class?

A

No, method overriding is a process of calling functions from base class in the derived class.

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

Define a variable in C#

A

Variables are containers used to store data values.

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

What is Recursion?

A

Recursion refers to the process of making a function call itself. For instace to directory o file searching.

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

What is a multicasting delegate?

A

Multicasting delegates allow users to invoke multiple callbacks.
It can refer to multiple methods and functions having the same signature at one time.

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

What are namespaces?

A

Namespaces are used to organize code in distinct groups. For instance: System, System.Collection.Generics, LINQ,IO, Text etc

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