.NET Tutorials, Forums, Interview Questions And Answers
Welcome :Guest
 
Sign In
Register
 
Win Surprise Gifts!!!
Congratulations!!!




Find questions, FAQ's and their answers related to .NET, C#, Vb.Net, Sql Server and many more.

 
Post New Question Subscribe to Interview Questions
 
Quick Links For Interview Questions Categories:
ASP.NetWindows Application  .NET Framework  C#  VB.Net  ADO.Net  
Sql Server  SharePoint  Silverlight  OOPs  JQuery  JavaScript/VBScript
BiztalkPatten/Practices.IISWCFWPFWWF
NetworkingAptitudeOthers  All    
 

Interview Questions And Answers

What is Early Binding and Late Binding?

Author: BangaruBabuPureti          Posted Date: 26/07/2010    Category: C#     Points: 10

Early Binding is just Assigning values to the Variables at design Time

Late Binding Is The concept of assigning values to the variables at runtime

HOW MANY LANGUAGES .NET SUPPORT

Author: parthiban          Posted Date: 26/07/2010    Category: .NET Framework     Points: 10

DOTNET SUPPORT 50+LANGUAGES.

DIFFERENCE BETWEEN DLL AND EXE

Author: parthiban          Posted Date: 26/07/2010    Category: .NET Framework     Points: 10

DLL IS A IN-PROCESS COMPONENT WHEREAS EXE IS A OUT-PROCESS COMPONENT.
WE CAN CREATE OBJECTS OF DLL BUT NOT OF EXE.
EXE IS FOR SINGLE USE WHEREAS DLL FOR MULTIPLE USE.

difference between web farm and web garden

Author: parthiban          Posted Date: 26/07/2010    Category: ASP.Net     Points: 10

webfarm is a multiple server scenario whereas webgarden is a multiple process scenario.
in webfarm we have server in each and every place.if one crashes or load excessively the other burnt or fails.so there arise a situation to load the balance between the multiple servers.
various modes of bearing the balance are:

A)ROUND ROBIN(ALL SERVERS LOAD BALANCE EQUALLY)
B)NLB
C)HLB
D)HYBRID

What is Dataset?

Author: Hema          Posted Date: 23/07/2010    Category: ADO.Net     Points: 10

A DataSet is Disconnected Architecture,means their is no need to always open & close connection.it is cache of data retrieved from database.it is made up of collection of datatable.Dataset can be Typed & UnTyped usually,datasets are typed in Visual basic.A typed dataset is dataset which derived from dataset class & uses information in XML schema file(XSD file).An untyped dataset has no built in schema.it can contain tables,column & rows.but those are exposed only as collections

What is Hash Table?

Author: Hema          Posted Date: 23/07/2010    Category: .NET Framework     Points: 10

Hash Table stores a key,Value type collection of data we can
retrieve items from Hash table to provide the key.both Key &
value are objects.

What are different approaches of event handling?

Author: Souvik Das          Posted Date: 22/07/2010    Category: VB.Net     Points: 10

please give me the answare of the above question.

What is the default TimeOut for a SqlCommand.CommandTimeout property?

Author: Syed Shakeer Hussain          Posted Date: 07/07/2010    Category: ADO.Net     Points: 10

The default timeOut is 30 seconds.

If you want to increase the TimeOut see the below example code
For example:-

SqlCommand cmd = new SqlCommand("select * from tablename", conn);

cmd.CommandTimeout = 50;

SqlDataReader dr = cmd.ExecuteReader();





what is the main difference between delegate and an event in c#?

Author: Kirtan          Posted Date: 30/06/2010    Category: .NET Framework     Points: 10

Delegates and Events Both are related.

Dalegete is a function pointer which can able to store the address of any function with same prototype.

Event is a function handler which can handles or run the functions in same prototype of its delegate.

For handling events delegate is used.

What does assert() do?

Author: Kirtan          Posted Date: 30/06/2010    Category: .NET Framework     Points: 10

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.



Hall of Fame    Twitter   Terms of Service    Privacy Policy    Contact Us    Archives   Tell A Friend