.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 does hash and dot sign means in JQuery?

Author: Faizal          Posted Date: May 16, 2013    Category: JQuery     Points: 40

both hash and dot used to identify the control available in the page.

hash # is used to identify the control by control id.

Dot . is used to get the control by its class name.

for eg

<div class="myDiv"> To use this control in JQuery we should use $('.dvclass')

<div id="myDiv"> To use this control in JQuery we should use $('#dvclass')

Do and Don't do in Classes

Author: Narayanan          Posted Date: April 25, 2013    Category: .NET Framework     Points: 40

Do :
Use a noun or noun phrase to name a Class.
Provide default private constructor if there are only static member or properties on a Class.
Don't do:
Avoid putting Multiple Class in one class.

Do and Don't do in Enum

Author: Narayanan          Posted Date: April 25, 2013    Category: .NET Framework     Points: 40

Do:
Normally, we are using Singular name for most enum types.use Plural name for enum type.
Use abbr. for enum type and their values.
Don't do:
Don't use Suffix on the Enum type names.

Which types of joins let you retrieve nonmatching data?

Author: Narayanan          Posted Date: April 12, 2013    Category: Sql Server     Points: 40

Full outer join and Left outer join

which is Faster Union or Union All?

Author: Narayanan          Posted Date: April 12, 2013    Category: Sql Server     Points: 40

Union All is faster than union in SQL Server

What is the symbol for creating temporary Table in SQL Server.

Author: Narayanan          Posted Date: April 12, 2013    Category: Sql Server     Points: 40

#

Why use Stored Procedures ?

Author: Narayanan          Posted Date: April 12, 2013    Category: Sql Server     Points: 40

Stored procedures allow a lot more flexibility offering capabilities such as conditional logic
Stored procedures are stored within the DBMS, bandwidth and execution time are reduced
Client developers are abstracted from complex designs

To find out the role of the logged in user, you'll use

Author: Narayanan          Posted Date: April 12, 2013    Category: VB.Net     Points: 40

UserRole("Administrators")

What is the maximum no of dimension that an array can have in VB.NET?

Author: Narayanan          Posted Date: April 12, 2013    Category: VB.Net     Points: 40

32

VbOk,VbCancel,VbAbort are all the enumerated members of

Author: Narayanan          Posted Date: April 12, 2013    Category: VB.Net     Points: 40

MsgboxResult Enumeration
« Previous12345678910….410411Next »


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