C# Int Q
C# Int Q
C# interview questions
General Questions
StringBuilder is more efficient in cases where there is a large amount of string manipulation. Strings
are immutable, so each time a string is changed, a new instance in memory is created.
12.How can you sort the elements of the array in descending order?
By calling Sort() and then Reverse() methods.
13.What’s the .NET collection class that allows an element to be accessed using a unique key?
HashTable.
15.Will the finally block get executed if an exception has not occurred?
Yes.
Class Questions
2.Can you prevent your class from being inherited by another class?
Yes. The keyword “sealed” will prevent the class from being inherited.
3.Can you allow a class to be inherited, but prevent the method from being over-ridden?
Yes. Just leave the class public and make the method sealed.
1. When the class itself is inherited from an abstract class, but not all base abstract methods have been
overridden.
7.Why can’t you specify the accessibility modifier for methods inside the interface?
They all must be public, and are therefore public by default.
9.What happens if you inherit multiple interfaces and they have conflicting method names?
It’s up to you to implement the method inside your own class, so implementation is left entirely up to
you. This might cause a problem on a higher-level scale if similarly named methods from different
interfaces expect different data, but as far as compiler cares you’re okay.
1. What’s the implicit name of the parameter that gets passed into the set method/property of a class?
Value. The data type of the value parameter is defined by whatever data type the property is declared .
4. Can you declare an override method to be static if the original method is not static?
No. The signature of the virtual method must remain the same. (Note: Only the keyword virtual is
changed to keyword override)
6. If a base class has a number of overloaded constructors, and an inheriting class has a number of
overloaded constructors; can you enforce a call from an inherited constructor to a specific base
constructor?
Yes, just place a colon, and then keyword base (parameter list to invoke the appropriate constructor) in
the overloaded constructor definition inside the inherited class.
1. What’s a delegate?
A delegate object encapsulates a reference to a method.
3. What’s the implicit name of the parameter that gets passed into the class’ set method?
Value, and it’s datatype depends on whatever variable we’re changing.
9. C# provides a default constructor for me. I write a constructor that takes a string as a parameter, but
want to keep the no parameter one. How many constructors should I write?
Two. Once you write at least one constructor, C# cancels the freebie constructor, and now you have to
write one yourself, even if there’s no implementation in it.
10. What’s the top .NET class that everything is derived from?
System.Object.
12. What does the keyword virtual mean in the method definition?
The method can be over-ridden.
13. Can you declare the override method static while the original method is non-static?
No, you can’t, the signature of the virtual method must remain the same, only the keyword virtual is
changed to keyword override.
15. Can you prevent your class from being inherited and becoming a base class for some other classes?
Yes, that’s what keyword sealed in the class definition is for. The developer trying to derive from your
class will get a message: cannot inherit from Sealed class WhateverBaseClassName.
It’s the same concept as final class in Java.
16. Can you allow class to be inherited, but prevent the method from being over-ridden?
Yes, just leave the class public and make the method sealed.
18. When do you absolutely have to declare a class as abstract (as opposed to free-willed educated
choice or decision based on UML diagram)?
When at least one of the methods in the class is abstract. When the class itself is inherited from an
abstract class, but not all base abstract methods have been over-ridden.
20. Why can’t you specify the accessibility modifier for methods inside the interface?
They all must be public. Therefore, to prevent you from getting the false impression that you have any
freedom of choice, you are not allowed to specify any accessibility, it’s public by default.