C# Interview Questions - c# - c# tutorial - c# net



1) What is C# ?

  • C# is a simple, modern, general purpose programming language.
  • It is an object oriented programming language developed by Microsoft.
  • It is a safe and managed language that is compiled by .NET framework to generate Microsoft intermediate language (machine code).

2) What is the reason behind the invention of C# ?

  • C# is designed for Common Language Infrastructure (CLI).
  • It contains the executable code and runtime environment that makes the users able to use various high-level languages on different computer platforms and architectures.

3) What are the main reasons to use C# language ?

  • These are top reasons to use C# language:
  • Easy to learn
  • General purpose and object oriented programming language
  • Component oriented
  • Structured language
  • Can be compiled on variety of computer platforms
  • Produces efficient programs
  • Part of .net framework

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

  • You can access public declared variables anywhere in the application.
  • Static declared variables are globally accessible without creating an instance of the class.
  • Void is a type modifier that specifies that the method doesn't return any value.

5) What are constructors in C# ?

  • A constructor is a member function in the class and has the same name as its class.
  • Whenever the object class is created, the constructor is automatically invoked.
  • It constructs the value of data members while initializing the class.

6) What are the different types of constructors in C# ?

  • Basically, there are five types of constructors:
  • Static constructor
  • Private constructor
  • Copy constructor
  • Default constructor
  • Parameterized constructor

7) What is static constructor ?

  • Static constructor is used to initialize static data members as soon as the class is referenced first time.
Related Tags: kurs c# , c# programmieren , tutorial c# visual studio , learn programming with c# , c# kurs online , the best way to learn c# , c# tutorial for complete beginners from scratch , tuto c# , manual c#

8) What is method overloading in C# ?

  • Method overloading is mechanism to create multiple methods with the same name and unique signature in the same class.
  • When you go for compilation, the compiler uses overload resolution to determine the specific method to be invoked.

9) Is overriding of a function possible in the same class ?

  • No

10) What is array ?

  • Array is a set of related instances either value or reference types.
  • There are three types of array supported by C#:
  • Single Dimensional Array: It contains a single row. It is also known as vector array.
  • Multi Dimensional Array: It is rectangular and contains rows and columns.
  • Jagged Array: It also contains rows and columns but it has an irregular shape.

11) What is ArrayList ?

  • ArrayList is a dynamic array.
  • You can add and remove the elements from an ArrayList at runtime.
  • In the ArrayList, elements are not automatically sorted.
Related Tags: kurs c# , c# programmieren , tutorial c# visual studio , learn programming with c# , c# kurs online , the best way to learn c# , c# tutorial for complete beginners from scratch , tuto c# , manual c#

12) What is a collection ?

  • A collection works as a container for instances of other classes. All classes implement ICollection interface.

13) What is an interface ?

  • Interface is an abstract class that has only public abstract method.
  • These methods only have declaration not the definition.
  • These abstract methods must be implemented in the inherited classes.
Related Tags: kurs c# , c# programmieren , tutorial c# visual studio , learn programming with c# , c# kurs online , the best way to learn c# , c# tutorial for complete beginners from scratch , tuto c# , manual c#

14) What is the lock statement in C# ?

  • Lock statement is used to ensure that one thread doesn?t enter a critical section of code while another thread is in the critical section.
  • If another thread attempts to enter a locked code it will wait, block, until the object is released.

15) What is serialization ?

  • If you want to transport an object through network then you have to convert the object into a stream of bytes.
  • The process of converting an object into a stream of bytes is called serialization.

16) How to declare a property in a class ?

int m_PersonID = 0;  
public int PersonID  
{  
get { return m_PersonID; }  
set { m_PersonID = value; }  
}  

17) What is the difference between early binding and late binding in C# ?

  • Early binding and late binding are the concept of polymorphism. There are two types of polymorphism in C#.
  • Compile Time Polymorphism: It is also known as early binding.
  • Run Time Polymorphism: It is also known as late binding or method overriding or dynamic polymorphism.
Related Tags: kurs c# , c# programmieren , tutorial c# visual studio , learn programming with c# , c# kurs online , the best way to learn c# , c# tutorial for complete beginners from scratch , tuto c# , manual c#

18) Which are the access modifiers available in C# ?

  • Following are the access modifiers generally used for accessibility:
  • Public: If you define an attribute or method as public, it can be accessed from any code of the project.
  • Private: A private defined attribute or method can be accessed by any code within the containing class only.
  • Protected: If you define the method or attribute as protected it can be accessed by any method in the inherited classes and any method within the same class.
  • Internal: If you define an attribute or a method as internal, it is restricted to classes within the current position assembly.
  • Protected internal: If you define an attribute or method as protected internal, access is restricted to classes within the current project assembly or types derived from the containing class.

19) What is the difference between abstract class and interface in C# ?

  • Abstract class can have abstract and concrete methods whereas interface has only abstract methods.
Related Tags: kurs c# , c# programmieren , tutorial c# visual studio , learn programming with c# , c# kurs online , the best way to learn c# , c# tutorial for complete beginners from scratch , tuto c# , manual c#

20) What is the difference between dispose() and finalize() methods in C# ?

  • The dispose() method is explicitly called by user to free unmanaged resources such as files, database connections etc whereas finalize() method is implicitly called by garbage collector to free unmanaged resources like files, database connections etc.
  • The dispose() method belongs to IDisposable interface whereas finalize() method belongs the Object class.

21) What is the difference between method overloading and method overriding in C# ?

  • Method parameters must be different in method overloading whereas it must be same in method overriding.
  • Inheritance is not required in method overloading, it occurs within the same class. But inheritance is required in method overriding.
Related Tags: kurs c# , c# programmieren , tutorial c# visual studio , learn programming with c# , c# kurs online , the best way to learn c# , c# tutorial for complete beginners from scratch , tuto c# , manual c#

22) What is object pool in .Net ?

  • Object pool is a container of ready to use objects. It reduces the overhead of creating new object.

23) What is delegate in C# ?

  • A delegate in C# is an object that holds the reference to a method. It is like function pointer in C++.

24) What is Hashtable ?

  • A Hashtable is a collection of key/value pairs. It contains values based on the key.

25) What is Reflection ?

  • Reflection allows us to get metadata and assemblies of an object at runtime.


Related Searches to C# Interview Questions