base class. Notice that it\u2019s double colon in C++.
3.Does C# support multiple inheritance? No, use interfaces instead.
4.When you inherit a protected class-level variable, who is it available to?
5.Are private class-level variables inherited? Yes, but they are not accessible, so
looking at it you can honestly say that they are not inherited. But they are.
6.Describe the accessibility modifier protected internal. It\u2019s available to derived
there\u2019s no implementation in it.
8.What\u2019s the top .NET class that everything is derived from? System.Object.
9.How\u2019s method overriding different from overloading? When overriding, you
12.Can you override private virtual methods? No, moreover, you cannot access
private methods in inherited classes, have to be protected in the base class to
allow any sort of access.
for. The developer trying to derive from your class will get a message: cannot
inherit from Sealed class WhateverBaseClassName. It\u2019s the same concept as final
class in Java.
15.What\u2019s an abstract class? A class that cannot be instantiated. A concept in C++
known as pure virtual method. A class that must be inherited and have the
methods over-ridden. Essentially, it\u2019s a blueprint for a class without any
implementation.
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.
17.What\u2019s an interface class? It\u2019s an abstract class with public abstract methods all
specify any accessibility, it\u2019s public by default.
19.Can you inherit multiple interfaces? Yes, why not.
20.And if they have conflicting method names? It\u2019s 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\u2019re okay.
21.What\u2019s the difference between an interface and abstract class? In the interface
all methods must be abstract; in the abstract class some methods can be concrete.
In the interface no accessibility modifiers are allowed, which is ok in abstract
operated on, a new instance is created.
26.Can you store multiple data types in System.Array? No.
27.What\u2019s the difference between the System.Array.CopyTo() and
33.Can multiple catch blocks be executed? No, once the proper catch code fires
off, the control is transferred to the finally block (if there are any), and then
whatever follows the finally block.
34.Why is it a bad idea to throw your own exceptions? Well, if at that point you
know that an error has occurred, then why not write the proper code to handle that
error instead of passing a new Exception object to the catch block? Throwing your
own exceptions signifies some design flaws in the project.
37.How\u2019s the DLL Hell problem solved in .NET? Assembly versioning allows the
application to specify not only the library it needs to run (which was available
under Win32), but also the version of the assembly.
39.What\u2019s a satellite assembly? When you write a multilingual or multi-cultural application in .NET, and want to distribute the core application separately from the localized modules, the localized assemblies that modify the core application are called satellite assemblies.
45.What debugging tools come with the .NET SDK? CorDBG \u2013 command-line
debugger, and DbgCLR \u2013 graphic debugger. Visual Studio .NET uses the
DbgCLR. To use CorDbg, you must compile the original C# file using the /debug
switch.
47.What does assert() do? In debug compilation, assert takes in a Boolean condition
as a parameter, and shows the error dialog if the condition is false. The program
proceeds without any interruption if the condition is true.
Leave a Comment