C# .NET Flashcards

1
Q

Can multiple catch blocks be executed?

A

No, Multiple catch blocks of similar type can’t be executed. Once the proper catch code executed, the control is transferred to the finally block, and then the code that follows the finally block gets executed.

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

What is the difference between public, static, and void?

A

Public declared variables or methods are accessible anywhere in the application. Static declared variables or methods are globally accessible without creating an instance of the class. Static member are by default not globally accessible it depends upon the type of access modified used. The compiler stores the address of the method as the entry point and uses this information to begin execution before any objects are created. And Void is a type modifier that states that the method or variable does not return any value.

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

What is an Object

A

An object is an instance of a class through which we access the methods of that class. “new” keyword is used to create an object. A class that creates an object in memory will contain the information about the methods, variables, and behavior of that class.

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

Define Constructors

A

A constructor is a member function in a class that has the same name as its class. The constructor is automatically invoked whenever an object class is created. It constructs the values of data members while initializing the class.

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

What are Jagged Arrays?

A

The Array which has elements of type array is called jagged Array. The elements can be of different dimensions and sizes. We can also call jagged Array as an Array of arrays

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

What is the difference between ref & out parameters?

A

An argument passed as ref must be initialized before passing to the method whereas out parameter needs not to be initialized before passing to a method.

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

What is the use of ‘using’ statement in C#?

A

The ‘using’ block is used to obtain a resource and process it and then automatically dispose of when the execution of the block completed.

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

What is serialization?

A

When we want to transport an object through a network, then we have to convert the object into a stream of bytes. The process of converting an object into a stream of bytes is called Serialization. For an object to be serializable, it should implement ISerialize Interface. De-serialization is the reverse process of creating an object from a stream of bytes.

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

Can we use “this” command within a static method?

A

We can’t use ‘This’ in a static method because we can only use static variables/methods in a static method.

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

What is the difference between constants and read-only?

A

Constant variables are declared and initialized at compile time. The value can’t be changed afterward. Read-only is used only when we want to assign the value at run time.

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

What is an interface class?

A

An Interface is an abstract class which has only public abstract methods, and the methods only have the declaration and not the definition. These abstract methods must be implemented in the inherited classes.

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

What are value types and reference types?

A

A value type holds a data value within its own memory space.

Reference type stores the address of the Object where the value is being stored. It is a pointer to another memory location

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

What are sealed classes in C#?

A

We create sealed classes when we want to restrict the class to be inherited. Sealed modifier used to prevent derivation from a class. If we forcefully specify a sealed class as base class, then a compile-time error occurs.

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

What is method overloading?

A

Method overloading is creating multiple methods with the same name with unique signatures in the same class. When we compile, the compiler uses overload resolution to determine the specific method to be invoke.

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

What is the difference between Array and Arraylist?

A

In an array, we can have items of the same type only. The size of the array is fixed when compared. To an arraylist is similar to an array, but it doesn’t have a fixed size.

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

Can a private virtual method can be overridden?

A

No, because they are not accessible outside the class.

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

Describe the accessibility modifier “protected internal”

A

Protected Internal variables/methods are accessible within the same assembly and also from the classes that are derived from this parent class.

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

What are the differences between System.String and System.Text.StringBuilder classes?

A

System.String is immutable. When we modify the value of a string variable, then a new memory is allocated to the new value and the previous memory allocation released. System.StringBuilder was designed to have a concept of a mutable string where a variety of operations can be performed without allocation separate memory location for the modified string.

19
Q

What’s the difference between the System.Array.CopyTo() and System.Array.Clone()

A

Using Clone() method, we creates a new array object containing all the elements in the original Array and using CopyTo() method. All the elements of existing array copies into another existing array. Both methods perform a shallow copy.

20
Q

How can we sort the elements of the Array in descending order?

A

Using Sort() methods followed by Reverse() method.

21
Q

What’s the difference between an interface and abstract class?

A

Interfaces have all the methods having only declaration but no definition. In an abstract class, we can have some concrete methods. In an interface class, all the methods are public. An abstract class may have private methods.

22
Q

What is the difference between Finalize() and Dispose() methods?

A

Dispose() is called when we want for an object to release any un-managed resources with them. On the other hand, Finalize() is used for the same purpose, but it doesn’t assure the garbage collection of an object.

23
Q

What are circular references?

A

Circular reference is situation in which two or more resources are interdependent on each other causes the lock condition and make the resources unusable.

24
Q

What are generics in C#.NET?

A

Generics are used to make reusable code classes to decrease the code redundancy, increase type safety, and performance. Using generics, we can create collection classes. To create generic collection, System.Collections.Generic namespace should be used instead of classes such as ArrayList in the System.Collections namespace. Generics promotes the usage of parameterized types.

25
Q

What is an object pool in .NET?

A

An object pool is a container having objects ready to be used. It tracks the object that is currently in use, total number of objects in the pool. This reduces the overhead of creating and re-creating objects.

26
Q

List commonly used types of exceptions in .net

A

ArgumentException, ArgumentNullException, ArgumentOutOfRangeException, ArithmeticException, DivideByZeroException ,OverflowException, IndexOutOfRangeException, InvalidCastException, InvalidOperationException, IOEndOfStreamException , NullReferenceException, OutOfMemoryException, StackOverflowException etc.

27
Q

What are Custom Exceptions?

A

Sometimes there are some errors that need to be handled as per user requirements. Custom exceptions are used for them and are used defined exceptions.

28
Q

What are delegates?

A

Delegates are same are function pointers in C++, but the only difference is that they are type safe, unlike function pointers. Delegates are required because they can be used to write much more generic type-safe functions.

29
Q

How do you inherit a class into other class in C#?

A

Colon is used as inheritance operator in C#. Just place a colon and then the class name.

public class DerivedClass : BaseClass

30
Q

What is the base class in .net from which all the classes are derived from?

A

System.Object

31
Q

What is the difference between method overriding and method overloading?

A

In method overriding, we change the method definition in the derived class that changes the method behavior. Method overloading is creating a method with the same name within the same class having different signatures.

32
Q

What are the different ways a method can be overloaded?

A

Methods can be overloaded using different data types for a parameter, different order of parameters, and different number of parameters.

33
Q

Why can’t you specify the accessibility modifier for methods inside the interface?

A

In an interface, we have virtual methods that do not have method definition. All the methods are there to be overridden in the derived class. That’s why they all are public

34
Q

How can we set the class to be inherited, but prevent the method from being over-ridden?

A

Declare the class as public and make the method sealed to prevent it from being overridden.

35
Q

What happens if the inherited interfaces have conflicting method names?

A

Implement is up to you as the method is inside your own class. There might be a problem when the methods from different interfaces expect different data, but as far as compiler cares you’re okay.

36
Q

What is the difference between a Struct and a Class?

A

Structs are value-type variables, and classes are reference types. Structs stored on the Stack causes additional overhead but faster retrieval. Structs cannot be inherited.

37
Q

What is difference between “is” and “as” operators in c#?

A

“is” operator is used to check the compatibility of an object with a given type, and it returns the result as Boolean.

“as” operator is used for casting of an object to a type or a class.

38
Q

What’s a multicast delegate?

A

A delegate having multiple handlers assigned to it is called multicast delegate. Each handler is assigned to a method.

39
Q

What are indexers in C# .NET?

A

Indexers are known as smart arrays in C#. It allows the instances of a class to be indexed in the same way as an array.

40
Q

What is difference between the “throw” and “throw ex” in .NET?

A

“Throw” statement preserves original error stack whereas “throw ex” have the stack trace from their throw point. It is always advised to use “throw” because it provides more accurate error information.

41
Q

What are C# attributes and its significance?

A

C# provides developers a way to define declarative tags on certain entities, eg. Class, method, etc. are called attributes. The attribute’s information can be retrieved at runtime using Reflection.

42
Q

How to implement a singleton design pattern in C#?

A

In a singleton pattern, a class can only have one instance and provides an access point to it globally.

public sealed class Singleton
{
  private static readonly Singleton _instance = new Singleton();
}
43
Q

Is C# code is managed or unmanaged code?

A

C# is managed code because Common language runtime can compile C# code to Intermediate language.