.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 the use of Option explicit?

Author: Narayanan          Posted Date: February 28, 2013    Category: VB.Net     Points: 40

Variable must be compulsorily declared when the Option Explicit is termed as ON. If it is OFF, variables can be used without declaration.

What is ReDim keyword and its use?

Author: Narayanan          Posted Date: February 28, 2013    Category: VB.Net     Points: 40

Redim keyword is exclusively used for arrays and it is used to change the size of one or more dimensions of an array that has been already declared. Redim can free up or add elements to an array whenever required.

What is the use of Internal keyword?

Author: Narayanan          Posted Date: February 28, 2013    Category: VB.Net     Points: 40

Internal keyword is one of the access specifier available in .Net framework , that makes a type visible in a given assembly , for e.g : a single dll can contain multiple modules.

What is the differences between dataset.clone and dataset.copy?

Author: Narayanan          Posted Date: February 28, 2013    Category: VB.Net     Points: 40

Dataset.clone copies just the structure of dataset (including all the datatables, schemas, relations and constraints.); however it doesn't copy the data.
Dataset.copy, copies both the dataset structure and the data.

Differentiate private and shared assembly?

Author: Narayanan          Posted Date: February 28, 2013    Category: VB.Net     Points: 40

Private assembly must be used only inside an application and it is not identified using strong name. Multiple applications make use of shared assembly and must have a strong name.

Distinguish Namespace and Assembly?

Author: Narayanan          Posted Date: February 28, 2013    Category: VB.Net     Points: 40

The collection of different classes is known as Namespace and the basic building blocks of .net framework are an Assembly.

What does Dispose method do with the connection object?

Author: Narayanan          Posted Date: February 28, 2013    Category: C#     Points: 40

Deletes it from the memory.

What are the ways to deploy an assembly?

Author: Narayanan          Posted Date: February 28, 2013    Category: C#     Points: 40

An MSI installer, a CAB archive, and XCOPY command.

What is a New modifier?

Author: Narayanan          Posted Date: February 28, 2013    Category: C#     Points: 40

The new modifier hides a member of the base class. C# supports only hide by signature.

What is Static Method?

Author: Narayanan          Posted Date: February 28, 2013    Category: C#     Points: 40

It is possible to declare a method as Static provided that they don't attempt to access any instance data or other instance methods.


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