News:

Choose a design and let our professionals help you build a successful website   - ITAcumens

Main Menu

.NET Web Interview Questions And Answers _ 5

Started by ravindar, Mar 26, 2008, 06:58 PM

Previous topic - Next topic

ravindar

.NET Web Interview Questions And Answers

Which of the following languages is NOT included in the default .NET Framework installation?
* C#
* VB.NET
* JScript.NET
* VBScript.NET

ANS : VBScript.NET

What are the different types of serialization supported in .NET Framework
* XmlSerializer
* SoapFormatter
* XPathNavigator
* HttpFormatter

ANS : xmlserializer

The CLR uses which format for assembly version numbers
* Major:Minor:Revision:Build
* Major:Build:Minor:Revision
* Major:Revision:Minor:Build
* Major:Minor:Build:Revision

ANS : Major:Minor:Build:Revision

What tool is used to manage the GAC?
* GacMgr.exe
* GacSvr32.exe
* GacUtil.exe
* RegSvr.exe

ANS : GacUtil.exe

State True or False: A single .NET dll can contain unlimited classes
* True
* False

ANS : True

State True or False: ASP.NET can currently run only on Windows Platform
* True
* False

ANS : True

Which one of the following best describes "Type-Safe"
* It ensures that the data type are safely handled
* It ensures that types are not mismatched when they are called so uses a typecasting before referencing any data object
* It ensures that an object only references memory locations that it's allowed to, preventing data corruption and the accidental misuse of object types
* All of the above

ANS : All of the above

The number of objects in ASP.NET is
* 6
* 7
* 9
* 10

Answer1:
7

Answer2:
10

The code used to turn off buffering is
* Buffering = false
* OutputBuffer = false
* BufferOutput = false
* Buffer = Off

Answer1:
Buffer=true

Answer2:
Buffer=false

Can you have two applications on the same machine one which is using .NET Framework 1.1 and the other using    2.0 ?
* Yes
* No
* Depends on System configuration

ANS : Yes

Which of the following DOT.NET tools manages certificates, certificate trust lists (CTLs), and certificate revocation lists (CRLs)?
* sn.exe
* certnet.exe
* certmgr.exe
* gacutil.exe

ANS : certmgr.exe

You need to generate a public/private key pair for using in creating a shared assembly. Given the above scenario, which .NET SDK utility should be used?
* certmgr.exe
* gacutil.exe
* sn.exe
* resgen.exe

ANS : sn.exe

The object that contains all the properties and methods for every ASP.NET page, that is built is
* Page Object
* HTTPPage Object
* WebPage Object
* System.Web.UI.Page

ANS : Page Object

In C#, which character is used to indicate a verbatim string literal?
* @
* !
* "
* #

ANS : @