Real interview questions from top companies for C#. Includes theoretical concepts and coding problems.
What are the key features of C#?
C# is a modern, object-oriented programming language developed by Microsoft as a part of its .NET initiative. Key features include type safety, garbage collection, and support for encapsulation, inheritance, and polymorphism.
What is the difference between 'continue' and 'break' statements in C#?
The 'continue' statement skips the rest of the code in the current iteration and moves to the next iteration, while the 'break' statement terminates the loop entirely.
What is the purpose of the 'using' directive in C#?
The 'using' directive is used to import namespaces, which contain classes, interfaces, and other types, making them available for use in the current scope without having to fully qualify their names.
What is the difference between 'struct' and 'class' in C#?
A 'struct' is a value type, whereas a 'class' is a reference type. This means that when you assign one struct to another, it copies the values, but when you assign one class to another, it copies the reference.
What is the purpose of the 'finally' block in a try-catch-finally statement?
The 'finally' block is used to specify code that must run regardless of whether an exception was thrown or caught. It is typically used for cleanup operations, such as releasing resources.
What is the difference between 'override' and 'new' keywords in C#?
The 'override' keyword is used to provide a specific implementation for a method that is already defined in its base class, while the 'new' keyword is used to hide a method of the base class.
What is the purpose of the 'sealed' keyword in C#?
The 'sealed' keyword is used to prevent a class from being inherited. It can also be applied to methods to prevent them from being overridden.
What is the difference between 'interface' and 'abstract class' in C#?
An 'interface' defines a contract that must be implemented, while an 'abstract class' provides a partial implementation that can be shared by its derived classes.
What is the purpose of the 'async' and 'await' keywords in C#?
The 'async' and 'await' keywords are used to write asynchronous code that is easier to read and maintain. 'async' marks a method as asynchronous, and 'await' is used to suspend the execution of the method until the asynchronous operation is complete.
What is the difference between 'Thread' and 'Task' in C#?
A 'Thread' represents a separate flow of execution, while a 'Task' represents an operation that does not block the calling thread.
What is the purpose of the 'lock' statement in C#?
The 'lock' statement is used to synchronize access to a resource, ensuring that only one thread can execute the code within the lock at a time.
What is the difference between 'Dictionary' and 'Hashtable' in C#?
A 'Dictionary' is a generic class that provides a way to store and retrieve key-value pairs, while a 'Hashtable' is a non-generic class that provides a similar functionality but is less efficient and less type-safe.
What is the purpose of the 'yield' keyword in C#?
The 'yield' keyword is used to implement iterators, which allow a method to produce a sequence of values instead of computing them all at once and returning them in an array or list.
What is the difference between 'IEnumerable' and 'IQueryable' in C#?
IEnumerable represents a sequence of values that can be enumerated, while IQueryable represents a query that can be executed on a data source, such as a database.
What is the purpose of the 'Lazy' class in C#?
The 'Lazy' class provides a way to delay the initialization of an object until its value is actually needed.
What is the difference between 'string' and 'StringBuilder' in C#?
A 'string' is an immutable sequence of characters, while a 'StringBuilder' is a mutable sequence of characters that can be modified efficiently.
What is the purpose of the 'Regex' class in C#?
The 'Regex' class provides a way to work with regular expressions, which are patterns used to match character combinations in strings.
What is the difference between 'Debug' and 'Release' configurations in C#?
The 'Debug' configuration is used for debugging and includes additional information such as symbol files, while the 'Release' configuration is used for deployment and is optimized for performance.
What is the purpose of the 'App.config' file in C#?
The 'App.config' file is used to store configuration settings for an application, such as database connections and API keys.
What is the difference between 'WebForms' and 'MVC' in C#?
WebForms is a traditional, event-driven approach to web development, while MVC is a more modern, pattern-based approach that separates concerns into model, view, and controller components.
What is the purpose of the 'Entity Framework' in C#?
The 'Entity Framework' is an Object-Relational Mapping (ORM) framework that provides a way to interact with databases using .NET objects.
What is the difference between 'ADO.NET' and 'Entity Framework' in C#?
ADO.NET is a low-level, data-access technology that provides a way to interact with databases using SQL commands, while Entity Framework is a higher-level, ORM framework that provides a way to interact with databases using .NET objects.
Write a C# program to find the maximum value in an array.
publicclassProgram {
publicstaticvoidMain() {
int[] array = {
1, 2, 3, 4, 5 }
;
int max = array[0];
for (int i = 1;
i < array.Length;
i++) {
if (array[i] > max) {
max = array[i];
}
}
Console.WriteLine(max);
}
}