C# General Questions

C# General Questions

   1. Does C# support multiple-inheritance?
      No.
      
   2. Who is a protected class-level variable available to?
      It is available to any sub-class (a class inheriting this class).
      
   3. Are private class-level variables inherited?
      Yes, but they are not accessible.  Although they are not visible or accessible via the class interface, they are inherited.
      
   4. Describe the accessibility modifier “protected internal”.
      It is available to classes that are within the same assembly and derived from the specified base class.
      
   5. What’s the top .NET class that everything is derived from?
      System.Object.

   6)How is 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.

   7) Is it possible to debug java-script in .NET IDE? If yes, how?
       Yes, simply write "debugger" statement at the point where the breakpoint needs to be        set within the javascript code and also enable javascript debugging in the browser       property settings.

No comments:

Post a Comment

Plz Share your comments...