Home | Contact Us | Log In | Help
HOME NEW LISTING MOST POPULAR HIGHEST RATED SCRIPTS ADD SCRIPT DOWNLOADS FORUM
Tutorials
  ASP.Net & C#
  ASP
  Perl and PHP
  Java Scripts
  C and C++
  Ajax Tutorials
  J2ee, J2Me, Java
  Python & Ruby Rail
  Crystal Report
  Sap
  CGI
  XML
  Cold Fusion & CFML
  HTML, DHTML & CSS
  Dreamweaver
  FLASH
  Photoshop/Web Designing
  Tools & Utilities
  Oracle/D2K
  Sql Server
  MySql
  Domain Name Registration
  Remotely Hosting
  Web/Server Application
  Hotel Marketing
  Internet and Law
   Search Engine Optimization/SEO
E-Commerce
Interview Questions
Previous < 1 2 3 4 5 > Next
ASP.Net & C# (INTERVIEW QUESTIONS) 3
  Explain the three services model commonly know as a three-tier application.

Presentation (UI), Business (logic and underlying code) and Data (from storage or other sources).

   
  What is the syntax to inherit from a class in C#?

Place a colon and then the name of the base class.
Example: class MyNewClass : MyBaseClass 

 
  Can you prevent your class from being inherited by another class?

The keyword “sealed” will prevent the class from being inherited.

 
  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.

 
  What’s an abstract class?

A class that cannot be instantiated.  An abstract class is a class that must be inherited and have the methods overridden.  An abstract class is essentially a blueprint for a class without any implementation.

 
  When do you absolutely have to declare a class as abstract?

1. When the class itself is inherited from an abstract class, but not all base abstract methods have been overridden.
2.  When at least one of the methods in the class is abstract.

 
  What is an interface class?

Interfaces, like classes, define a set of properties, methods, and events. But unlike classes, interfaces do not provide implementation. They are implemented by classes, and defined as separate entities from classes.

 
  Why can’t you specify the accessibility modifier for methods inside the interface?

They all must be public, and are therefore public by default.

 
  Can you inherit multiple interfaces?

Yes.  .NET does support multiple interfaces.

 

Previous < 1 2 3 4 5 > Next

  Copyright 2000-2006 © SoloScript.com, All rights reserved.